debian-mirror-gitlab/spec/migrations/swap_suggestions_note_id_to_bigint_for_gitlab_dot_com_spec.rb
2023-06-20 00:43:36 +05:30

67 lines
2.5 KiB
Ruby

# frozen_string_literal: true
require 'spec_helper'
require_migration!
RSpec.describe SwapSuggestionsNoteIdToBigintForGitlabDotCom, feature_category: :database do
describe '#up' do
before do
# A we call `schema_migrate_down!` before each example, and for this migration
# `#down` is same as `#up`, we need to ensure we start from the expected state.
connection = described_class.new.connection
connection.execute('ALTER TABLE suggestions ALTER COLUMN note_id TYPE integer')
connection.execute('ALTER TABLE suggestions ALTER COLUMN note_id_convert_to_bigint TYPE bigint')
end
# rubocop: disable RSpec/AnyInstanceOf
it 'swaps the integer and bigint columns for GitLab.com, dev, or test' do
allow_any_instance_of(described_class).to receive(:com_or_dev_or_test_but_not_jh?).and_return(true)
suggestions = table(:suggestions)
disable_migrations_output do
reversible_migration do |migration|
migration.before -> {
suggestions.reset_column_information
expect(suggestions.columns.find { |c| c.name == 'note_id' }.sql_type).to eq('integer')
expect(suggestions.columns.find { |c| c.name == 'note_id_convert_to_bigint' }.sql_type).to eq('bigint')
}
migration.after -> {
suggestions.reset_column_information
expect(suggestions.columns.find { |c| c.name == 'note_id' }.sql_type).to eq('bigint')
expect(suggestions.columns.find { |c| c.name == 'note_id_convert_to_bigint' }.sql_type).to eq('integer')
}
end
end
end
it 'is a no-op for other instances' do
allow_any_instance_of(described_class).to receive(:com_or_dev_or_test_but_not_jh?).and_return(false)
suggestions = table(:suggestions)
disable_migrations_output do
reversible_migration do |migration|
migration.before -> {
suggestions.reset_column_information
expect(suggestions.columns.find { |c| c.name == 'note_id' }.sql_type).to eq('integer')
expect(suggestions.columns.find { |c| c.name == 'note_id_convert_to_bigint' }.sql_type).to eq('bigint')
}
migration.after -> {
suggestions.reset_column_information
expect(suggestions.columns.find { |c| c.name == 'note_id' }.sql_type).to eq('integer')
expect(suggestions.columns.find { |c| c.name == 'note_id_convert_to_bigint' }.sql_type).to eq('bigint')
}
end
end
end
# rubocop: enable RSpec/AnyInstanceOf
end
end