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/spec/features/support/work_package_table.rb

63 lines
2.2 KiB

#-- copyright
# OpenProject is a project management system.
# Copyright (C) 2012-2017 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-2017 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.
#++
shared_context 'work package table helpers' do
def sort_wp_table_by(column_name, order: :desc)
click_button('Settings')
click_link('Sort by ...')
# Ensure the modal is opened before calling the non waiting 'all' function.
find('.ng-modal-window', text: 'Sorting')
within '#modal-sorting .form--row:first-of-type' do
select column_name, from: I18n.t('js.filter.sorting.criteria.one')
order_name = order == :desc ? 'Descending' : 'Ascending'
choose(order_name)
end
click_button('Apply')
end
def expect_work_packages_to_be_in_order(order)
within_wp_table do
preceeding_elements = order[0..-2]
following_elements = order[1..-1]
preceeding_elements.each_with_index do |wp_1, i|
wp_2 = following_elements[i]
expect(self).to have_selector(".wp-row-#{wp_1.id} + \
.wp-row-#{wp_2.id}")
end
end
end
def within_wp_table(&block)
within('.work-package-table--container', &block)
end
end