2021-07-20 17:35:02 +00:00
|
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
|
|
|
|
|
RSpec.shared_examples 'for agent user' do |access_type|
|
|
|
|
|
let(:member_groups) { create_list(:group, 2) }
|
|
|
|
|
let(:nonmember_group) { create(:group) }
|
|
|
|
|
|
|
|
|
|
before do
|
|
|
|
|
create(:ticket, group: member_groups.first)
|
|
|
|
|
create(:ticket, group: member_groups.second)
|
|
|
|
|
create(:ticket, group: nonmember_group)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
shared_examples 'shown' do
|
|
|
|
|
it 'returns its groups’ tickets' do
|
|
|
|
|
expect(scope.resolve)
|
|
|
|
|
.to match_array(Ticket.where(group: member_groups))
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
shared_examples 'hidden' do
|
|
|
|
|
it 'does not return its groups’ tickets' do
|
|
|
|
|
expect(scope.resolve)
|
|
|
|
|
.to be_empty
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'with direct access via User#groups' do
|
|
|
|
|
let(:user) { create(:agent, groups: member_groups) }
|
|
|
|
|
|
2021-07-21 14:04:17 +00:00
|
|
|
|
context 'when checking for "full" access' do
|
2021-07-20 17:35:02 +00:00
|
|
|
|
# this is already true by default, but it doesn't hurt to be explicit
|
|
|
|
|
before { user.user_groups.each { |ug| ug.update_columns(access: 'full') } }
|
|
|
|
|
|
|
|
|
|
include_examples 'shown'
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when limited to "read" access' do
|
|
|
|
|
before { user.user_groups.each { |ug| ug.update_columns(access: 'read') } }
|
|
|
|
|
|
|
|
|
|
include_examples access_type == 'read' ? 'shown' : 'hidden'
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when limited to "overview" access' do
|
|
|
|
|
before { user.user_groups.each { |ug| ug.update_columns(access: 'overview') } }
|
|
|
|
|
|
|
|
|
|
include_examples access_type == 'overview' ? 'shown' : 'hidden'
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'with indirect access via Role#groups' do
|
|
|
|
|
let(:user) { create(:agent).tap { |u| u.roles << role } }
|
|
|
|
|
let(:role) { create(:role, groups: member_groups) }
|
|
|
|
|
|
2021-07-21 14:04:17 +00:00
|
|
|
|
context 'when checking for "full" access' do
|
2021-07-20 17:35:02 +00:00
|
|
|
|
# this is already true by default, but it doesn't hurt to be explicit
|
|
|
|
|
before { role.role_groups.each { |rg| rg.update_columns(access: 'full') } }
|
|
|
|
|
|
|
|
|
|
include_examples 'shown'
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when limited to "read" access' do
|
|
|
|
|
before { role.role_groups.each { |rg| rg.update_columns(access: 'read') } }
|
|
|
|
|
|
|
|
|
|
include_examples access_type == 'read' ? 'shown' : 'hidden'
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'when limited to "overview" access' do
|
|
|
|
|
before { role.role_groups.each { |rg| rg.update_columns(access: 'overview') } }
|
|
|
|
|
|
|
|
|
|
include_examples access_type == 'overview' ? 'shown' : 'hidden'
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
RSpec.shared_examples 'for agent user with predefined but impossible context' do
|
|
|
|
|
let(:member_groups) { create_list(:group, 2) }
|
|
|
|
|
let(:nonmember_group) { create(:group) }
|
|
|
|
|
let(:user) { create(:agent, groups: member_groups) }
|
|
|
|
|
|
|
|
|
|
before do
|
|
|
|
|
create(:ticket, group: member_groups.first)
|
|
|
|
|
create(:ticket, group: member_groups.second)
|
|
|
|
|
create(:ticket, group: nonmember_group)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'does not find tickets because of restrictive predefined scope' do
|
|
|
|
|
expect(scope.resolve).to match_array(Ticket.where(id: -1))
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
RSpec.shared_examples 'for customer user' do
|
|
|
|
|
let(:user) { create(:customer, organization: organization) }
|
|
|
|
|
let!(:user_tickets) { create_list(:ticket, 2, customer: user) }
|
|
|
|
|
|
|
|
|
|
let(:teammate) { create(:customer, organization: organization) }
|
|
|
|
|
let!(:teammate_tickets) { create_list(:ticket, 2, customer: teammate) }
|
|
|
|
|
|
|
|
|
|
context 'with no #organization' do
|
|
|
|
|
let(:organization) { nil }
|
|
|
|
|
|
|
|
|
|
it 'returns only the customer’s tickets' do
|
|
|
|
|
expect(scope.resolve).to match_array(user_tickets)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'with a non-shared #organization' do
|
|
|
|
|
let(:organization) { create(:organization, shared: false) }
|
|
|
|
|
|
|
|
|
|
it 'returns only the customer’s tickets' do
|
|
|
|
|
expect(scope.resolve).to match_array(user_tickets)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
context 'with a shared #organization (default)' do
|
|
|
|
|
let(:organization) { create(:organization, shared: true) }
|
|
|
|
|
|
|
|
|
|
it 'returns only the customer’s or organization’s tickets' do
|
|
|
|
|
expect(scope.resolve).to match_array(user_tickets | teammate_tickets)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|