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.
78 lines
2.6 KiB
78 lines
2.6 KiB
#-- copyright
|
|
# OpenProject is a project management system.
|
|
# Copyright (C) 2012-2015 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.
|
|
#++
|
|
|
|
shared_context 'work package table helpers' do
|
|
def remove_wp_table_column(column_name)
|
|
click_button('Settings')
|
|
click_link('Columns ...')
|
|
|
|
# This is faster than has_selector but does not wait for anything.
|
|
# So if problems occur, switch to has_selector?
|
|
if find('.select2-choices').text.include?(column_name)
|
|
find('.select2-search-choice', text: column_name)
|
|
.click_link('select2-search-choice-close')
|
|
end
|
|
|
|
click_button('Apply')
|
|
end
|
|
|
|
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' do
|
|
first_sort_criteria = first('.select2-container')
|
|
ui_select_choose(first_sort_criteria, column_name)
|
|
|
|
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("#work-package-#{wp_1.id} + \
|
|
#work-package-#{wp_2.id}")
|
|
end
|
|
end
|
|
end
|
|
|
|
def within_wp_table(&block)
|
|
within('.work-package-table--container', &block)
|
|
end
|
|
end
|
|
|