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

backfill_partition_id_ci_pipeline_chat_data_spec.rb « background_migration « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad1900ab6a69899aa4c61340968dfc7ccee9b924 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::BackgroundMigration::BackfillPartitionIdCiPipelineChatData,
  feature_category: :continuous_integration do
  let(:ci_pipelines_table) { table(:ci_pipelines, database: :ci) }
  let(:ci_pipeline_chat_data_table) { table(:ci_pipeline_chat_data, database: :ci) }
  let!(:pipeline1) { ci_pipelines_table.create!(id: 1, partition_id: 100) }
  let!(:pipeline2) { ci_pipelines_table.create!(id: 2, partition_id: 101) }
  let!(:invalid_ci_pipeline_chat_data) do
    ci_pipeline_chat_data_table.create!(
      id: 1,
      pipeline_id: pipeline1.id,
      chat_name_id: 1,
      response_url: '',
      partition_id: pipeline1.partition_id
    )
  end

  let!(:valid_ci_pipeline_chat_data) do
    ci_pipeline_chat_data_table.create!(
      id: 2,
      pipeline_id: pipeline2.id,
      chat_name_id: 2,
      response_url: '',
      partition_id: pipeline2.partition_id
    )
  end

  let(:migration_attrs) do
    {
      start_id: ci_pipeline_chat_data_table.minimum(:id),
      end_id: ci_pipeline_chat_data_table.maximum(:id),
      batch_table: :ci_pipeline_chat_data,
      batch_column: :id,
      sub_batch_size: 1,
      pause_ms: 0,
      connection: Ci::ApplicationRecord.connection
    }
  end

  let!(:migration) { described_class.new(**migration_attrs) }

  describe '#perform' do
    context 'when second partition does not exist' do
      it 'does not execute the migration' do
        expect { migration.perform }
          .not_to change { invalid_ci_pipeline_chat_data.reload.partition_id }
      end
    end

    context 'when second partition exists' do
      before do
        allow(migration).to receive(:uses_multiple_partitions?).and_return(true)
        pipeline1.update!(partition_id: 101)
      end

      it 'fixes invalid records in the wrong the partition' do
        expect { migration.perform }
          .to change { invalid_ci_pipeline_chat_data.reload.partition_id }
          .from(100)
          .to(101)
      end
    end
  end
end