2019-10-29 08:06:40 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-08-18 14:10:07 -04:00
|
|
|
require 'rubocop_spec_helper'
|
2017-03-07 11:08:53 -05:00
|
|
|
require_relative '../../../../rubocop/cop/migration/add_concurrent_index'
|
|
|
|
|
2021-01-07 13:10:38 -05:00
|
|
|
RSpec.describe RuboCop::Cop::Migration::AddConcurrentIndex do
|
2021-02-17 16:09:06 -05:00
|
|
|
context 'when in migration' do
|
2017-03-07 11:08:53 -05:00
|
|
|
before do
|
|
|
|
allow(cop).to receive(:in_migration?).and_return(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'registers an offense when add_concurrent_index is used inside a change method' do
|
2021-02-17 16:09:06 -05:00
|
|
|
expect_offense(<<~RUBY)
|
|
|
|
def change
|
|
|
|
^^^^^^ `add_concurrent_index` is not reversible[...]
|
|
|
|
add_concurrent_index :table, :column
|
|
|
|
end
|
|
|
|
RUBY
|
2017-03-07 11:08:53 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'registers no offense when add_concurrent_index is used inside an up method' do
|
2021-02-17 16:09:06 -05:00
|
|
|
expect_no_offenses('def up; add_concurrent_index :table, :column; end')
|
2017-03-07 11:08:53 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-02-17 16:09:06 -05:00
|
|
|
context 'when outside of migration' do
|
2017-03-07 11:08:53 -05:00
|
|
|
it 'registers no offense' do
|
2021-02-17 16:09:06 -05:00
|
|
|
expect_no_offenses('def change; add_concurrent_index :table, :column; end')
|
2017-03-07 11:08:53 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|