2019-12-26 22:10:19 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe Groups::GroupLinks::CreateService, '#execute' do
|
2019-12-26 22:10:19 +05:30
|
|
|
let(:parent_group_user) { create(:user) }
|
|
|
|
let(:group_user) { create(:user) }
|
|
|
|
let(:child_group_user) { create(:user) }
|
|
|
|
|
|
|
|
let_it_be(:group_parent) { create(:group, :private) }
|
|
|
|
let_it_be(:group) { create(:group, :private, parent: group_parent) }
|
|
|
|
let_it_be(:group_child) { create(:group, :private, parent: group) }
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
let_it_be(:shared_group_parent, refind: true) { create(:group, :private) }
|
|
|
|
let_it_be(:shared_group, refind: true) { create(:group, :private, parent: shared_group_parent) }
|
2019-12-26 22:10:19 +05:30
|
|
|
let_it_be(:shared_group_child) { create(:group, :private, parent: shared_group) }
|
|
|
|
|
|
|
|
let_it_be(:project_parent) { create(:project, group: shared_group_parent) }
|
|
|
|
let_it_be(:project) { create(:project, group: shared_group) }
|
|
|
|
let_it_be(:project_child) { create(:project, group: shared_group_child) }
|
|
|
|
|
|
|
|
let(:opts) do
|
|
|
|
{
|
|
|
|
shared_group_access: Gitlab::Access::DEVELOPER,
|
|
|
|
expires_at: nil
|
|
|
|
}
|
|
|
|
end
|
2020-10-24 23:57:45 +05:30
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
let(:user) { group_user }
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
subject { described_class.new(shared_group, group, user, opts) }
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
before do
|
|
|
|
group.add_guest(group_user)
|
|
|
|
shared_group.add_owner(group_user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'adds group to another group' do
|
2021-09-04 01:27:46 +05:30
|
|
|
expect { subject.execute }.to change { group.shared_group_links.count }.from(0).to(1)
|
2019-12-26 22:10:19 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false if shared group is blank' do
|
2021-09-04 01:27:46 +05:30
|
|
|
expect { described_class.new(nil, group, user, opts) }.not_to change { group.shared_group_links.count }
|
2019-12-26 22:10:19 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'user does not have access to group' do
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
shared_group.add_owner(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns error' do
|
2021-09-04 01:27:46 +05:30
|
|
|
result = subject.execute
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
expect(result[:status]).to eq(:error)
|
|
|
|
expect(result[:http_status]).to eq(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'user does not have admin access to shared group' do
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
group.add_guest(user)
|
|
|
|
shared_group.add_developer(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns error' do
|
2021-09-04 01:27:46 +05:30
|
|
|
result = subject.execute
|
2019-12-26 22:10:19 +05:30
|
|
|
|
|
|
|
expect(result[:status]).to eq(:error)
|
|
|
|
expect(result[:http_status]).to eq(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
context 'project authorizations based on group hierarchies' do
|
2019-12-26 22:10:19 +05:30
|
|
|
before do
|
|
|
|
group_parent.add_owner(parent_group_user)
|
|
|
|
group.add_owner(group_user)
|
|
|
|
group_child.add_owner(child_group_user)
|
|
|
|
end
|
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
context 'project authorizations refresh' do
|
|
|
|
it 'is executed only for the direct members of the group' do
|
|
|
|
expect(UserProjectAccessChangedService).to receive(:new).with(contain_exactly(group_user.id)).and_call_original
|
2019-12-26 22:10:19 +05:30
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
subject.execute
|
2019-12-26 22:10:19 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
context 'project authorizations' do
|
|
|
|
context 'group user' do
|
|
|
|
let(:user) { group_user }
|
2019-12-26 22:10:19 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
it 'create proper authorizations' do
|
2021-09-04 01:27:46 +05:30
|
|
|
subject.execute
|
2019-12-26 22:10:19 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
expect(Ability.allowed?(user, :read_project, project_parent)).to be_falsey
|
|
|
|
expect(Ability.allowed?(user, :read_project, project)).to be_truthy
|
|
|
|
expect(Ability.allowed?(user, :read_project, project_child)).to be_truthy
|
|
|
|
end
|
2019-12-26 22:10:19 +05:30
|
|
|
end
|
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
context 'parent group user' do
|
|
|
|
let(:user) { parent_group_user }
|
2019-12-26 22:10:19 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
it 'create proper authorizations' do
|
2021-09-04 01:27:46 +05:30
|
|
|
subject.execute
|
2021-04-17 20:07:23 +05:30
|
|
|
|
|
|
|
expect(Ability.allowed?(user, :read_project, project_parent)).to be_falsey
|
|
|
|
expect(Ability.allowed?(user, :read_project, project)).to be_falsey
|
|
|
|
expect(Ability.allowed?(user, :read_project, project_child)).to be_falsey
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'child group user' do
|
|
|
|
let(:user) { child_group_user }
|
|
|
|
|
|
|
|
it 'create proper authorizations' do
|
2021-09-04 01:27:46 +05:30
|
|
|
subject.execute
|
2019-12-26 22:10:19 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
expect(Ability.allowed?(user, :read_project, project_parent)).to be_falsey
|
|
|
|
expect(Ability.allowed?(user, :read_project, project)).to be_falsey
|
|
|
|
expect(Ability.allowed?(user, :read_project, project_child)).to be_falsey
|
|
|
|
end
|
2019-12-26 22:10:19 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2021-09-04 01:27:46 +05:30
|
|
|
|
|
|
|
context 'sharing outside the hierarchy is disabled' do
|
|
|
|
before do
|
|
|
|
shared_group_parent.namespace_settings.update!(prevent_sharing_groups_outside_hierarchy: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'prevents sharing with a group outside the hierarchy' do
|
|
|
|
result = subject.execute
|
|
|
|
|
|
|
|
expect(group.reload.shared_group_links.count).to eq(0)
|
|
|
|
expect(result[:status]).to eq(:error)
|
|
|
|
expect(result[:http_status]).to eq(404)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'allows sharing with a group within the hierarchy' do
|
|
|
|
sibling_group = create(:group, :private, parent: shared_group_parent)
|
|
|
|
sibling_group.add_guest(group_user)
|
|
|
|
|
|
|
|
result = described_class.new(shared_group, sibling_group, user, opts).execute
|
|
|
|
|
|
|
|
expect(sibling_group.reload.shared_group_links.count).to eq(1)
|
|
|
|
expect(result[:status]).to eq(:success)
|
|
|
|
end
|
|
|
|
end
|
2019-12-26 22:10:19 +05:30
|
|
|
end
|