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

212 lines
5.5 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 'rubocop'
require_relative '../../../../rubocop/cop/migration/datetime'
2020-07-28 23:09:34 +05:30
RSpec.describe RuboCop::Cop::Migration::Datetime, type: :rubocop do
2017-09-10 17:25:29 +05:30
include CopHelper
subject(:cop) { described_class.new }
2018-03-17 18:26:18 +05:30
2020-04-22 19:07:51 +05:30
let(:create_table_migration_with_datetime) do
2017-09-10 17:25:29 +05:30
%q(
2020-04-22 19:07:51 +05:30
class Users < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
create_table :users do |t|
t.string :username, null: false
t.datetime :last_sign_in
end
end
end
)
end
let(:create_table_migration_with_timestamp) do
%q(
class Users < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
create_table :users do |t|
t.string :username, null: false
t.timestamp :last_sign_in
end
end
end
)
end
let(:create_table_migration_without_datetime) do
%q(
class Users < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
create_table :users do |t|
t.string :username, null: false
t.string :password
end
end
end
)
end
let(:create_table_migration_with_datetime_with_timezone) do
%q(
class Users < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
create_table :users do |t|
t.string :username, null: false
t.datetime_with_timezone :last_sign_in
end
end
end
)
end
let(:add_column_migration_with_datetime) do
%q(
class Users < ActiveRecord::Migration[6.0]
2017-09-10 17:25:29 +05:30
DOWNTIME = false
def change
add_column(:users, :username, :text)
add_column(:users, :last_sign_in, :datetime)
end
end
)
end
2020-04-22 19:07:51 +05:30
let(:add_column_migration_with_timestamp) do
2018-03-17 18:26:18 +05:30
%q(
2020-04-22 19:07:51 +05:30
class Users < ActiveRecord::Migration[6.0]
2018-03-17 18:26:18 +05:30
DOWNTIME = false
def change
add_column(:users, :username, :text)
add_column(:users, :last_sign_in, :timestamp)
end
end
)
end
2020-04-22 19:07:51 +05:30
let(:add_column_migration_without_datetime) do
2017-09-10 17:25:29 +05:30
%q(
2020-04-22 19:07:51 +05:30
class Users < ActiveRecord::Migration[6.0]
2017-09-10 17:25:29 +05:30
DOWNTIME = false
def change
add_column(:users, :username, :text)
end
end
)
end
2020-04-22 19:07:51 +05:30
let(:add_column_migration_with_datetime_with_timezone) do
2017-09-10 17:25:29 +05:30
%q(
2020-04-22 19:07:51 +05:30
class Users < ActiveRecord::Migration[6.0]
2017-09-10 17:25:29 +05:30
DOWNTIME = false
def change
add_column(:users, :username, :text)
add_column(:users, :last_sign_in, :datetime_with_timezone)
end
end
)
end
context 'in migration' do
before do
allow(cop).to receive(:in_migration?).and_return(true)
end
2020-04-22 19:07:51 +05:30
it 'registers an offense when the ":datetime" data type is used on create_table' do
inspect_source(create_table_migration_with_datetime)
aggregate_failures do
expect(cop.offenses.size).to eq(1)
expect(cop.offenses.map(&:line)).to eq([8])
expect(cop.offenses.first.message).to include('`datetime`')
end
end
it 'registers an offense when the ":timestamp" data type is used on create_table' do
inspect_source(create_table_migration_with_timestamp)
aggregate_failures do
expect(cop.offenses.size).to eq(1)
expect(cop.offenses.map(&:line)).to eq([8])
expect(cop.offenses.first.message).to include('timestamp')
end
end
it 'does not register an offense when the ":datetime" data type is not used on create_table' do
inspect_source(create_table_migration_without_datetime)
aggregate_failures do
expect(cop.offenses.size).to eq(0)
end
end
it 'does not register an offense when the ":datetime_with_timezone" data type is used on create_table' do
inspect_source(create_table_migration_with_datetime_with_timezone)
aggregate_failures do
expect(cop.offenses.size).to eq(0)
end
end
it 'registers an offense when the ":datetime" data type is used on add_column' do
inspect_source(add_column_migration_with_datetime)
2018-03-17 18:26:18 +05:30
aggregate_failures do
expect(cop.offenses.size).to eq(1)
expect(cop.offenses.map(&:line)).to eq([7])
2020-04-22 19:07:51 +05:30
expect(cop.offenses.first.message).to include('`datetime`')
2018-03-17 18:26:18 +05:30
end
end
2020-04-22 19:07:51 +05:30
it 'registers an offense when the ":timestamp" data type is used on add_column' do
inspect_source(add_column_migration_with_timestamp)
2017-09-10 17:25:29 +05:30
aggregate_failures do
expect(cop.offenses.size).to eq(1)
expect(cop.offenses.map(&:line)).to eq([7])
2018-03-17 18:26:18 +05:30
expect(cop.offenses.first.message).to include('timestamp')
2017-09-10 17:25:29 +05:30
end
end
2020-04-22 19:07:51 +05:30
it 'does not register an offense when the ":datetime" data type is not used on add_column' do
inspect_source(add_column_migration_without_datetime)
2017-09-10 17:25:29 +05:30
aggregate_failures do
expect(cop.offenses.size).to eq(0)
end
end
2020-04-22 19:07:51 +05:30
it 'does not register an offense when the ":datetime_with_timezone" data type is used on add_column' do
inspect_source(add_column_migration_with_datetime_with_timezone)
2017-09-10 17:25:29 +05:30
aggregate_failures do
expect(cop.offenses.size).to eq(0)
end
end
end
context 'outside of migration' do
it 'registers no offense' do
2020-04-22 19:07:51 +05:30
inspect_source(add_column_migration_with_datetime)
inspect_source(add_column_migration_with_timestamp)
inspect_source(add_column_migration_without_datetime)
inspect_source(add_column_migration_with_datetime_with_timezone)
2017-09-10 17:25:29 +05:30
expect(cop.offenses.size).to eq(0)
end
end
end