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

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

require 'spec_helper'

require_migration!

RSpec.describe FinalizeBackfillNullNoteDiscussionIds, :migration do
  subject(:migration) { described_class.new }

  let(:notes) { table(:notes) }
  let(:bg_migration_class) { Gitlab::BackgroundMigration::BackfillNoteDiscussionId }
  let(:bg_migration) { instance_double(bg_migration_class) }

  before do
    stub_const("#{described_class.name}::BATCH_SIZE", 2)
  end

  it 'performs remaining background migrations', :aggregate_failures do
    # Already migrated
    notes.create!(noteable_type: 'Issue', noteable_id: 1, discussion_id: Digest::SHA1.hexdigest('note1'))
    notes.create!(noteable_type: 'Issue', noteable_id: 1, discussion_id: Digest::SHA1.hexdigest('note2'))
    # update required
    record1 = notes.create!(noteable_type: 'Issue', noteable_id: 1, discussion_id: nil)
    record2 = notes.create!(noteable_type: 'Issue', noteable_id: 1, discussion_id: nil)
    record3 = notes.create!(noteable_type: 'Issue', noteable_id: 1, discussion_id: nil)

    expect(Gitlab::BackgroundMigration).to receive(:steal).with(bg_migration_class.name.demodulize)
    expect(bg_migration_class).to receive(:new).twice.and_return(bg_migration)
    expect(bg_migration).to receive(:perform).with(record1.id, record2.id)
    expect(bg_migration).to receive(:perform).with(record3.id, record3.id)

    migrate!
  end
end