summaryrefslogtreecommitdiff
path: root/spec/workers/update_head_pipeline_for_merge_request_worker_spec.rb
blob: a13a3046f55b257191ecc2f012f9144f4d53e97a (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
require 'spec_helper'

describe UpdateHeadPipelineForMergeRequestWorker do
  describe '#perform' do
    let(:user) { create(:user) }
    let(:project) { create(:project, :repository) }
    let(:merge_request) { create(:merge_request, source_project: project) }
    let(:latest_sha) { 'b83d6e391c22777fca1ed3012fce84f633d7fed0' }

    context 'when pipeline exists for the source project and branch' do
      before do
        create(:ci_empty_pipeline, project: project, ref: merge_request.source_branch, sha: latest_sha)
      end

      it 'updates the head_pipeline_id of the merge_request' do
        expect { subject.perform(merge_request.id) }.to change { merge_request.reload.head_pipeline_id }
      end

      context 'when merge request sha does not equal pipeline sha' do
        before do
          merge_request.merge_request_diff.update(head_commit_sha: 'different_sha')
        end

        it 'does not update head pipeline' do
          expect { subject.perform(merge_request.id) }
            .not_to change { merge_request.reload.head_pipeline_id }
        end
      end
    end

    context 'when pipeline does not exist for the source project and branch' do
      it 'does not update the head_pipeline_id of the merge_request' do
        expect { subject.perform(merge_request.id) }
          .not_to change { merge_request.reload.head_pipeline_id }
      end
    end

    context 'when a merge request pipeline exists' do
      let!(:merge_request_pipeline) do
        create(:ci_pipeline,
               project: project,
               source: :merge_request_event,
               sha: latest_sha,
               merge_request: merge_request)
      end

      it 'sets the merge request pipeline as the head pipeline' do
        expect { subject.perform(merge_request.id) }
          .to change { merge_request.reload.head_pipeline_id }
          .from(nil).to(merge_request_pipeline.id)
      end

      context 'when branch pipeline exists' do
        let!(:branch_pipeline) do
          create(:ci_pipeline, project: project, source: :push, sha: latest_sha)
        end

        it 'prioritizes the merge request pipeline as the head pipeline' do
          expect { subject.perform(merge_request.id) }
            .to change { merge_request.reload.head_pipeline_id }
            .from(nil).to(merge_request_pipeline.id)
        end
      end
    end
  end
end