summaryrefslogtreecommitdiff
path: root/spec/migrations/clean_stages_statuses_migration_spec.rb
blob: 38705f8eaae86c0647126c422b82effd3bb7cf1d (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
require 'spec_helper'
require Rails.root.join('db', 'migrate', '20170912113435_clean_stages_statuses_migration.rb')

describe CleanStagesStatusesMigration, :migration, :sidekiq, :redis do
  let(:migration) { spy('migration') }

  before do
    allow(Gitlab::BackgroundMigration::MigrateStageStatus)
      .to receive(:new).and_return(migration)
  end

  context 'when there are pending background migrations' do
    it 'processes pending jobs synchronously' do
      Sidekiq::Testing.disable! do
        BackgroundMigrationWorker
          .perform_in(2.minutes, 'MigrateStageStatus', [1, 1])
        BackgroundMigrationWorker
          .perform_async('MigrateStageStatus', [1, 1])

        migrate!

        expect(migration).to have_received(:perform).with(1, 1).twice
      end
    end
  end

  context 'when there are no background migrations pending' do
    it 'does nothing' do
      Sidekiq::Testing.disable! do
        migrate!

        expect(migration).not_to have_received(:perform)
      end
    end
  end

  context 'when there are still unmigrated stages afterwards' do
    let(:stages) { table('ci_stages') }

    before do
      stages.create!(status: nil, name: 'build')
      stages.create!(status: nil, name: 'test')
    end

    it 'migrates statuses sequentially in batches' do
      migrate!

      expect(migration).to have_received(:perform).once
    end
  end
end