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/models/queries/users/user_query_spec.rb

225 lines
5.9 KiB

#-- copyright
# OpenProject is a project management system.
# Copyright (C) 2012-2018 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 docs/COPYRIGHT.rdoc for more details.
#++
require 'spec_helper'
# prevents test failures where the system user
# is mentioned in the User.not_builtin scope
require 'system_user'
describe Queries::Users::UserQuery, type: :model do
let(:instance) { described_class.new }
let(:base_scope) { User.not_builtin }
context 'without a filter' do
describe '#results' do
it 'is the same as getting all the users' do
expect(instance.results.to_sql).to eql base_scope.to_sql
end
end
end
context 'with a name filter' do
before do
instance.where('name', '~', ['a user'])
end
describe '#results' do
it 'is the same as handwriting the query' do
expected = base_scope
.merge(User
.where(["LOWER(CONCAT(users.firstname, CONCAT(' ', users.lastname))) LIKE ?",
"%a user%"]))
expect(instance.results.to_sql).to eql expected.to_sql
end
end
describe '#valid?' do
it 'is true' do
expect(instance).to be_valid
end
it 'is invalid if the filter is invalid' do
instance.where('name', '=', [''])
expect(instance).to be_invalid
end
end
end
context 'with a status filter' do
before do
instance.where('status', '=', ['active'])
end
describe '#results' do
it 'is the same as handwriting the query' do
expected = base_scope.merge(User.where(["users.status IN (?)", "1"]))
expect(instance.results.to_sql).to eql expected.to_sql
end
end
describe '#valid?' do
it 'is true' do
expect(instance).to be_valid
end
it 'is invalid if the filter is invalid' do
instance.where('status', '=', [''])
expect(instance).to be_invalid
end
end
end
context 'with a group filter' do
let(:group_1) { FactoryGirl.build_stubbed(:group) }
before do
allow(Group)
.to receive(:exists?)
.and_return(true)
allow(Group)
.to receive(:all)
.and_return([group_1])
instance.where('group', '=', [group_1.id])
end
describe '#results' do
it 'is the same as handwriting the query' do
expected = base_scope
.merge(User
.joins(:groups)
.where("groups_users.id IN ('#{group_1.id}')"))
expect(instance.results.to_sql).to eql expected.to_sql
end
end
describe '#valid?' do
it 'is true' do
expect(instance).to be_valid
end
it 'is invalid if the filter is invalid' do
instance.where('group', '=', [''])
expect(instance).to be_invalid
end
end
end
context 'with a non existent filter' do
before do
instance.where('not_supposed_to_exist', '=', ['bogus'])
end
describe '#results' do
it 'returns a query not returning anything' do
expected = User.where(Arel::Nodes::Equality.new(1, 0))
expect(instance.results.to_sql).to eql expected.to_sql
end
end
describe 'valid?' do
it 'is false' do
expect(instance).to be_invalid
end
it 'returns the error on the filter' do
instance.valid?
expect(instance.errors[:filters]).to eql ["Not supposed to exist does not exist."]
end
end
end
context 'with an id sortation' do
before do
instance.order(id: :desc)
end
describe '#results' do
it 'is the same as handwriting the query' do
expected = base_scope.merge(User.order(id: :desc))
expect(instance.results.to_sql).to eql expected.to_sql
end
end
end
context 'with a name sortation' do
before do
instance.order(name: :desc)
end
describe '#results' do
it 'is the same as handwriting the query' do
expected = base_scope.merge(User.order_by_name.reverse_order)
expect(instance.results.to_sql).to eql expected.to_sql
end
end
end
context 'with a group sortation' do
before do
instance.order(group: :desc)
end
describe '#results' do
it 'is the same as handwriting the query' do
expected = base_scope.merge(User.joins(:groups).order("groups_users.lastname DESC"))
expect(instance.results.to_sql).to eql expected.to_sql
end
end
end
context 'with a non existing sortation' do
# this is a field protected from sortation
before do
instance.order(password: :desc)
end
describe '#results' do
it 'returns a query not returning anything' do
expected = User.where(Arel::Nodes::Equality.new(1, 0))
expect(instance.results.to_sql).to eql expected.to_sql
end
end
describe 'valid?' do
it 'is false' do
expect(instance).to be_invalid
end
end
end
end