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

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

require 'spec_helper'
require_migration!

RSpec.describe ScheduleBackfillTopicsTitle do
  let(:topics) { table(:topics) }

  let!(:topic1) { topics.create!(name: 'topic1') }
  let!(:topic2) { topics.create!(name: 'topic2') }
  let!(:topic3) { topics.create!(name: 'topic3') }

  it 'correctly schedules background migrations', :aggregate_failures do
    stub_const("#{Gitlab::Database::Migrations::BackgroundMigrationHelpers}::BATCH_SIZE", 2)

    Sidekiq::Testing.fake! do
      freeze_time do
        migrate!

        expect(described_class::MIGRATION).to be_scheduled_delayed_migration(2.minutes, topic1.id, topic2.id)
        expect(described_class::MIGRATION).to be_scheduled_delayed_migration(4.minutes, topic3.id, topic3.id)
        expect(BackgroundMigrationWorker.jobs.size).to eq(2)
      end
    end
  end
end