2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
RSpec.describe 'Project > Members > Invite group', :js do
|
2018-03-17 18:26:18 +05:30
|
|
|
include Select2Helper
|
|
|
|
include ActionView::Helpers::DateHelper
|
2021-03-11 19:13:27 +05:30
|
|
|
include Spec::Support::Helpers::Features::MembersHelpers
|
2021-06-08 01:23:25 +05:30
|
|
|
include Spec::Support::Helpers::Features::InviteMembersModalHelper
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
let(:maintainer) { create(:user) }
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
using RSpec::Parameterized::TableSyntax
|
|
|
|
|
|
|
|
where(:invite_members_group_modal_enabled, :expected_invite_group_selector) do
|
2021-10-27 15:23:28 +05:30
|
|
|
true | 'button[data-qa-selector="invite_a_group_button"]' # rubocop:disable QA/SelectorUsage
|
2021-06-08 01:23:25 +05:30
|
|
|
false | '#invite-group-tab'
|
|
|
|
end
|
|
|
|
|
|
|
|
with_them do
|
|
|
|
before do
|
|
|
|
stub_feature_flags(invite_members_group_modal: invite_members_group_modal_enabled)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'displays either the invite group button or the form with tabs based on the feature flag' do
|
|
|
|
project = create(:project, namespace: create(:group))
|
|
|
|
|
|
|
|
project.add_maintainer(maintainer)
|
|
|
|
sign_in(maintainer)
|
|
|
|
|
|
|
|
visit project_project_members_path(project)
|
|
|
|
|
|
|
|
expect(page).to have_selector(expected_invite_group_selector)
|
|
|
|
end
|
2021-09-04 01:27:46 +05:30
|
|
|
|
|
|
|
it 'does not display either the form or the button when visiting the page not signed in' do
|
|
|
|
project = create(:project, namespace: create(:group))
|
|
|
|
|
|
|
|
visit project_project_members_path(project)
|
|
|
|
|
|
|
|
expect(page).not_to have_selector(expected_invite_group_selector)
|
|
|
|
end
|
2021-03-11 19:13:27 +05:30
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
describe 'Share with group lock' do
|
2021-10-27 15:23:28 +05:30
|
|
|
let(:invite_group_selector) { 'button[data-qa-selector="invite_a_group_button"]' } # rubocop:disable QA/SelectorUsage
|
2021-06-08 01:23:25 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
shared_examples 'the project can be shared with groups' do
|
2021-06-08 01:23:25 +05:30
|
|
|
it 'the "Invite a group" button exists' do
|
2020-06-23 00:09:42 +05:30
|
|
|
visit project_project_members_path(project)
|
2021-06-08 01:23:25 +05:30
|
|
|
expect(page).to have_selector(invite_group_selector)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples 'the project cannot be shared with groups' do
|
2021-06-08 01:23:25 +05:30
|
|
|
it 'the "Invite a group" button does not exist' do
|
2020-06-23 00:09:42 +05:30
|
|
|
visit project_project_members_path(project)
|
2021-06-08 01:23:25 +05:30
|
|
|
expect(page).not_to have_selector(invite_group_selector)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for a project in a root group' do
|
|
|
|
let!(:group_to_share_with) { create(:group) }
|
|
|
|
let(:project) { create(:project, namespace: create(:group)) }
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
before do
|
2018-11-18 11:00:15 +05:30
|
|
|
project.add_maintainer(maintainer)
|
2019-03-13 22:55:13 +05:30
|
|
|
group_to_share_with.add_guest(maintainer)
|
2018-11-18 11:00:15 +05:30
|
|
|
sign_in(maintainer)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the group has "Share with group lock" disabled' do
|
|
|
|
it_behaves_like 'the project can be shared with groups'
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
it 'the project can be shared with another group when the feature flag invite_members_group_modal is disabled' do
|
|
|
|
stub_feature_flags(invite_members_group_modal: false)
|
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
visit project_project_members_path(project)
|
2020-06-23 00:09:42 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
expect(page).not_to have_link 'Groups'
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
click_on 'invite-group-tab'
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
select2 group_to_share_with.id, from: '#link_group_id'
|
|
|
|
page.find('body').click
|
|
|
|
find('.btn-confirm').click
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
click_link 'Groups'
|
2021-03-08 18:12:59 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
expect(members_table).to have_content(group_to_share_with.name)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
2021-06-08 01:23:25 +05:30
|
|
|
|
|
|
|
it 'the project can be shared with another group when the feature flag invite_members_group_modal is enabled' do
|
|
|
|
stub_feature_flags(invite_members_group_modal: true)
|
|
|
|
|
|
|
|
visit project_project_members_path(project)
|
|
|
|
|
|
|
|
expect(page).not_to have_link 'Groups'
|
|
|
|
|
|
|
|
invite_group(group_to_share_with.name)
|
|
|
|
|
|
|
|
visit project_project_members_path(project)
|
|
|
|
|
|
|
|
click_link 'Groups'
|
|
|
|
|
|
|
|
expect(members_table).to have_content(group_to_share_with.name)
|
|
|
|
end
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the group has "Share with group lock" enabled' do
|
|
|
|
before do
|
|
|
|
project.namespace.update_column(:share_with_group_lock, true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'the project cannot be shared with groups'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
context 'for a project in a subgroup' do
|
2018-03-17 18:26:18 +05:30
|
|
|
let!(:group_to_share_with) { create(:group) }
|
|
|
|
let(:root_group) { create(:group) }
|
|
|
|
let(:subgroup) { create(:group, parent: root_group) }
|
|
|
|
let(:project) { create(:project, namespace: subgroup) }
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
before do
|
2018-11-18 11:00:15 +05:30
|
|
|
project.add_maintainer(maintainer)
|
|
|
|
sign_in(maintainer)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the root_group has "Share with group lock" disabled' do
|
|
|
|
context 'when the subgroup has "Share with group lock" disabled' do
|
|
|
|
it_behaves_like 'the project can be shared with groups'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the subgroup has "Share with group lock" enabled' do
|
|
|
|
before do
|
|
|
|
subgroup.update_column(:share_with_group_lock, true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'the project cannot be shared with groups'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the root_group has "Share with group lock" enabled' do
|
|
|
|
before do
|
|
|
|
root_group.update_column(:share_with_group_lock, true)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the subgroup has "Share with group lock" disabled (parent overridden)' do
|
|
|
|
it_behaves_like 'the project can be shared with groups'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the subgroup has "Share with group lock" enabled' do
|
|
|
|
before do
|
|
|
|
subgroup.update_column(:share_with_group_lock, true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'the project cannot be shared with groups'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'setting an expiration date for a group link' do
|
|
|
|
let(:project) { create(:project) }
|
|
|
|
let!(:group) { create(:group) }
|
|
|
|
|
2021-11-18 22:05:49 +05:30
|
|
|
let_it_be(:expiration_date) { 5.days.from_now.to_date }
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
around do |example|
|
2020-11-24 15:15:51 +05:30
|
|
|
freeze_time { example.run }
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
2021-03-11 19:13:27 +05:30
|
|
|
def setup
|
2018-11-18 11:00:15 +05:30
|
|
|
project.add_maintainer(maintainer)
|
2019-03-13 22:55:13 +05:30
|
|
|
group.add_guest(maintainer)
|
2018-11-18 11:00:15 +05:30
|
|
|
sign_in(maintainer)
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
visit project_project_members_path(project)
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2021-11-18 22:05:49 +05:30
|
|
|
invite_group(group.name, role: 'Guest', expires_at: expiration_date)
|
2021-03-11 19:13:27 +05:30
|
|
|
end
|
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
it 'the group link shows the expiration time with a warning class' do
|
|
|
|
setup
|
|
|
|
click_link 'Groups'
|
2021-03-11 19:13:27 +05:30
|
|
|
|
2021-11-18 22:05:49 +05:30
|
|
|
expect(page).to have_field('Expiration date', with: expiration_date)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'the groups dropdown' do
|
|
|
|
context 'with multiple groups to choose from' do
|
|
|
|
let(:project) { create(:project) }
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
it 'includes multiple groups' do
|
2018-11-18 11:00:15 +05:30
|
|
|
project.add_maintainer(maintainer)
|
|
|
|
sign_in(maintainer)
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
group1 = create(:group)
|
|
|
|
group1.add_owner(maintainer)
|
|
|
|
group2 = create(:group)
|
|
|
|
group2.add_owner(maintainer)
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
visit project_project_members_path(project)
|
2018-03-27 19:54:05 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
click_on 'Invite a group'
|
|
|
|
click_on 'Select a group'
|
|
|
|
wait_for_requests
|
2018-03-27 19:54:05 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
expect(page).to have_button(group1.name)
|
|
|
|
expect(page).to have_button(group2.name)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for a project in a nested group' do
|
|
|
|
let(:group) { create(:group) }
|
|
|
|
let!(:nested_group) { create(:group, parent: group) }
|
|
|
|
let!(:group_to_share_with) { create(:group) }
|
|
|
|
let!(:project) { create(:project, namespace: nested_group) }
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
before do
|
2018-11-18 11:00:15 +05:30
|
|
|
project.add_maintainer(maintainer)
|
|
|
|
sign_in(maintainer)
|
|
|
|
group.add_maintainer(maintainer)
|
|
|
|
group_to_share_with.add_maintainer(maintainer)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
# This behavior should be changed to exclude the ancestor and project
|
|
|
|
# group from the options once issue is fixed for the modal:
|
|
|
|
# https://gitlab.com/gitlab-org/gitlab/-/issues/329835
|
|
|
|
it 'the groups dropdown does show ancestors and the project group' do
|
2020-06-23 00:09:42 +05:30
|
|
|
visit project_project_members_path(project)
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
click_on 'Invite a group'
|
|
|
|
click_on 'Select a group'
|
|
|
|
wait_for_requests
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
expect(page).to have_button(group_to_share_with.name)
|
|
|
|
expect(page).to have_button(group.name)
|
|
|
|
expect(page).to have_button(nested_group.name)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|