parent
f52f54aa97
commit
8aebddb606
@ -0,0 +1,155 @@ |
|||||||
|
#-- 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. |
||||||
|
#++ |
||||||
|
|
||||||
|
require 'spec_helper' |
||||||
|
|
||||||
|
describe Queries::WorkPackages::Filter::AssignedToFilter, type: :model do |
||||||
|
let(:instance) do |
||||||
|
filter = described_class.new |
||||||
|
filter.values = values |
||||||
|
filter.operator = operator |
||||||
|
filter |
||||||
|
end |
||||||
|
|
||||||
|
let(:operator) { '=' } |
||||||
|
let(:values) { [] } |
||||||
|
|
||||||
|
describe 'where filter results' do |
||||||
|
let(:work_package) { FactoryGirl.create(:work_package, assigned_to: assignee) } |
||||||
|
let(:assignee) { FactoryGirl.create(:user) } |
||||||
|
let(:group) { FactoryGirl.create(:group) } |
||||||
|
|
||||||
|
subject { WorkPackage.where(instance.where) } |
||||||
|
|
||||||
|
context 'for the user value' do |
||||||
|
let(:values) { [assignee.id.to_s] } |
||||||
|
|
||||||
|
it 'returns the work package' do |
||||||
|
is_expected |
||||||
|
.to match_array [work_package] |
||||||
|
end |
||||||
|
end |
||||||
|
|
||||||
|
context 'for the me value with the user being logged in' do |
||||||
|
let(:values) { ['me'] } |
||||||
|
|
||||||
|
before do |
||||||
|
allow(User) |
||||||
|
.to receive(:current) |
||||||
|
.and_return(assignee) |
||||||
|
end |
||||||
|
|
||||||
|
it 'returns the work package' do |
||||||
|
is_expected |
||||||
|
.to match_array [work_package] |
||||||
|
end |
||||||
|
end |
||||||
|
|
||||||
|
context 'for the me value with another user being logged in' do |
||||||
|
let(:values) { ['me'] } |
||||||
|
|
||||||
|
before do |
||||||
|
allow(User) |
||||||
|
.to receive(:current) |
||||||
|
.and_return(FactoryGirl.create(:user)) |
||||||
|
end |
||||||
|
|
||||||
|
it 'does not return the work package' do |
||||||
|
is_expected |
||||||
|
.to be_empty |
||||||
|
end |
||||||
|
end |
||||||
|
|
||||||
|
context 'for a group value with the group being assignee' do |
||||||
|
let(:assignee) { group } |
||||||
|
let(:values) { [group.id.to_s] } |
||||||
|
|
||||||
|
it 'returns the work package' do |
||||||
|
is_expected |
||||||
|
.to match_array [work_package] |
||||||
|
end |
||||||
|
end |
||||||
|
|
||||||
|
context 'for a group value with a group member being assignee' do |
||||||
|
let(:values) { [group.id.to_s] } |
||||||
|
|
||||||
|
before do |
||||||
|
group.users << assignee |
||||||
|
end |
||||||
|
|
||||||
|
it 'returns the work package' do |
||||||
|
is_expected |
||||||
|
.to match_array [work_package] |
||||||
|
end |
||||||
|
end |
||||||
|
|
||||||
|
context 'for a group value with no group member being assignee' do |
||||||
|
let(:values) { [group.id.to_s] } |
||||||
|
|
||||||
|
it 'does not return the work package' do |
||||||
|
is_expected |
||||||
|
.to be_empty |
||||||
|
end |
||||||
|
end |
||||||
|
|
||||||
|
context "for a user value with the user's group being assignee" do |
||||||
|
let(:values) { [user.id.to_s] } |
||||||
|
let(:assignee) { group } |
||||||
|
let(:user) { FactoryGirl.create(:user) } |
||||||
|
|
||||||
|
before do |
||||||
|
group.users << user |
||||||
|
end |
||||||
|
|
||||||
|
it 'returns the work package' do |
||||||
|
is_expected |
||||||
|
.to match_array [work_package] |
||||||
|
end |
||||||
|
end |
||||||
|
|
||||||
|
context "for a user value with the user not being member of the assigned group" do |
||||||
|
let(:values) { [user.id.to_s] } |
||||||
|
let(:assignee) { group } |
||||||
|
let(:user) { FactoryGirl.create(:user) } |
||||||
|
|
||||||
|
it 'does not return the work package' do |
||||||
|
is_expected |
||||||
|
.to be_empty |
||||||
|
end |
||||||
|
end |
||||||
|
|
||||||
|
context 'for an unmatched value' do |
||||||
|
let(:values) { ['0'] } |
||||||
|
|
||||||
|
it 'does not return the work package' do |
||||||
|
is_expected |
||||||
|
.to be_empty |
||||||
|
end |
||||||
|
end |
||||||
|
end |
||||||
|
end |
Loading…
Reference in new issue