summaryrefslogtreecommitdiff
path: root/spec/rubocop/cop/migration/background_migrations_spec.rb
blob: 681bbd845620f57e53a45619f2979ba40dc51ad5 (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
# frozen_string_literal: true

require 'rubocop_spec_helper'
require_relative '../../../../rubocop/cop/migration/background_migrations'

RSpec.describe RuboCop::Cop::Migration::BackgroundMigrations do
  let(:cop) { described_class.new }

  context 'when queue_background_migration_jobs_by_range_at_intervals is used' do
    it 'registers an offense' do
      expect_offense(<<~RUBY)
        def up
          queue_background_migration_jobs_by_range_at_intervals('example', 'example', 1, batch_size: 1, track_jobs: true)
          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Background migrations are deprecated. Please use a Batched Background Migration instead[...]
        end
      RUBY
    end
  end

  context 'when requeue_background_migration_jobs_by_range_at_intervals is used' do
    it 'registers an offense' do
      expect_offense(<<~RUBY)
        def up
          requeue_background_migration_jobs_by_range_at_intervals('example', 1)
          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Background migrations are deprecated. Please use a Batched Background Migration instead[...]
        end
      RUBY
    end
  end

  context 'when migrate_in is used' do
    it 'registers an offense' do
      expect_offense(<<~RUBY)
        def up
          migrate_in(1, 'example', 1, ['example'])
          ^^^^^^^^^^ Background migrations are deprecated. Please use a Batched Background Migration instead[...]
        end
      RUBY
    end
  end
end