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

run_pipeline_with_manual_jobs_spec.rb « pipeline « 4_verify « browser_ui « features « specs « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7a2c2b4ae90c44425afc175dcf00921b9a70b21d (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
90
91
92
93
94
95
96
97
98
# frozen_string_literal: true

module QA
  RSpec.describe 'Verify', :runner, quarantine: {
    type: :flaky,
    issue: 'https://gitlab.com/gitlab-org/gitlab/-/issues/351994'
  } do
    describe 'Run pipeline with manual jobs' do
      let(:project) do
        Resource::Project.fabricate_via_api! do |project|
          project.name = 'pipeline-with-manual-job'
          project.description = 'Project for pipeline with manual job'
        end
      end

      let!(:runner) do
        Resource::Runner.fabricate! do |runner|
          runner.project = project
          runner.name = "qa-runner-#{SecureRandom.hex(3)}"
        end
      end

      let!(:ci_file) do
        Resource::Repository::Commit.fabricate_via_api! do |commit|
          commit.project = project
          commit.commit_message = 'Add .gitlab-ci.yml'
          commit.add_files(
            [
              {
                file_path: '.gitlab-ci.yml',
                content: <<~YAML
                  stages:
                    - Stage1
                    - Stage2
                    - Stage3

                  Prep:
                    stage: Stage1
                    script: exit 0
                    when: manual

                  Build:
                    stage: Stage2
                    needs: ['Prep']
                    script: exit 0
                    parallel: 6

                  Test:
                    stage: Stage3
                    needs: ['Build']
                    script: exit 0

                  Deploy:
                    stage: Stage3
                    needs: ['Test']
                    script: exit 0
                    parallel: 6
                YAML
              }
            ]
          )
        end
      end

      before do
        Flow::Login.sign_in
        project.visit!
        Flow::Pipeline.visit_latest_pipeline(pipeline_condition: 'skipped')
      end

      after do
        runner&.remove_via_api!
        project&.remove_via_api!
      end

      it 'does not leave any job in skipped state', testcase: 'https://gitlab.com/gitlab-org/gitlab/-/quality/test_cases/349158' do
        Page::Project::Pipeline::Show.perform do |show|
          show.click_job_action('Prep') # Trigger pipeline manually

          show.wait_until(max_duration: 300, sleep_interval: 2, reload: false) do
            project.pipelines.last[:status] == 'success'
          end

          aggregate_failures do
            expect(show).to have_build('Test', status: :success)

            show.click_job_dropdown('Build')
            expect(show).not_to have_skipped_job_in_group

            show.click_job_dropdown('Build') # Close Build dropdown
            show.click_job_dropdown('Deploy')
            expect(show).not_to have_skipped_job_in_group
          end
        end
      end
    end
  end
end