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/services/authorization/user_project_roles_query_sp...

112 lines
3.7 KiB

#-- 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 Authorization::UserProjectRolesQuery do
let(:user) { FactoryGirl.build(:user) }
let(:anonymous) { FactoryGirl.build(:anonymous) }
let(:project) { FactoryGirl.build(:project, is_public: false) }
let(:project2) { FactoryGirl.build(:project, is_public: false) }
let(:public_project) { FactoryGirl.build(:project, is_public: true) }
let(:role) { FactoryGirl.build(:role) }
let(:role2) { FactoryGirl.build(:role) }
let(:anonymous_role) { FactoryGirl.build(:anonymous_role) }
let(:non_member) { FactoryGirl.build(:non_member) }
let(:member) {
FactoryGirl.build(:member, project: project,
roles: [role],
principal: user)
}
let(:member2) {
FactoryGirl.build(:member, project: project2,
roles: [role2],
principal: user)
}
describe '.query' do
before do
non_member.save!
anonymous_role.save!
user.save!
end
it 'is a user relation' do
expect(described_class.query(user, project)).to be_a ActiveRecord::Relation
end
context 'w/ the user being a member in the project' do
before do
member.save!
end
it 'is the project roles' do
expect(described_class.query(user, project)).to match [role]
end
end
context 'w/o the user being member in the project
w/ the project being private' do
it 'is empty' do
expect(described_class.query(user, project)).to be_empty
end
end
context 'w/o the user being member in the project
w/ the project being public' do
it 'is the non member role' do
expect(described_class.query(user, public_project)).to match_array [non_member]
end
end
context 'w/ the user being anonymous
w/ the project being public' do
it 'is empty' do
expect(described_class.query(anonymous, public_project)).to match_array [anonymous_role]
end
end
context 'w/ the user being anonymous
w/o the project being public' do
it 'is empty' do
expect(described_class.query(anonymous, project)).to be_empty
end
end
context 'w/ the user being a member in two projects' do
before do
member.save!
member2.save!
end
it 'returns only the roles from the requested project' do
expect(described_class.query(user, project)).to match_array [role]
end
end
end
end