2019-10-29 08:06:40 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-13 07:44:13 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
require 'rubocop'
|
|
|
|
require 'rubocop/rspec/support'
|
|
|
|
|
|
|
|
require_relative '../../../../rubocop/cop/migration/timestamps'
|
|
|
|
|
|
|
|
describe RuboCop::Cop::Migration::Timestamps do
|
|
|
|
include CopHelper
|
|
|
|
|
|
|
|
subject(:cop) { described_class.new }
|
2019-10-18 07:11:44 -04:00
|
|
|
|
2017-06-13 07:44:13 -04:00
|
|
|
let(:migration_with_timestamps) do
|
|
|
|
%q(
|
2018-12-12 10:38:40 -05:00
|
|
|
class Users < ActiveRecord::Migration[4.2]
|
2017-06-13 07:44:13 -04:00
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def change
|
|
|
|
create_table :users do |t|
|
|
|
|
t.string :username, null: false
|
|
|
|
t.timestamps null: true
|
|
|
|
t.string :password
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:migration_without_timestamps) do
|
|
|
|
%q(
|
2018-12-12 10:38:40 -05:00
|
|
|
class Users < ActiveRecord::Migration[4.2]
|
2017-06-13 07:44:13 -04:00
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def change
|
|
|
|
create_table :users do |t|
|
|
|
|
t.string :username, null: false
|
|
|
|
t.string :password
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:migration_with_timestamps_with_timezone) do
|
|
|
|
%q(
|
2018-12-12 10:38:40 -05:00
|
|
|
class Users < ActiveRecord::Migration[4.2]
|
2017-06-13 07:44:13 -04:00
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def change
|
|
|
|
create_table :users do |t|
|
|
|
|
t.string :username, null: false
|
|
|
|
t.timestamps_with_timezone null: true
|
|
|
|
t.string :password
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'in migration' do
|
|
|
|
before do
|
|
|
|
allow(cop).to receive(:in_migration?).and_return(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'registers an offense when the "timestamps" method is used' do
|
2017-09-19 11:25:42 -04:00
|
|
|
inspect_source(migration_with_timestamps)
|
2017-06-13 07:44:13 -04:00
|
|
|
|
|
|
|
aggregate_failures do
|
|
|
|
expect(cop.offenses.size).to eq(1)
|
|
|
|
expect(cop.offenses.map(&:line)).to eq([8])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not register an offense when the "timestamps" method is not used' do
|
2017-09-19 11:25:42 -04:00
|
|
|
inspect_source(migration_without_timestamps)
|
2017-06-13 07:44:13 -04:00
|
|
|
|
|
|
|
aggregate_failures do
|
|
|
|
expect(cop.offenses.size).to eq(0)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not register an offense when the "timestamps_with_timezone" method is used' do
|
2017-09-19 11:25:42 -04:00
|
|
|
inspect_source(migration_with_timestamps_with_timezone)
|
2017-06-13 07:44:13 -04:00
|
|
|
|
|
|
|
aggregate_failures do
|
|
|
|
expect(cop.offenses.size).to eq(0)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'outside of migration' do
|
|
|
|
it 'registers no offense' do
|
2017-09-19 11:25:42 -04:00
|
|
|
inspect_source(migration_with_timestamps)
|
|
|
|
inspect_source(migration_without_timestamps)
|
|
|
|
inspect_source(migration_with_timestamps_with_timezone)
|
2017-06-13 07:44:13 -04:00
|
|
|
|
|
|
|
expect(cop.offenses.size).to eq(0)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|