summaryrefslogtreecommitdiff
path: root/spec/services/ci/after_requeue_job_service_spec.rb
blob: 2a5a971fdacfb81119e16f49db2c0ba6f5112e15 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Ci::AfterRequeueJobService do
  let_it_be(:project) { create(:project) }
  let_it_be(:user) { project.owner }

  let(:pipeline) { create(:ci_pipeline, project: project) }

  let!(:build) { create(:ci_build, pipeline: pipeline, stage_idx: 0, name: 'build') }
  let!(:test1) { create(:ci_build, :success, pipeline: pipeline, stage_idx: 1) }
  let!(:test2) { create(:ci_build, :skipped, pipeline: pipeline, stage_idx: 1) }
  let!(:test3) { create(:ci_build, :skipped, :dependent, pipeline: pipeline, stage_idx: 1, needed: build) }
  let!(:deploy) { create(:ci_build, :skipped, :dependent, pipeline: pipeline, stage_idx: 2, needed: test3) }

  subject(:execute_service) { described_class.new(project, user).execute(build) }

  it 'marks subsequent skipped jobs as processable' do
    expect(test1.reload).to be_success
    expect(test2.reload).to be_skipped
    expect(test3.reload).to be_skipped
    expect(deploy.reload).to be_skipped

    execute_service

    expect(test1.reload).to be_success
    expect(test2.reload).to be_created
    expect(test3.reload).to be_created
    expect(deploy.reload).to be_created
  end

  context 'when there is a job need from the same stage' do
    let!(:test4) do
      create(:ci_build,
             :skipped,
             :dependent,
             pipeline: pipeline,
             stage_idx: 0,
             scheduling_type: :dag,
             needed: build)
    end

    it 'marks subsequent skipped jobs as processable' do
      expect { execute_service }.to change { test4.reload.status }.from('skipped').to('created')
    end
  end

  context 'when the pipeline is a downstream pipeline and the bridge is depended' do
    let!(:trigger_job) { create(:ci_bridge, :strategy_depend, status: 'success') }

    before do
      create(:ci_sources_pipeline, pipeline: pipeline, source_job: trigger_job)
    end

    it 'marks source bridge as pending' do
      expect { execute_service }.to change { trigger_job.reload.status }.from('success').to('pending')
    end
  end
end