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.
86 lines
3.0 KiB
86 lines
3.0 KiB
#-- copyright
|
|
# OpenProject is an open source project management software.
|
|
# Copyright (C) 2012-2020 the OpenProject GmbH
|
|
#
|
|
# 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 docs/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
require 'spec_helper'
|
|
|
|
describe ::Query::SortCriteria, type: :model, with_mail: false do
|
|
let(:query) do
|
|
FactoryBot.build :query,
|
|
show_hierarchies: false
|
|
end
|
|
|
|
let(:available_criteria) { query.sortable_key_by_column_name }
|
|
|
|
let(:instance) { described_class.new query.sortable_columns }
|
|
subject { instance.to_a }
|
|
|
|
before do
|
|
instance.criteria = sort_criteria
|
|
instance.available_criteria = available_criteria
|
|
end
|
|
|
|
describe 'ordered handling' do
|
|
context 'with sort_criteria with order handling and no order statement' do
|
|
let(:sort_criteria) { [['start_date']] }
|
|
|
|
it 'adds the order handling' do
|
|
expect(subject.length).to eq 1
|
|
expect(subject.first).to eq ['work_packages.start_date NULLS LAST']
|
|
end
|
|
end
|
|
|
|
context 'with sort_criteria with order handling and ASC order statement' do
|
|
let(:sort_criteria) { [['start_date', 'asc']] }
|
|
|
|
it 'adds the order handling' do
|
|
expect(subject.length).to eq 1
|
|
expect(subject.first).to eq ['work_packages.start_date NULLS LAST']
|
|
end
|
|
end
|
|
|
|
context 'with sort_criteria with order handling and DESC order statement' do
|
|
let(:sort_criteria) { [['start_date', 'desc']] }
|
|
|
|
it 'adds the order handling' do
|
|
expect(subject.length).to eq 1
|
|
expect(subject.first).to eq ['work_packages.start_date DESC NULLS LAST']
|
|
end
|
|
end
|
|
|
|
context 'with multiple sort_criteria with order handling and misc order statement' do
|
|
let(:sort_criteria) { [['fixed_version', 'desc'], ['start_date', 'asc']] }
|
|
|
|
it 'adds the order handling' do
|
|
expect(subject.length).to eq 2
|
|
expect(subject.first)
|
|
.to eq ['start_date DESC NULLS LAST', 'effective_date DESC NULLS LAST', 'name DESC NULLS LAST']
|
|
expect(subject.last).to eq ['work_packages.start_date NULLS LAST']
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|