File: user_sees_pipelines_tab_spec.rb

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (57 lines) | stat: -rw-r--r-- 1,635 bytes parent folder | download
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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Commit > Pipelines tab', :js, feature_category: :source_code_management do
  let_it_be_with_reload(:project) { create(:project, :repository) }
  let_it_be(:user) { create(:user) }

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

  context 'when commit has pipelines' do
    let_it_be(:pipeline) do
      create(:ci_pipeline,
        :success,
        project: project,
        ref: project.default_branch,
        sha: project.commit.sha)
    end

    let_it_be(:job) { create(:ci_build, :success, pipeline: pipeline) }
    let_it_be(:manual_job) { create(:ci_build, :manual, pipeline: pipeline) }

    before do
      visit project_commit_path(project, project.commit.id)
      wait_for_requests
    end

    it 'displays pipelines table' do
      page.within('.commit-ci-menu') do
        click_link('Pipelines')
      end

      wait_for_requests

      within_testid('pipeline-table-row') do
        expect(page).to have_selector('[data-testid="ci-icon"]', text: 'Passed')
        expect(page).to have_content(pipeline.id)
        expect(page).to have_css('[data-testid="pipeline-mini-graph"]')
        expect(page).to have_css('[data-testid="pipelines-manual-actions-dropdown"]')
        expect(page).to have_css('[data-testid="pipeline-multi-actions-dropdown"]')
      end
    end
  end

  context 'when commit does not have pipelines' do
    before do
      visit project_commit_path(project, project.commit.id)
    end

    it 'does not display pipelines tab link' do
      expect(page).not_to have_link('Pipelines')
    end
  end
end