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

75 lines
2 KiB
Ruby
Raw Normal View History

2019-12-26 22:10:19 +05:30
# frozen_string_literal: true
2020-07-28 23:09:34 +05:30
require 'fast_spec_helper'
2017-09-10 17:25:29 +05:30
require_relative '../../../../rubocop/cop/migration/add_timestamps'
2021-03-08 18:12:59 +05:30
RSpec.describe RuboCop::Cop::Migration::AddTimestamps do
2017-09-10 17:25:29 +05:30
subject(:cop) { described_class.new }
2019-12-21 20:55:43 +05:30
2017-09-10 17:25:29 +05:30
let(:migration_with_add_timestamps) do
%q(
2019-02-15 15:39:39 +05:30
class Users < ActiveRecord::Migration[4.2]
2017-09-10 17:25:29 +05:30
def change
add_column(:users, :username, :text)
add_timestamps(:users)
end
end
)
end
let(:migration_without_add_timestamps) do
%q(
2019-02-15 15:39:39 +05:30
class Users < ActiveRecord::Migration[4.2]
2017-09-10 17:25:29 +05:30
def change
add_column(:users, :username, :text)
end
end
)
end
let(:migration_with_add_timestamps_with_timezone) do
%q(
2019-02-15 15:39:39 +05:30
class Users < ActiveRecord::Migration[4.2]
2017-09-10 17:25:29 +05:30
def change
add_column(:users, :username, :text)
add_timestamps_with_timezone(:users)
end
end
)
end
2021-04-17 20:07:23 +05:30
context 'when in migration' do
2017-09-10 17:25:29 +05:30
before do
allow(cop).to receive(:in_migration?).and_return(true)
end
it 'registers an offense when the "add_timestamps" method is used' do
2021-04-17 20:07:23 +05:30
expect_offense(<<~RUBY)
class Users < ActiveRecord::Migration[4.2]
def change
add_column(:users, :username, :text)
add_timestamps(:users)
^^^^^^^^^^^^^^ Do not use `add_timestamps`, use `add_timestamps_with_timezone` instead
end
end
RUBY
2017-09-10 17:25:29 +05:30
end
it 'does not register an offense when the "add_timestamps" method is not used' do
2021-04-17 20:07:23 +05:30
expect_no_offenses(migration_without_add_timestamps)
2017-09-10 17:25:29 +05:30
end
it 'does not register an offense when the "add_timestamps_with_timezone" method is used' do
2021-04-17 20:07:23 +05:30
expect_no_offenses(migration_with_add_timestamps_with_timezone)
2017-09-10 17:25:29 +05:30
end
end
2021-04-17 20:07:23 +05:30
context 'when outside of migration' do
it 'registers no offense', :aggregate_failures do
expect_no_offenses(migration_with_add_timestamps)
expect_no_offenses(migration_without_add_timestamps)
expect_no_offenses(migration_with_add_timestamps_with_timezone)
2017-09-10 17:25:29 +05:30
end
end
end