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

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

require "spec_helper"

RSpec.describe "User views branches", :js, feature_category: :groups_and_projects do
  let_it_be(:project) { create(:project, :repository) }
  let_it_be(:user) { project.first_owner }

  before do
    sign_in(user)
  end

  context "all branches" do
    before do
      visit(project_branches_path(project))
    end

    describe 'default branch' do
      before do
        search_branches('master')
      end

      it "shows the default branch" do
        expect(page).to have_content("Branches").and have_content("master")

        expect(page.all(".graph-side")).to all(have_content(/\d+/))
      end

      it "does not show the \"More actions\" dropdown" do
        expect(page).not_to have_selector('[data-testid="branch-more-actions"]')
      end

      it "passes axe automated accessibility testing" do
        expect(page).to be_axe_clean.within('#content-body')
      end
    end

    describe 'non-default branch' do
      before do
        search_branches('feature')
      end

      it "shows the branches" do
        expect(page).to have_content("Branches").and have_content("feature")

        expect(page.all(".graph-side")).to all(have_content(/\d+/))
      end

      it "shows the \"More actions\" dropdown" do
        expect(page).to have_button('More actions')
      end

      it "passes axe automated accessibility testing" do
        expect(page).to be_axe_clean.within('#content-body')
      end
    end
  end

  context "protected branches" do
    let_it_be(:protected_branch) { create(:protected_branch, project: project) }

    before do
      visit(project_protected_branches_path(project))
    end

    it "shows branches" do
      page.within(".protected-branches-list") do
        expect(page).to have_content(protected_branch.name).and have_no_content("master")
      end
    end
  end

  def search_branches(query)
    branch_search = find('input[data-testid="branch-search"]')
    branch_search.set(query)
    branch_search.native.send_keys(:enter)
  end
end