Welcome to mirror list, hosted at ThFree Co, Russian Federation.

user_sees_collaboration_links_spec.rb « show « projects « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ff133b58f89a63473df7160ce87b28ebc3df96da (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
# frozen_string_literal: true

require 'spec_helper'

describe 'Projects > Show > Collaboration links', :js do
  let(:project) { create(:project, :repository) }
  let(:user) { create(:user) }

  before do
    project.add_developer(user)
    sign_in(user)
  end

  it 'shows all the expected links' do
    visit project_path(project)

    # The navigation bar
    page.within('.header-new') do
      find('.qa-new-menu-toggle').click

      aggregate_failures 'dropdown links in the navigation bar' do
        expect(page).to have_link('New issue')
        expect(page).to have_link('New merge request')
        expect(page).to have_link('New snippet', href: new_project_snippet_path(project))
      end

      find('.qa-new-menu-toggle').click
    end

    # The dropdown above the tree
    page.within('.repo-breadcrumb') do
      find('.qa-add-to-tree').click

      aggregate_failures 'dropdown links above the repo tree' do
        expect(page).to have_link('New file')
        expect(page).to have_link('Upload file')
        expect(page).to have_link('New directory')
        expect(page).to have_link('New branch')
        expect(page).to have_link('New tag')
      end
    end

    # The Web IDE
    expect(page).to have_link('Web IDE')
  end

  it 'hides the links when the project is archived' do
    project.update!(archived: true)

    visit project_path(project)

    page.within('.header-new') do
      find('.qa-new-menu-toggle').click

      aggregate_failures 'dropdown links' do
        expect(page).not_to have_link('New issue')
        expect(page).not_to have_link('New merge request')
        expect(page).not_to have_link('New snippet', href: new_project_snippet_path(project))
      end

      find('.qa-new-menu-toggle').click
    end

    expect(page).not_to have_selector('.qa-add-to-tree')

    expect(page).not_to have_link('Web IDE')
  end
end