debian-mirror-gitlab/spec/features/projects/settings/visibility_settings_spec.rb

47 lines
1.6 KiB
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
require 'spec_helper'
2018-03-17 18:26:18 +05:30
feature 'Visibility settings', :js do
2017-08-17 22:00:37 +05:30
let(:user) { create(:user) }
let(:project) { create(:project, namespace: user.namespace, visibility_level: 20) }
context 'as owner' do
before do
2017-09-10 17:25:29 +05:30
sign_in(user)
visit edit_project_path(project)
2017-08-17 22:00:37 +05:30
end
scenario 'project visibility select is available' do
2018-03-17 18:26:18 +05:30
visibility_select_container = find('.project-visibility-setting')
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
expect(visibility_select_container.find('select').value).to eq project.visibility_level.to_s
expect(visibility_select_container).to have_content 'The project can be accessed by anyone, regardless of authentication.'
2017-08-17 22:00:37 +05:30
end
scenario 'project visibility description updates on change' do
2018-03-17 18:26:18 +05:30
visibility_select_container = find('.project-visibility-setting')
visibility_select = visibility_select_container.find('select')
2017-08-17 22:00:37 +05:30
visibility_select.select('Private')
expect(visibility_select.value).to eq '0'
2018-03-17 18:26:18 +05:30
expect(visibility_select_container).to have_content 'Access must be granted explicitly to each user.'
2017-08-17 22:00:37 +05:30
end
end
context 'as master' do
let(:master_user) { create(:user) }
before do
2018-03-17 18:26:18 +05:30
project.add_master(master_user)
2017-09-10 17:25:29 +05:30
sign_in(master_user)
visit edit_project_path(project)
2017-08-17 22:00:37 +05:30
end
scenario 'project visibility is locked' do
2018-03-17 18:26:18 +05:30
visibility_select_container = find('.project-visibility-setting')
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
expect(visibility_select_container).to have_selector 'select[name="project[visibility_level]"]:disabled'
expect(visibility_select_container).to have_content 'The project can be accessed by anyone, regardless of authentication.'
2017-08-17 22:00:37 +05:30
end
end
end