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

prevent_global_enable_lock_retries_with_disable_ddl_transaction_spec.rb « migration « cop « rubocop « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1035ed2fb4ae8fd15ab06e251399f003a7026927 (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
52
53
54
55
56
# frozen_string_literal: true

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

RSpec.describe RuboCop::Cop::Migration::PreventGlobalEnableLockRetriesWithDisableDdlTransaction do
  context 'when in migration' do
    before do
      allow(cop).to receive(:in_migration?).and_return(true)
    end

    it 'registers an offense when `enable_lock_retries` and `disable_ddl_transaction` is used together' do
      code = <<~RUBY
      class SomeMigration < ActiveRecord::Migration[6.0]
        enable_lock_retries!
        disable_ddl_transaction!
      end
      RUBY

      expect_offense(<<~RUBY, node: code, msg: described_class::MSG)
        class SomeMigration < ActiveRecord::Migration[6.0]
          enable_lock_retries!
          disable_ddl_transaction!
          ^^^^^^^^^^^^^^^^^^^^^^^^ %{msg}
        end
      RUBY
    end

    it 'registers no offense when `enable_lock_retries!` is used' do
      expect_no_offenses(<<~RUBY)
        class SomeMigration < ActiveRecord::Migration[6.0]
          enable_lock_retries!
        end
      RUBY
    end

    it 'registers no offense when `disable_ddl_transaction!` is used' do
      expect_no_offenses(<<~RUBY)
        class SomeMigration < ActiveRecord::Migration[6.0]
          disable_ddl_transaction!
        end
      RUBY
    end
  end

  context 'when outside of migration' do
    it 'registers no offense' do
      expect_no_offenses(<<~RUBY)
        class SomeMigration
          enable_lock_retries!
          disable_ddl_transaction!
        end
      RUBY
    end
  end
end