summaryrefslogtreecommitdiff
path: root/spec/migrations/20200703125016_backfill_namespace_settings_spec.rb
blob: 9ff88009d8adb7c39ca2f93e3b8f40bc8b8368c3 (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
# frozen_string_literal: true

require 'spec_helper'
require Rails.root.join('db', 'post_migrate', '20200703125016_backfill_namespace_settings.rb')

RSpec.describe BackfillNamespaceSettings, :sidekiq, schema: 20200703124823 do
  let(:namespaces) { table(:namespaces) }

  describe '#up' do
    before do
      stub_const("#{described_class}::BATCH_SIZE", 2)

      namespaces.create!(id: 1, name: 'test1', path: 'test1')
      namespaces.create!(id: 2, name: 'test2', path: 'test2')
      namespaces.create!(id: 3, name: 'test3', path: 'test3')
    end

    it 'schedules BackfillNamespaceSettings background jobs' do
      Sidekiq::Testing.fake! do
        freeze_time do
          migrate!

          expect(described_class::MIGRATION).to be_scheduled_delayed_migration(2.minutes, 1, 2)
          expect(described_class::MIGRATION).to be_scheduled_delayed_migration(4.minutes, 3, 3)
          expect(BackgroundMigrationWorker.jobs.size).to eq(2)
        end
      end
    end
  end
end