summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/background_migration/populate_external_pipeline_source_spec.rb
blob: c7b272cd6ca13e3a085f297fbd03a8afb83ed629 (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
# frozen_string_literal: true

require 'spec_helper'

describe Gitlab::BackgroundMigration::PopulateExternalPipelineSource, :migration, schema: 20180916011959 do
  let(:migration) { described_class.new }

  let!(:internal_pipeline) { create(:ci_pipeline, source: :web) }
  let(:pipelines) { [internal_pipeline, unknown_pipeline].map(&:id) }

  let!(:unknown_pipeline) do
    build(:ci_pipeline, source: :unknown)
      .tap { |pipeline| pipeline.save(validate: false) }
  end

  subject { migration.perform(pipelines.min, pipelines.max) }

  shared_examples 'no changes' do
    it 'does not change the pipeline source' do
      expect { subject }.not_to change { unknown_pipeline.reload.source }
    end
  end

  context 'when unknown pipeline is external' do
    before do
      create(:generic_commit_status, pipeline: unknown_pipeline)
    end

    it 'populates the pipeline source' do
      subject

      expect(unknown_pipeline.reload.source).to eq('external')
    end

    it 'can be repeated without effect' do
      subject

      expect { subject }.not_to change { unknown_pipeline.reload.source }
    end
  end

  context 'when unknown pipeline has just a build' do
    before do
      create(:ci_build, pipeline: unknown_pipeline)
    end

    it_behaves_like 'no changes'
  end

  context 'when unknown pipeline has no statuses' do
    it_behaves_like 'no changes'
  end

  context 'when unknown pipeline has a build and a status' do
    before do
      create(:generic_commit_status, pipeline: unknown_pipeline)
      create(:ci_build, pipeline: unknown_pipeline)
    end

    it_behaves_like 'no changes'
  end
end