Commit d9803754 authored by Thong Kuah's avatar Thong Kuah

Merge branch 'if-198480-share_groups_with_groups_fix_owner_access' into 'master'

Allow Owner access level when sharing groups with groups

Closes #198480

See merge request gitlab-org/gitlab!23868
parents 147f7dee 75ed9e7e
...@@ -10,11 +10,11 @@ class GroupGroupLink < ApplicationRecord ...@@ -10,11 +10,11 @@ class GroupGroupLink < ApplicationRecord
validates :shared_group_id, uniqueness: { scope: [:shared_with_group_id], validates :shared_group_id, uniqueness: { scope: [:shared_with_group_id],
message: _('The group has already been shared with this group') } message: _('The group has already been shared with this group') }
validates :shared_with_group, presence: true validates :shared_with_group, presence: true
validates :group_access, inclusion: { in: Gitlab::Access.values }, validates :group_access, inclusion: { in: Gitlab::Access.all_values },
presence: true presence: true
def self.access_options def self.access_options
Gitlab::Access.options Gitlab::Access.options_with_owner
end end
def self.default_access def self.default_access
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
= dropdown_title(_("Change permissions")) = dropdown_title(_("Change permissions"))
.dropdown-content .dropdown-content
%ul %ul
- Gitlab::Access.options.each do |role, role_id| - Gitlab::Access.options_with_owner.each do |role, role_id|
%li %li
= link_to role, '#', = link_to role, '#',
class: ("is-active" if group_link.group_access == role_id), class: ("is-active" if group_link.group_access == role_id),
......
---
title: Allow Owner access level for sharing groups with groups
merge_request: 23868
author:
type: fixed
...@@ -13,12 +13,30 @@ describe Groups::GroupLinksController do ...@@ -13,12 +13,30 @@ describe Groups::GroupLinksController do
describe '#create' do describe '#create' do
let(:shared_with_group_id) { shared_with_group.id } let(:shared_with_group_id) { shared_with_group.id }
let(:shared_group_access) { GroupGroupLink.default_access }
subject do subject do
post(:create, post(:create,
params: { group_id: shared_group, params: { group_id: shared_group,
shared_with_group_id: shared_with_group_id, shared_with_group_id: shared_with_group_id,
shared_group_access: GroupGroupLink.default_access }) shared_group_access: shared_group_access })
end
shared_examples 'creates group group link' do
it 'links group with selected group' do
expect { subject }.to change { shared_with_group.shared_groups.include?(shared_group) }.from(false).to(true)
end
it 'redirects to group links page' do
subject
expect(response).to(redirect_to(group_group_members_path(shared_group)))
end
it 'allows access for group member' do
expect { subject }.to(
change { group_member.can?(:read_group, shared_group) }.from(false).to(true))
end
end end
context 'when user has correct access to both groups' do context 'when user has correct access to both groups' do
...@@ -31,18 +49,19 @@ describe Groups::GroupLinksController do ...@@ -31,18 +49,19 @@ describe Groups::GroupLinksController do
shared_with_group.add_developer(group_member) shared_with_group.add_developer(group_member)
end end
it 'links group with selected group' do context 'when default access level is requested' do
expect { subject }.to change { shared_with_group.shared_groups.include?(shared_group) }.from(false).to(true) include_examples 'creates group group link'
end end
it 'redirects to group links page' do context 'when owner access is requested' do
subject let(:shared_group_access) { Gitlab::Access::OWNER }
expect(response).to(redirect_to(group_group_members_path(shared_group))) include_examples 'creates group group link'
end
it 'allows access for group member' do it 'allows admin access for group member' do
expect { subject }.to change { group_member.can?(:read_group, shared_group) }.from(false).to(true) expect { subject }.to(
change { group_member.can?(:admin_group, shared_group) }.from(false).to(true))
end
end end
context 'when shared with group id is not present' do context 'when shared with group id is not present' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment