summaryrefslogtreecommitdiff
path: root/spec/migrations/migrate_create_commit_signature_worker_sidekiq_queue_spec.rb
blob: 5f7b4755980eaf026f15d38c3b35bc9f87d3a03c (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
# frozen_string_literal: true

require 'spec_helper'
require Rails.root.join('db', 'post_migrate', '20200206091544_migrate_create_commit_signature_worker_sidekiq_queue.rb')

RSpec.describe MigrateCreateCommitSignatureWorkerSidekiqQueue, :sidekiq, :redis do
  include Gitlab::Database::MigrationHelpers
  include StubWorker

  context 'when there are jobs in the queue' do
    it 'correctly migrates queue when migrating up' do
      Sidekiq::Testing.disable! do
        stub_worker(queue: 'create_commit_signature').perform_async('Something', [1])
        stub_worker(queue: 'create_gpg_signature').perform_async('Something', [1])

        described_class.new.up

        expect(sidekiq_queue_length('create_gpg_signature')).to eq 0
        expect(sidekiq_queue_length('create_commit_signature')).to eq 2
      end
    end

    it 'correctly migrates queue when migrating down' do
      Sidekiq::Testing.disable! do
        stub_worker(queue: 'create_gpg_signature').perform_async('Something', [1])

        described_class.new.down

        expect(sidekiq_queue_length('create_gpg_signature')).to eq 1
        expect(sidekiq_queue_length('create_commit_signature')).to eq 0
      end
    end
  end

  context 'when there are no jobs in the queues' do
    it 'does not raise error when migrating up' do
      expect { described_class.new.up }.not_to raise_error
    end

    it 'does not raise error when migrating down' do
      expect { described_class.new.down }.not_to raise_error
    end
  end
end