debian-mirror-gitlab/spec/features/admin/admin_groups_spec.rb

283 lines
8.6 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
require 'spec_helper'
2020-06-23 00:09:42 +05:30
RSpec.describe 'Admin Groups' do
2017-08-17 22:00:37 +05:30
include Select2Helper
2021-01-29 00:20:46 +05:30
include Spec::Support::Helpers::Features::MembersHelpers
2021-06-08 01:23:25 +05:30
include Spec::Support::Helpers::Features::InviteMembersModalHelper
2017-08-17 22:00:37 +05:30
let(:internal) { Gitlab::VisibilityLevel::INTERNAL }
2021-02-22 17:27:13 +05:30
let_it_be(:user) { create :user }
let_it_be(:group) { create :group }
let_it_be(:current_user) { create(:admin) }
2017-08-17 22:00:37 +05:30
before do
2017-09-10 17:25:29 +05:30
sign_in(current_user)
2021-02-22 17:27:13 +05:30
gitlab_enable_admin_mode_sign_in(current_user)
2017-08-17 22:00:37 +05:30
stub_application_setting(default_group_visibility: internal)
end
describe 'list' do
it 'renders groups' do
visit admin_groups_path
expect(page).to have_content(group.name)
end
end
describe 'create a group' do
2021-02-22 17:27:13 +05:30
describe 'with expected fields' do
it 'renders from as expected', :aggregate_failures do
visit new_admin_group_path
expect(page).to have_field('name')
expect(page).to have_field('group_path')
expect(page).to have_field('group_visibility_level_0')
expect(page).to have_field('description')
2021-04-29 21:17:54 +05:30
expect(page).to have_field('group_admin_note_attributes_note')
2021-02-22 17:27:13 +05:30
end
end
2017-08-17 22:00:37 +05:30
it 'creates new group' do
visit admin_groups_path
2017-09-10 17:25:29 +05:30
page.within '#content-body' do
click_link "New group"
end
2017-08-17 22:00:37 +05:30
path_component = 'gitlab'
group_name = 'GitLab group name'
group_description = 'Description of group for GitLab'
2021-04-29 21:17:54 +05:30
group_admin_note = 'A note about this group by an admin'
2018-11-08 19:23:39 +05:30
2017-08-17 22:00:37 +05:30
fill_in 'group_path', with: path_component
fill_in 'group_name', with: group_name
fill_in 'group_description', with: group_description
2021-04-29 21:17:54 +05:30
fill_in 'group_admin_note_attributes_note', with: group_admin_note
2017-08-17 22:00:37 +05:30
click_button "Create group"
expect(current_path).to eq admin_group_path(Group.find_by(path: path_component))
2021-03-11 19:13:27 +05:30
content = page.find('#content-body')
2017-08-17 22:00:37 +05:30
h3_texts = content.all('h3').collect(&:text).join("\n")
expect(h3_texts).to match group_name
li_texts = content.all('li').collect(&:text).join("\n")
expect(li_texts).to match group_name
expect(li_texts).to match path_component
expect(li_texts).to match group_description
2021-04-29 21:17:54 +05:30
p_texts = content.all('p').collect(&:text).join('/n')
expect(p_texts).to match group_admin_note
2017-08-17 22:00:37 +05:30
end
2018-11-08 19:23:39 +05:30
it 'shows the visibility level radio populated with the default value' do
2017-08-17 22:00:37 +05:30
visit new_admin_group_path
expect_selected_visibility(internal)
end
2018-12-13 13:39:08 +05:30
it 'when entered in group name, it auto filled the group path', :js do
2017-08-17 22:00:37 +05:30
visit admin_groups_path
click_link "New group"
2018-12-13 13:39:08 +05:30
group_name = 'gitlab'
fill_in 'group_name', with: group_name
path_field = find('input#group_path')
expect(path_field.value).to eq group_name
end
it 'auto populates the group path with the group name', :js do
visit admin_groups_path
click_link "New group"
group_name = 'my gitlab project'
fill_in 'group_name', with: group_name
path_field = find('input#group_path')
expect(path_field.value).to eq 'my-gitlab-project'
end
it 'when entering in group path, group name does not change anymore', :js do
visit admin_groups_path
click_link "New group"
group_path = 'my-gitlab-project'
group_name = 'My modified gitlab project'
2017-08-17 22:00:37 +05:30
fill_in 'group_path', with: group_path
2018-12-13 13:39:08 +05:30
fill_in 'group_name', with: group_name
path_field = find('input#group_path')
expect(path_field.value).to eq 'my-gitlab-project'
2017-08-17 22:00:37 +05:30
end
end
describe 'show a group' do
2018-11-08 19:23:39 +05:30
it 'shows the group' do
2017-08-17 22:00:37 +05:30
group = create(:group, :private)
visit admin_group_path(group)
expect(page).to have_content("Group: #{group.name}")
2019-10-12 21:52:04 +05:30
expect(page).to have_content("ID: #{group.id}")
2017-08-17 22:00:37 +05:30
end
2020-01-01 13:55:28 +05:30
it 'has a link to the group' do
group = create(:group, :private)
visit admin_group_path(group)
expect(page).to have_link(group.name, href: group_path(group))
end
2021-04-29 21:17:54 +05:30
it 'has a note if one is available' do
group = create(:group, :private)
note_text = 'A group administrator note'
group.update!(admin_note_attributes: { note: note_text })
visit admin_group_path(group)
expect(page).to have_text(note_text)
end
2017-08-17 22:00:37 +05:30
end
describe 'group edit' do
2018-11-08 19:23:39 +05:30
it 'shows the visibility level radio populated with the group visibility_level value' do
2017-08-17 22:00:37 +05:30
group = create(:group, :private)
visit admin_group_edit_path(group)
expect_selected_visibility(group.visibility_level)
end
2019-10-12 21:52:04 +05:30
it 'shows the subgroup creation level dropdown populated with the group subgroup_creation_level value' do
group = create(:group, :private, :owner_subgroup_creation_only)
visit admin_group_edit_path(group)
expect(page).to have_content('Allowed to create subgroups')
end
2018-11-08 19:23:39 +05:30
it 'edit group path does not change group name', :js do
2017-08-17 22:00:37 +05:30
group = create(:group, :private)
visit admin_group_edit_path(group)
name_field = find('input#group_name')
original_name = name_field.value
fill_in 'group_path', with: 'this-new-path'
expect(name_field.value).to eq original_name
end
2021-04-29 21:17:54 +05:30
it 'adding an admin note to group without one' do
group = create(:group, :private)
expect(group.admin_note).to be_nil
visit admin_group_edit_path(group)
admin_note_text = 'A note by an administrator'
fill_in 'group_admin_note_attributes_note', with: admin_note_text
click_button 'Save changes'
expect(page).to have_content(admin_note_text)
end
it 'editing an existing group admin note' do
admin_note_text = 'A note by an administrator'
new_admin_note_text = 'A new note by an administrator'
group = create(:group, :private)
group.create_admin_note(note: admin_note_text)
visit admin_group_edit_path(group)
admin_note_field = find('#group_admin_note_attributes_note')
expect(admin_note_field.value).to eq(admin_note_text)
fill_in 'group_admin_note_attributes_note', with: new_admin_note_text
click_button 'Save changes'
expect(page).to have_content(new_admin_note_text)
end
2017-08-17 22:00:37 +05:30
end
2018-03-17 18:26:18 +05:30
describe 'add user into a group', :js do
2020-03-13 15:44:24 +05:30
shared_examples 'adds user into a group' do
2017-08-17 22:00:37 +05:30
it do
visit admin_group_path(group)
select2(user_selector, from: '#user_ids', multiple: true)
page.within '#new_project_member' do
select2(Gitlab::Access::REPORTER, from: '#access_level')
end
click_button "Add users to group"
2021-06-08 01:23:25 +05:30
2017-08-17 22:00:37 +05:30
page.within ".group-users-list" do
expect(page).to have_content(user.name)
expect(page).to have_content('Reporter')
end
end
end
it_behaves_like 'adds user into a group' do
let(:user_selector) { user.id }
end
it_behaves_like 'adds user into a group' do
let(:user_selector) { user.email }
end
end
describe 'add admin himself to a group' do
before do
group.add_user(:user, Gitlab::Access::OWNER)
end
2018-03-17 18:26:18 +05:30
it 'adds admin a to a group as developer', :js do
2017-08-17 22:00:37 +05:30
visit group_group_members_path(group)
2021-06-08 01:23:25 +05:30
invite_member(current_user.name, role: 'Developer')
2017-08-17 22:00:37 +05:30
2021-01-29 00:20:46 +05:30
page.within members_table do
2017-08-17 22:00:37 +05:30
expect(page).to have_content(current_user.name)
expect(page).to have_content('Developer')
end
end
end
2020-06-23 00:09:42 +05:30
describe 'admin remove themself from a group', :js, quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/222342' do
2017-08-17 22:00:37 +05:30
it 'removes admin from the group' do
group.add_user(current_user, Gitlab::Access::DEVELOPER)
visit group_group_members_path(group)
2020-03-13 15:44:24 +05:30
page.within '[data-qa-selector="members_list"]' do
2017-08-17 22:00:37 +05:30
expect(page).to have_content(current_user.name)
expect(page).to have_content('Developer')
end
2021-01-03 14:25:43 +05:30
accept_confirm { find(:css, 'li', text: current_user.name).find(:css, 'a.btn-danger').click }
2017-08-17 22:00:37 +05:30
visit group_group_members_path(group)
2020-03-13 15:44:24 +05:30
page.within '[data-qa-selector="members_list"]' do
2017-08-17 22:00:37 +05:30
expect(page).not_to have_content(current_user.name)
expect(page).not_to have_content('Developer')
end
end
end
describe 'shared projects' do
it 'renders shared project' do
2017-09-10 17:25:29 +05:30
empty_project = create(:project)
2017-08-17 22:00:37 +05:30
empty_project.project_group_links.create!(
2018-11-18 11:00:15 +05:30
group_access: Gitlab::Access::MAINTAINER,
2017-08-17 22:00:37 +05:30
group: group
)
visit admin_group_path(group)
2018-03-27 19:54:05 +05:30
expect(page).to have_content(empty_project.full_name)
2017-08-17 22:00:37 +05:30
expect(page).to have_content('Projects shared with')
end
end
def expect_selected_visibility(level)
selector = "#group_visibility_level_#{level}[checked=checked]"
expect(page).to have_selector(selector, count: 1)
end
end