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.
97 lines
3.4 KiB
97 lines
3.4 KiB
#-- copyright
|
|
# OpenProject is a project management system.
|
|
# Copyright (C) 2012-2013 the OpenProject Foundation (OPF)
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
def getWPRowByName(name)
|
|
find("a", :text => name).find(:xpath, "./ancestor::tr")
|
|
end
|
|
|
|
Given(/^there are the following work packages were added "(.*?)"(?: in project "([^"]*)")?:$/) do |time, project_name, table|
|
|
project = get_project(project_name)
|
|
|
|
#TODO provide better time support with some gem that can parse this:
|
|
case time
|
|
when "three weeks ago"
|
|
target_time = 3.weeks.ago
|
|
else
|
|
target_time = Time.now
|
|
end
|
|
Timecop.freeze(target_time) do
|
|
create_work_packages_from_table table, project
|
|
end
|
|
end
|
|
|
|
Given(/^the work package "(.*?)" was changed "(.*?)" to:$/) do |name, time, table|
|
|
table.map_headers! { |header| header.underscore.gsub(' ', '_') }
|
|
|
|
#TODO provide better time support with some gem that can parse this:
|
|
case time
|
|
when "one week ago"
|
|
target_time = 1.weeks.ago
|
|
when "two weeks ago"
|
|
target_time = 2.weeks.ago
|
|
else
|
|
target_time = Time.now
|
|
end
|
|
|
|
Timecop.freeze(target_time) do
|
|
|
|
#TODO provide generic support for all possible values.
|
|
work_package = WorkPackage.find_by_subject(name)
|
|
work_package.subject = table.hashes.first[:subject]
|
|
work_package.start_date = table.hashes.first[:start_date]
|
|
work_package.due_date = table.hashes.first[:due_date]
|
|
work_package.save!
|
|
|
|
end
|
|
end
|
|
|
|
When(/^I set the timeline to compare "now" to "(.*?) days ago"$/) do |time|
|
|
steps %Q{
|
|
When I edit the settings of the current timeline
|
|
}
|
|
|
|
page.should have_selector("#timeline_options_vertical_planning_elements", :visible => false)
|
|
page.execute_script("jQuery('#timeline_options_comparison_relative').attr('checked', 'checked')")
|
|
page.execute_script("jQuery('#timeline_options_compare_to_relative').val('#{time}')")
|
|
page.execute_script("jQuery('#timeline_options_compare_to_relative_unit').val(0)")
|
|
page.execute_script("jQuery('#content form').submit()")
|
|
end
|
|
|
|
Then(/^I should see the work package "(.*?)" has not moved$/) do |name|
|
|
row = getWPRowByName(name)
|
|
row.should_not have_selector(".tl-icon-changed");
|
|
end
|
|
|
|
Then(/^I should see the work package "(.*?)" has moved$/) do |name|
|
|
row = getWPRowByName(name)
|
|
row.should have_selector(".tl-icon-changed");
|
|
end
|
|
|
|
Then(/^I should not see the work package "(.*?)"$/) do |arg1|
|
|
pending # express the regexp above with the code you wish you had
|
|
end
|
|
|