commit
ae7facfb4e
@ -0,0 +1,37 @@ |
||||
#-- copyright |
||||
# OpenProject is a project management system. |
||||
# Copyright (C) 2012-2014 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 'select2 helpers' do |
||||
def select2_select_option(select2_element, option_name) |
||||
select2_element.find('.select2-choice').click |
||||
|
||||
within('.select2-drop') do |
||||
find('.select2-result-selectable', text: option_name).click |
||||
end |
||||
end |
||||
end |
@ -0,0 +1,87 @@ |
||||
#-- copyright |
||||
# OpenProject is a project management system. |
||||
# Copyright (C) 2012-2014 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 ...') |
||||
|
||||
# If the modal was accessible, this would be elegant. |
||||
first_sort_criteria = all('.select2-container')[0] |
||||
select2_select_option(first_sort_criteria, column_name) |
||||
|
||||
# If the modal was accessible, this would be elegant. |
||||
order_name = order == :desc ? 'Descending' : 'Ascending' |
||||
|
||||
first_sort_order = all('.select2-container')[1] |
||||
select2_select_option(first_sort_order, order_name) |
||||
|
||||
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-packages-table--results-container', &block) |
||||
end |
||||
|
||||
def ensure_wp_page_is_loaded |
||||
# This is here to ensure the page is loaded completely before the next spec |
||||
# is run. As the filters are loaded late in the page, all Ajax requests |
||||
# have been answered by then. Without this, requests still running from |
||||
# the last spec, might expect data that has already been removed as |
||||
# preparation for the current spec. |
||||
find('#work-packages-filter-toggle-button').click |
||||
expect(page).to have_selector('.filter label', text: 'Status') |
||||
end |
||||
end |
@ -0,0 +1,54 @@ |
||||
require 'spec_helper' |
||||
require 'features/work_packages/work_packages_page' |
||||
|
||||
describe 'Select work package row', type: :feature do |
||||
let(:user) { FactoryGirl.create(:admin) } |
||||
let(:project) { FactoryGirl.create(:project) } |
||||
let(:work_package_1) do |
||||
FactoryGirl.create(:work_package, project: project) |
||||
end |
||||
let(:work_package_2) do |
||||
FactoryGirl.create(:work_package, project: project) |
||||
end |
||||
let(:work_packages_page) { WorkPackagesPage.new(project) } |
||||
|
||||
let(:version_1) do |
||||
FactoryGirl.create(:version, project: project, |
||||
name: 'aaa_version') |
||||
end |
||||
let(:version_2) do |
||||
FactoryGirl.create(:version, project: project, |
||||
name: 'zzz_version') |
||||
end |
||||
|
||||
before do |
||||
allow(User).to receive(:current).and_return(user) |
||||
|
||||
work_package_1 |
||||
work_package_2 |
||||
|
||||
work_packages_page.visit_index |
||||
end |
||||
|
||||
include_context 'select2 helpers' |
||||
include_context 'work package table helpers' |
||||
|
||||
after do |
||||
ensure_wp_page_is_loaded |
||||
end |
||||
|
||||
context 'sorting by version', js: true do |
||||
before do |
||||
work_package_1.update_attribute(:fixed_version_id, version_2.id) |
||||
work_package_2.update_attribute(:fixed_version_id, version_1.id) |
||||
end |
||||
|
||||
it 'sorts by version although version is not selected as a column' do |
||||
remove_wp_table_column('Version') |
||||
|
||||
sort_wp_table_by('Version') |
||||
|
||||
expect_work_packages_to_be_in_order([work_package_1, work_package_2]) |
||||
end |
||||
end |
||||
end |
Loading…
Reference in new issue