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

new_branch_ref_dropdown_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: 2559aedf0d2cda8626085bb3d3794dd586115809 (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
83
84
85
86
87
88
89
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'New Branch Ref Dropdown', :js, feature_category: :source_code_management do
  include ListboxHelpers

  let(:user) { create(:user) }
  let(:project) { create(:project, :public, :repository) }
  let(:sha) { project.commit.sha }
  let(:toggle) { find('.ref-selector') }

  before do
    project.add_maintainer(user)

    sign_in(user)
    visit new_project_branch_path(project)
  end

  it 'finds a tag in a list' do
    tag_name = 'v1.0.0'

    filter_by(tag_name)

    wait_for_requests

    expect(items_count(tag_name)).to be(1)

    select_listbox_item tag_name

    expect(toggle).to have_content tag_name
  end

  it 'finds a branch in a list' do
    branch_name = 'audio'

    filter_by(branch_name)

    wait_for_requests

    expect(items_count(branch_name)).to be(1)

    select_listbox_item branch_name

    expect(toggle).to have_content branch_name
  end

  it 'finds a commit in a list' do
    filter_by(sha)

    wait_for_requests

    sha_short = sha[0, 7]

    expect(items_count(sha_short)).to be(1)

    select_listbox_item sha_short

    expect(toggle).to have_content sha_short
  end

  it 'shows no results when there is no branch, tag or commit sha found' do
    non_existing_ref = 'non_existing_branch_name'
    filter_by(non_existing_ref)

    wait_for_requests

    click_button 'master'
    expect(toggle).not_to have_content(non_existing_ref)
  end

  it 'passes accessibility tests' do
    click_button 'master'
    expect(page).to be_axe_clean.within('.ref-selector')
  end

  def item(ref_name)
    find('li', text: ref_name, match: :prefer_exact)
  end

  def items_count(ref_name)
    all('li', text: ref_name, match: :prefer_exact).length
  end

  def filter_by(filter_text)
    click_button 'master'
    send_keys filter_text
  end
end