debian-mirror-gitlab/spec/rubocop/cop/migration/drop_table_spec.rb

111 lines
2.5 KiB
Ruby
Raw Normal View History

2020-06-23 00:09:42 +05:30
# frozen_string_literal: true
2020-10-24 23:57:45 +05:30
require 'fast_spec_helper'
2020-06-23 00:09:42 +05:30
require_relative '../../../../rubocop/cop/migration/drop_table'
2021-03-08 18:12:59 +05:30
RSpec.describe RuboCop::Cop::Migration::DropTable do
2020-06-23 00:09:42 +05:30
subject(:cop) { described_class.new }
context 'when in deployment migration' do
2021-04-17 20:07:23 +05:30
let(:msg) do
'`drop_table` in deployment migrations requires downtime. Drop tables in post-deployment migrations instead.'
end
2020-06-23 00:09:42 +05:30
before do
allow(cop).to receive(:in_deployment_migration?).and_return(true)
end
2020-07-28 23:09:34 +05:30
context 'with drop_table DSL method' do
context 'when in down method' do
it 'does not register an offense' do
expect_no_offenses(<<~PATTERN)
def down
drop_table :table
end
PATTERN
end
end
2020-06-23 00:09:42 +05:30
2020-07-28 23:09:34 +05:30
context 'when in up method' do
it 'registers an offense' do
expect_offense(<<~PATTERN)
def up
drop_table :table
2021-04-17 20:07:23 +05:30
^^^^^^^^^^ #{msg}
2020-07-28 23:09:34 +05:30
end
PATTERN
end
end
2020-06-23 00:09:42 +05:30
2020-07-28 23:09:34 +05:30
context 'when in change method' do
it 'registers an offense' do
expect_offense(<<~PATTERN)
def change
drop_table :table
2021-04-17 20:07:23 +05:30
^^^^^^^^^^ #{msg}
2020-07-28 23:09:34 +05:30
end
PATTERN
2020-06-23 00:09:42 +05:30
end
2020-07-28 23:09:34 +05:30
end
end
context 'with DROP TABLE SQL literal' do
it 'does not register an offense' do
expect_no_offenses(<<~PATTERN)
def down
execute "DROP TABLE table"
end
PATTERN
end
end
context 'when in up method' do
it 'registers an offense' do
expect_offense(<<~PATTERN)
def up
execute "DROP TABLE table"
2021-04-17 20:07:23 +05:30
^^^^^^^ #{msg}
2020-07-28 23:09:34 +05:30
end
PATTERN
end
end
context 'when in change method' do
it 'registers an offense' do
expect_offense(<<~PATTERN)
def change
execute "DROP TABLE table"
2021-04-17 20:07:23 +05:30
^^^^^^^ #{msg}
2020-07-28 23:09:34 +05:30
end
PATTERN
end
2020-06-23 00:09:42 +05:30
end
end
context 'when in post-deployment migration' do
before do
allow(cop).to receive(:in_post_deployment_migration?).and_return(true)
end
it 'registers no offense' do
expect_no_offenses(<<~PATTERN)
def change
drop_table :table
execute "DROP TABLE table"
end
PATTERN
end
end
context 'when outside of migration' do
it 'registers no offense' do
expect_no_offenses(<<~PATTERN)
def change
drop_table :table
execute "DROP TABLE table"
end
PATTERN
end
end
end