summaryrefslogtreecommitdiff
path: root/spec/features/projects/settings/visibility_settings_spec.rb
blob: fac4506bdf65cb3fd589706c52af09f8e409e573 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
require 'spec_helper'

feature 'Visibility settings', feature: true, js: true do
  let(:user) { create(:user) }
  let(:project) { create(:project, namespace: user.namespace, visibility_level: 20) }

  context 'as owner' do
    before do
      login_as(user)
      visit edit_namespace_project_path(project.namespace, project)
    end

    scenario 'project visibility select is available' do
      visibility_select_container = find('.js-visibility-select')

      expect(visibility_select_container.find('.visibility-select').value).to eq project.visibility_level.to_s
      expect(visibility_select_container).to have_content 'The project can be accessed without any authentication.'
    end

    scenario 'project visibility description updates on change' do
      visibility_select_container = find('.js-visibility-select')
      visibility_select = visibility_select_container.find('.visibility-select')
      visibility_select.select('Private')

      expect(visibility_select.value).to eq '0'
      expect(visibility_select_container).to have_content 'Project access must be granted explicitly to each user.'
    end
  end

  context 'as master' do
    let(:master_user) { create(:user) }

    before do
      project.team << [master_user, :master]
      login_as(master_user)
      visit edit_namespace_project_path(project.namespace, project)
    end

    scenario 'project visibility is locked' do
      visibility_select_container = find('.js-visibility-select')

      expect(visibility_select_container).not_to have_select '.visibility-select'
      expect(visibility_select_container).to have_content 'Public'
      expect(visibility_select_container).to have_content 'The project can be accessed without any authentication.'
    end
  end
end