Welcome to mirror list, hosted at ThFree Co, Russian Federation.

swap_sent_notifications_id_columns_spec.rb « migrations « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2f681a2a587b30582f018d22f279ee15a5339af1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# frozen_string_literal: true

require 'spec_helper'
require_migration!

RSpec.describe SwapSentNotificationsIdColumns, 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 sent_notifications ALTER COLUMN id TYPE integer')
      connection.execute('ALTER TABLE sent_notifications ALTER COLUMN id_convert_to_bigint TYPE bigint')
      # rubocop: disable RSpec/AnyInstanceOf
      allow_any_instance_of(described_class).to receive(:com_or_dev_or_test_but_not_jh?).and_return(run_migration?)
      # rubocop: enable RSpec/AnyInstanceOf
    end

    context 'when we are GitLab.com, dev, or test' do
      let(:run_migration?) { true }

      it 'swaps the integer and bigint columns' do
        sent_notifications = table(:sent_notifications)

        disable_migrations_output do
          reversible_migration do |migration|
            migration.before -> {
              sent_notifications.reset_column_information

              expect(sent_notifications.columns.find { |c| c.name == 'id' }.sql_type).to eq('integer')
              expect(sent_notifications.columns.find { |c| c.name == 'id_convert_to_bigint' }.sql_type).to eq('bigint')
            }

            migration.after -> {
              sent_notifications.reset_column_information

              expect(sent_notifications.columns.find { |c| c.name == 'id' }.sql_type).to eq('bigint')
              expect(sent_notifications.columns.find { |c| c.name == 'id_convert_to_bigint' }.sql_type).to eq('integer')
            }
          end
        end
      end
    end

    context 'when we are NOT GitLab.com, dev, or test' do
      let(:run_migration?) { false }

      it 'does not swap the integer and bigint columns' do
        sent_notifications = table(:sent_notifications)

        disable_migrations_output do
          reversible_migration do |migration|
            migration.before -> {
              sent_notifications.reset_column_information

              expect(sent_notifications.columns.find { |c| c.name == 'id' }.sql_type).to eq('integer')
              expect(sent_notifications.columns.find { |c| c.name == 'id_convert_to_bigint' }.sql_type).to eq('bigint')
            }

            migration.after -> {
              sent_notifications.reset_column_information

              expect(sent_notifications.columns.find { |c| c.name == 'id' }.sql_type).to eq('integer')
              expect(sent_notifications.columns.find { |c| c.name == 'id_convert_to_bigint' }.sql_type).to eq('bigint')
            }
          end
        end
      end
    end
  end
end