kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
3.8 KiB
111 lines
3.8 KiB
#-- copyright
|
|
# OpenProject is a project management system.
|
|
#
|
|
# Copyright (C) 2012-2013 the OpenProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
Given /^there are no issues$/ do
|
|
Issue.destroy_all
|
|
end
|
|
|
|
Given /^the issue "(.*?)" is watched by:$/ do |issue_subject, watchers|
|
|
issue = Issue.find(:last, :conditions => {:subject => issue_subject}, :order => :created_at)
|
|
watchers.raw.flatten.each {|w| issue.add_watcher User.find_by_login(w)}
|
|
issue.save
|
|
end
|
|
|
|
Then /^the issue "(.*?)" should have (\d+) watchers$/ do |issue_subject, watcher_count|
|
|
Issue.find_by_subject(issue_subject).watchers.count.should == watcher_count.to_i
|
|
end
|
|
|
|
Given(/^the issue "(.*?)" has an attachment "(.*?)"$/) do |issue_subject, file_name|
|
|
issue = Issue.find(:last, :conditions => {:subject => issue_subject}, :order => :created_at)
|
|
attachment = FactoryGirl.create :attachment,
|
|
:author => issue.author,
|
|
:content_type => 'image/gif',
|
|
:filename => file_name,
|
|
:disk_filename => "#{rand(10000000..99999999)}_#{file_name}",
|
|
:digest => Digest::MD5.hexdigest(file_name),
|
|
:container => issue,
|
|
:filesize => rand(100..10000),
|
|
:description => 'This is an attachment description'
|
|
end
|
|
|
|
Given /^the [Uu]ser "([^\"]*)" has (\d+) [iI]ssue(?:s)? with(?: the following)?:$/ do |user, count, table|
|
|
u = User.find_by_login user
|
|
raise "This user must be member of a project to have issues" unless u.projects.last
|
|
as_admin count do
|
|
i = Issue.generate_for_project!(u.projects.last)
|
|
i.author = u
|
|
i.assigned_to = u
|
|
i.type = Type.find_by_name(table.rows_hash.delete("type")) if table.rows_hash["type"]
|
|
send_table_to_object(i, table, {}, method(:add_custom_value_to_issue))
|
|
i.save!
|
|
end
|
|
end
|
|
|
|
Given /^the [Pp]roject "([^\"]*)" has (\d+) [iI]ssue(?:s)? with(?: the following)?:$/ do |project, count, table|
|
|
p = Project.find_by_name(project) || Project.find_by_identifier(project)
|
|
as_admin count do
|
|
i = FactoryGirl.build(:issue, :project => p,
|
|
:type => p.types.first)
|
|
send_table_to_object(i, table, {}, method(:add_custom_value_to_issue))
|
|
end
|
|
end
|
|
|
|
When(/^I click the first delete attachment link$/) do
|
|
delete_link = find :xpath, "//a[@title='Delete'][1]"
|
|
delete_link.click
|
|
end
|
|
|
|
Given (/^there are the following issues(?: in project "([^"]*)")?:$/) do |project_name, table|
|
|
project = get_project(project_name)
|
|
table.map_headers! { |header| header.underscore.gsub(' ', '_') }
|
|
|
|
table.hashes.each do |type_attributes|
|
|
assignee = User.find_by_login(type_attributes.delete("assignee"))
|
|
type_name = type_attributes.delete('type')
|
|
type = Type.find_by_name(type_name)
|
|
|
|
type_attributes[:type] = type unless type.nil?
|
|
|
|
factory = FactoryGirl.create(:issue, type_attributes.merge(:project_id => project.id))
|
|
|
|
factory.reload
|
|
|
|
factory.assignee = assignee unless assignee.nil?
|
|
|
|
factory.save! if factory.changed?
|
|
end
|
|
end
|
|
|
|
Given (/^there are the following issues with attributes:$/) do |table|
|
|
|
|
table.map_headers! { |header| header.underscore.gsub(' ', '_') }
|
|
table.hashes.each do |type_attributes|
|
|
|
|
project = get_project(type_attributes.delete("project"))
|
|
attributes = type_attributes.merge(:project_id => project.id)
|
|
|
|
assignee = User.find_by_login(attributes.delete("assignee"))
|
|
attributes.merge! :assigned_to_id => assignee.id if assignee
|
|
|
|
author = User.find_by_login(attributes.delete("author"))
|
|
attributes.merge! :author_id => author.id if author
|
|
|
|
watchers = attributes.delete("watched_by")
|
|
issue = FactoryGirl.create(:issue, attributes)
|
|
|
|
if watchers
|
|
watchers.split(",").each {|w| issue.add_watcher User.find_by_login(w)}
|
|
issue.save
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|