summaryrefslogtreecommitdiff
path: root/spec/features/projects/guest_navigation_menu_spec.rb
blob: 1c5f89fa8985405d353f106bb766d2e463d04ee4 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
require 'spec_helper'

describe 'Guest navigation menu' do
  let(:project) { create(:empty_project, :private, public_builds: false) }
  let(:guest) { create(:user) }

  before do
    project.team << [guest, :guest]

    sign_in(guest)
  end

  it 'shows allowed tabs only' do
    visit project_path(project)

    within('.layout-nav') do
      expect(page).to have_content 'Project'
      expect(page).to have_content 'Issues'
      expect(page).to have_content 'Wiki'

      expect(page).not_to have_content 'Repository'
      expect(page).not_to have_content 'Pipelines'
      expect(page).not_to have_content 'Merge Requests'
    end
  end

  it 'does not show fork button' do
    visit project_path(project)

    within('.count-buttons') do
      expect(page).not_to have_link 'Fork'
    end
  end

  it 'does not show clone path' do
    visit project_path(project)

    within('.project-repo-buttons') do
      expect(page).not_to have_selector '.project-clone-holder'
    end
  end

  describe 'project landing page' do
    before do
      project.project_feature.update!(
        issues_access_level: ProjectFeature::DISABLED,
        wiki_access_level: ProjectFeature::DISABLED
      )
    end

    it 'does not show the project file list landing page' do
      visit project_path(project)

      expect(page).not_to have_selector '.project-stats'
      expect(page).not_to have_selector '.project-last-commit'
      expect(page).not_to have_selector '.project-show-files'
      expect(page).to have_selector '.project-show-customize_workflow'
    end

    it 'shows the customize workflow when issues and wiki are disabled' do
      visit project_path(project)

      expect(page).to have_selector '.project-show-customize_workflow'
    end

    it 'shows the wiki when enabled' do
      project.project_feature.update!(wiki_access_level: ProjectFeature::PRIVATE)

      visit project_path(project)

      expect(page).to have_selector '.project-show-wiki'
    end

    it 'shows the issues when enabled' do
      project.project_feature.update!(issues_access_level: ProjectFeature::PRIVATE)

      visit project_path(project)

      expect(page).to have_selector '.issues-list'
    end
  end
end