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 'Edit group settings' do
|
2018-11-08 19:23:39 +05:30
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:group) { create(:group, path: 'foo') }
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
before do
|
2017-08-17 22:00:37 +05:30
|
|
|
group.add_owner(user)
|
2017-09-10 17:25:29 +05:30
|
|
|
sign_in(user)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
describe 'when the group path is changed' do
|
|
|
|
let(:new_group_path) { 'bar' }
|
|
|
|
let(:old_group_full_path) { "/#{group.path}" }
|
|
|
|
let(:new_group_full_path) { "/#{new_group_path}" }
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it 'the group is accessible via the new path' do
|
2017-08-17 22:00:37 +05:30
|
|
|
update_path(new_group_path)
|
|
|
|
visit new_group_full_path
|
2020-01-01 13:55:28 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(current_path).to eq(new_group_full_path)
|
2019-03-02 22:35:43 +05:30
|
|
|
expect(find('h1.home-panel-title')).to have_content(group.name)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it 'the old group path redirects to the new path' do
|
2017-08-17 22:00:37 +05:30
|
|
|
update_path(new_group_path)
|
|
|
|
visit old_group_full_path
|
2020-01-01 13:55:28 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(current_path).to eq(new_group_full_path)
|
2019-03-02 22:35:43 +05:30
|
|
|
expect(find('h1.home-panel-title')).to have_content(group.name)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'with a subgroup' do
|
2018-11-08 19:23:39 +05:30
|
|
|
let!(:subgroup) { create(:group, parent: group, path: 'subgroup') }
|
|
|
|
let(:old_subgroup_full_path) { "/#{group.path}/#{subgroup.path}" }
|
|
|
|
let(:new_subgroup_full_path) { "/#{new_group_path}/#{subgroup.path}" }
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it 'the subgroup is accessible via the new path' do
|
2017-08-17 22:00:37 +05:30
|
|
|
update_path(new_group_path)
|
|
|
|
visit new_subgroup_full_path
|
2020-01-01 13:55:28 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(current_path).to eq(new_subgroup_full_path)
|
2019-03-02 22:35:43 +05:30
|
|
|
expect(find('h1.home-panel-title')).to have_content(subgroup.name)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it 'the old subgroup path redirects to the new path' do
|
2017-08-17 22:00:37 +05:30
|
|
|
update_path(new_group_path)
|
|
|
|
visit old_subgroup_full_path
|
2020-01-01 13:55:28 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(current_path).to eq(new_subgroup_full_path)
|
2019-03-02 22:35:43 +05:30
|
|
|
expect(find('h1.home-panel-title')).to have_content(subgroup.name)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with a project' do
|
2018-11-08 19:23:39 +05:30
|
|
|
let!(:project) { create(:project, group: group) }
|
|
|
|
let(:old_project_full_path) { "/#{group.path}/#{project.path}" }
|
|
|
|
let(:new_project_full_path) { "/#{new_group_path}/#{project.path}" }
|
2017-09-10 17:25:29 +05:30
|
|
|
|
|
|
|
before(:context) do
|
|
|
|
TestEnv.clean_test_path
|
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
after do
|
2017-09-10 17:25:29 +05:30
|
|
|
TestEnv.clean_test_path
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it 'the project is accessible via the new path' do
|
2017-08-17 22:00:37 +05:30
|
|
|
update_path(new_group_path)
|
|
|
|
visit new_project_full_path
|
2020-01-01 13:55:28 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(current_path).to eq(new_project_full_path)
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(find('.breadcrumbs')).to have_content(project.path)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it 'the old project path redirects to the new path' do
|
2017-08-17 22:00:37 +05:30
|
|
|
update_path(new_group_path)
|
|
|
|
visit old_project_full_path
|
2020-01-01 13:55:28 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(current_path).to eq(new_project_full_path)
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(find('.breadcrumbs')).to have_content(project.path)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
describe 'project creation level menu' do
|
|
|
|
it 'shows the selection menu' do
|
|
|
|
visit edit_group_path(group)
|
|
|
|
|
|
|
|
expect(page).to have_content('Allowed to create projects')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
describe 'subgroup creation level menu' do
|
|
|
|
it 'shows the selection menu' do
|
|
|
|
visit edit_group_path(group)
|
|
|
|
|
|
|
|
expect(page).to have_content('Allowed to create subgroups')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-09 12:01:36 +05:30
|
|
|
describe 'edit group avatar' do
|
|
|
|
before do
|
|
|
|
visit edit_group_path(group)
|
|
|
|
|
|
|
|
attach_file(:group_avatar, Rails.root.join('spec', 'fixtures', 'banana_sample.gif'))
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
expect { save_general_group }.to change { group.reload.avatar? }.to(true)
|
2018-05-09 12:01:36 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'uploads new group avatar' do
|
|
|
|
expect(group.avatar).to be_instance_of AvatarUploader
|
|
|
|
expect(group.avatar.url).to eq "/uploads/-/system/group/avatar/#{group.id}/banana_sample.gif"
|
|
|
|
expect(page).to have_link('Remove avatar')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes group avatar' do
|
|
|
|
expect { click_link 'Remove avatar' }.to change { group.reload.avatar? }.to(false)
|
|
|
|
expect(page).not_to have_link('Remove avatar')
|
|
|
|
end
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
describe 'edit group path' do
|
|
|
|
it 'has a root URL label for top-level group' do
|
|
|
|
visit edit_group_path(group)
|
|
|
|
|
|
|
|
expect(find(:css, '.group-root-path').text).to eq(root_url)
|
|
|
|
end
|
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
it 'has a parent group URL label for a subgroup group' do
|
2018-12-05 23:21:45 +05:30
|
|
|
subgroup = create(:group, parent: group)
|
|
|
|
|
|
|
|
visit edit_group_path(subgroup)
|
|
|
|
|
|
|
|
expect(find(:css, '.group-root-path').text).to eq(group_url(subgroup.parent) + '/')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
context 'disable email notifications' do
|
|
|
|
it 'is visible' do
|
|
|
|
visit edit_group_path(group)
|
|
|
|
|
|
|
|
expect(page).to have_selector('#group_emails_disabled', visible: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'accepts the changed state' do
|
|
|
|
visit edit_group_path(group)
|
|
|
|
check 'group_emails_disabled'
|
|
|
|
|
|
|
|
expect { save_permissions_group }.to change { updated_emails_disabled? }.to(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
describe 'prevent sharing outside group hierarchy setting' do
|
|
|
|
it 'updates the setting' do
|
|
|
|
visit edit_group_path(group)
|
|
|
|
|
|
|
|
check 'group_prevent_sharing_groups_outside_hierarchy'
|
|
|
|
|
|
|
|
expect { save_permissions_group }.to change {
|
|
|
|
group.reload.namespace_settings.prevent_sharing_groups_outside_hierarchy
|
|
|
|
}.to(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'is not present for a subgroup' do
|
|
|
|
subgroup = create(:group, parent: group)
|
|
|
|
visit edit_group_path(subgroup)
|
|
|
|
|
|
|
|
expect(page).to have_text "Permissions"
|
|
|
|
expect(page).not_to have_selector('#group_prevent_sharing_groups_outside_hierarchy')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
def update_path(new_group_path)
|
|
|
|
visit edit_group_path(group)
|
|
|
|
|
|
|
|
page.within('.gs-advanced') do
|
|
|
|
fill_in 'group_path', with: new_group_path
|
2020-10-24 23:57:45 +05:30
|
|
|
click_button 'Change group URL'
|
2018-11-08 19:23:39 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
def save_general_group
|
2018-11-08 19:23:39 +05:30
|
|
|
page.within('.gs-general') do
|
2018-12-13 13:39:08 +05:30
|
|
|
click_button 'Save changes'
|
2018-11-08 19:23:39 +05:30
|
|
|
end
|
|
|
|
end
|
2020-01-01 13:55:28 +05:30
|
|
|
|
|
|
|
def save_permissions_group
|
|
|
|
page.within('.gs-permissions') do
|
|
|
|
click_button 'Save changes'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def updated_emails_disabled?
|
2021-04-29 21:17:54 +05:30
|
|
|
group.reload.clear_memoization(:emails_disabled_memoized)
|
2020-01-01 13:55:28 +05:30
|
|
|
group.emails_disabled?
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|