OpenProject is the leading open source project management software.
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.
openproject/features/step_definitions/work_package_steps.rb

175 lines
6.0 KiB

#-- encoding: UTF-8
11 years ago
#-- copyright
# OpenProject is a project management system.
# Copyright (C) 2012-2015 the OpenProject Foundation (OPF)
11 years ago
#
# 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.
#
11 years ago
# See doc/COPYRIGHT.rdoc for more details.
#++
require 'rack_session_access/capybara'
11 years ago
InstanceFinder.register(WorkPackage, Proc.new { |name| WorkPackage.find_by(subject: name) })
RouteMap.register(WorkPackage, '/work_packages')
Given /^the work package "(.*?)" has the following children:$/ do |work_package_subject, table|
parent = WorkPackage.find_by(subject: work_package_subject)
table.raw.flatten.each do |child_subject|
child = WorkPackage.find_by(subject: child_subject)
child.parent_id = parent.id
child.save
end
end
Given /^a relation between "(.*?)" and "(.*?)"$/ do |work_package_from, work_package_to|
from = WorkPackage.find_by(subject: work_package_from)
to = WorkPackage.find_by(subject: work_package_to)
11 years ago
FactoryGirl.create :relation, from: from, to: to
end
11 years ago
Given /^user is already watching "(.*?)"$/ do |work_package_subject|
work_package = WorkPackage.find_by(subject: work_package_subject)
user = User.find(page.get_rack_session['user_id'])
11 years ago
work_package.add_watcher user
end
Given(/^the work_package "(.+?)" is updated with the following:$/) do |subject, table|
work_package = WorkPackage.find_by(subject: subject)
except = {}
except['type'] = lambda { |wp, value| wp.type = ::Type.find_by(name: value) if value }
except['assigned_to'] = lambda { |wp, value| wp.assigned_to = User.find_by_login(value) if value }
except['responsible'] = lambda { |wp, value| wp.responsible = User.find_by_login(value) if value }
send_table_to_object(work_package, table, except)
end
Given(/^the user "([^\"]+)" has the following queries by type in the project "(.*?)":$/) do |login, project_name, table|
u = User.find_by login: login
p = get_project(project_name)
table.hashes.each_with_index do |t, _i|
types = ::Type.where(name: t['type_value']).map { |type| type.id.to_s }
p.queries.create(user_id: u.id, name: t['name'], filters: [Queries::WorkPackages::Filter.new(:type_id, operator: '=', values: types)])
end
end
Given(/^the user "([^\"]+)" has the following query menu items in the project "(.*?)":$/) do |login, project_name, table|
u = User.find_by login: login
p = get_project(project_name)
table.hashes.each_with_index do |t, _i|
query = p.queries.find_by name: t['navigatable']
MenuItems::QueryMenuItem.create name: t['name'], title: t['title'], navigatable_id: query.id
end
end
When /^the work package table has finished loading$/ do
message <<-MESSAGE
This is a safeguard to ensure that the work package table is loaded before performing actions
on UI items that have not been fully loaded.
It currently assumes that at least one filter is set, without the necessity of the filter being
displayed.
MESSAGE
expect(page).to have_selector('.advanced-filters--filter', visible: false), message
end
When /^I fill in the id of work package "(.+?)" into "(.+?)"$/ do |wp_name, field_name|
work_package = InstanceFinder.find(WorkPackage, wp_name)
fill_in(field_name, with: work_package.id)
end
Then /^the "(.+?)" field should contain the id of work package "(.+?)"$/ do |field_name, wp_name|
work_package = InstanceFinder.find(WorkPackage, wp_name)
should have_field(field_name, with: work_package.id.to_s)
end
Then /^the work package "(.+?)" should be shown as the parent$/ do |wp_name|
work_package = InstanceFinder.find(WorkPackage, wp_name)
step "I open the work package tab \"Relations\""
within('.tabcontent') do
should have_content(work_package.to_s)
end
end
Then /^the work package should be shown with the following values:$/ do |table|
table_attributes = table.raw.select { |k, _v|
!['Subject', 'Description'].include?(k)
}
table_attributes.each do |key, value|
label = find('dt.attributes-key-value--key', text: key)
should have_css("dd.#{label[:class].split(' ').last}", text: value)
end
if table.rows_hash['Subject']
expected_header = Regexp.new("#{table.rows_hash['Type']}\\s?#\\d+: #{table.rows_hash['Subject']}", Regexp::IGNORECASE)
should have_css('.subject-header', text: expected_header)
end
if table.rows_hash['Description']
should have_css('.work-packages--details--description', text: table.rows_hash['Description'])
end
end
Then(/^the attribute "(.*?)" of work package "(.*?)" should be "(.*?)"$/) do |attribute, wp_name, value|
wp = WorkPackage.find_by(subject: wp_name)
wp ||= WorkPackages.where('subject like ?', wp_name).to_sql
wp.send(attribute).to_s.should == value
end
When /^I open the work package tab "(.+?)"$/ do |tab_label|
within('#tabs') do
click_link tab_label
end
end
When /^I click the edit work package button$/ do
within('#toolbar-items') do
find('button[title=Edit]').click
end
end
When /^I click the watch work package button$/ do
within('#toolbar-items') do
find('#watch-button').click
end
end
When /^I click the unwatch work package button$/ do
within('#toolbar-items') do
find('#unwatch-button').click
end
end