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

20210708130419_reschedule_merge_request_diff_users_background_migration_spec.rb « migrations « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7a281611650e88fe82a28331f20e8e11661abbe3 (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
68
69
70
71
72
73
74
75
# frozen_string_literal: true

require 'spec_helper'
require_migration!

RSpec.describe RescheduleMergeRequestDiffUsersBackgroundMigration, :migration do
  let(:migration) { described_class.new }

  describe '#up' do
    before do
      allow(described_class::MergeRequestDiff)
        .to receive(:minimum)
        .with(:id)
        .and_return(42)

      allow(described_class::MergeRequestDiff)
        .to receive(:maximum)
        .with(:id)
        .and_return(85_123)
    end

    it 'deletes existing background migration job records' do
      args = [150_000, 300_000]

      Gitlab::Database::BackgroundMigrationJob
        .create!(class_name: described_class::MIGRATION_NAME, arguments: args)

      migration.up

      found = Gitlab::Database::BackgroundMigrationJob
        .where(class_name: described_class::MIGRATION_NAME, arguments: args)
        .count

      expect(found).to eq(0)
    end

    it 'schedules the migrations in batches' do
      expect(migration)
        .to receive(:migrate_in)
        .ordered
        .with(2.minutes.to_i, described_class::MIGRATION_NAME, [42, 40_042])

      expect(migration)
        .to receive(:migrate_in)
        .ordered
        .with(4.minutes.to_i, described_class::MIGRATION_NAME, [40_042, 80_042])

      expect(migration)
        .to receive(:migrate_in)
        .ordered
        .with(6.minutes.to_i, described_class::MIGRATION_NAME, [80_042, 120_042])

      migration.up
    end

    it 'creates rows to track the background migration jobs' do
      expect(Gitlab::Database::BackgroundMigrationJob)
        .to receive(:create!)
        .ordered
        .with(class_name: described_class::MIGRATION_NAME, arguments: [42, 40_042])

      expect(Gitlab::Database::BackgroundMigrationJob)
        .to receive(:create!)
        .ordered
        .with(class_name: described_class::MIGRATION_NAME, arguments: [40_042, 80_042])

      expect(Gitlab::Database::BackgroundMigrationJob)
        .to receive(:create!)
        .ordered
        .with(class_name: described_class::MIGRATION_NAME, arguments: [80_042, 120_042])

      migration.up
    end
  end
end