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

swapping_spec.rb « migration_helpers « database « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0940c6f4c30d81a2eaf4d94e6b6449c417b23d19 (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Database::MigrationHelpers::Swapping, feature_category: :database do
  let(:connection) { ApplicationRecord.connection }
  let(:migration_context) do
    ActiveRecord::Migration
      .new
      .extend(described_class)
      .extend(Gitlab::Database::MigrationHelpers)
  end

  let(:service_instance) { instance_double('Gitlab::Database::Migrations::SwapColumns', execute: nil) }

  describe '#reset_trigger_function' do
    let(:trigger_function_name) { 'existing_trigger_function' }

    before do
      connection.execute(<<~SQL)
        CREATE FUNCTION #{trigger_function_name}() RETURNS trigger
            LANGUAGE plpgsql
            AS $$
        BEGIN
          NEW."bigint_column" := NEW."integer_column";
          RETURN NEW;
        END;
        $$;
      SQL
    end

    it 'resets' do
      recorder = ActiveRecord::QueryRecorder.new do
        migration_context.reset_trigger_function(trigger_function_name)
      end
      expect(recorder.log).to include(/ALTER FUNCTION "existing_trigger_function" RESET ALL/)
    end
  end

  describe '#swap_columns' do
    let(:table) { :ci_pipeline_variables }
    let(:column1) { :pipeline_id }
    let(:column2) { :pipeline_id_convert_to_bigint }

    it 'calls service' do
      expect(::Gitlab::Database::Migrations::SwapColumns).to receive(:new).with(
        migration_context: migration_context,
        table: table,
        column1: column1,
        column2: column2
      ).and_return(service_instance)

      migration_context.swap_columns(table, column1, column2)
    end
  end

  describe '#swap_columns_default' do
    let(:table) { :_test_table }
    let(:column1) { :pipeline_id }
    let(:column2) { :pipeline_id_convert_to_bigint }

    it 'calls service' do
      expect(::Gitlab::Database::Migrations::SwapColumnsDefault).to receive(:new).with(
        migration_context: migration_context,
        table: table,
        column1: column1,
        column2: column2
      ).and_return(service_instance)

      migration_context.swap_columns_default(table, column1, column2)
    end
  end

  describe '#swap_foreign_keys' do
    let(:table) { :_test_swap_foreign_keys }
    let(:referenced_table) { "#{table}_referenced" }
    let(:foreign_key1) { :fkey_on_integer_column }
    let(:foreign_key2) { :fkey_on_bigint_column }

    before do
      connection.execute(<<~SQL)
        CREATE TABLE #{table} (
          integer_column integer NOT NULL,
          bigint_column bigint DEFAULT 0 NOT NULL
        );
        CREATE TABLE #{referenced_table} (
          id bigint NOT NULL
        );

        ALTER TABLE ONLY #{referenced_table}
          ADD CONSTRAINT pk PRIMARY KEY (id);

        ALTER TABLE ONLY #{table}
          ADD CONSTRAINT #{foreign_key1}
          FOREIGN KEY (integer_column) REFERENCES #{referenced_table}(id) ON DELETE SET NULL;

        ALTER TABLE ONLY #{table}
          ADD CONSTRAINT #{foreign_key2}
          FOREIGN KEY (bigint_column) REFERENCES #{referenced_table}(id) ON DELETE SET NULL;
      SQL
    end

    shared_examples_for 'swapping foreign keys correctly' do
      specify do
        expect { migration_context.swap_foreign_keys(table, foreign_key1, foreign_key2) }
          .to change {
            find_foreign_key_by(foreign_key1).options[:column]
          }.from('integer_column').to('bigint_column')
          .and change {
            find_foreign_key_by(foreign_key2).options[:column]
          }.from('bigint_column').to('integer_column')
      end
    end

    it_behaves_like 'swapping foreign keys correctly'

    context 'when foreign key names are 63 bytes' do
      let(:foreign_key1) { :f1_012345678901234567890123456789012345678901234567890123456789 }
      let(:foreign_key2) { :f2_012345678901234567890123456789012345678901234567890123456789 }

      it_behaves_like 'swapping foreign keys correctly'
    end

    private

    def find_foreign_key_by(name)
      connection.foreign_keys(table).find { |k| k.options[:name].to_s == name.to_s }
    end
  end

  describe '#swap_indexes' do
    let(:table) { :_test_swap_indexes }
    let(:index1) { :index_on_integer }
    let(:index2) { :index_on_bigint }

    before do
      connection.execute(<<~SQL)
        CREATE TABLE #{table} (
          integer_column integer NOT NULL,
          bigint_column bigint DEFAULT 0 NOT NULL
        );

        CREATE INDEX #{index1} ON #{table} USING btree (integer_column);

        CREATE INDEX #{index2} ON #{table} USING btree (bigint_column);
      SQL
    end

    shared_examples_for 'swapping indexes correctly' do
      specify do
        expect { migration_context.swap_indexes(table, index1, index2) }
          .to change { find_index_by(index1).columns }.from(['integer_column']).to(['bigint_column'])
          .and change { find_index_by(index2).columns }.from(['bigint_column']).to(['integer_column'])
      end
    end

    it_behaves_like 'swapping indexes correctly'

    context 'when index names are 63 bytes' do
      let(:index1) { :i1_012345678901234567890123456789012345678901234567890123456789 }
      let(:index2) { :i2_012345678901234567890123456789012345678901234567890123456789 }

      it_behaves_like 'swapping indexes correctly'
    end

    private

    def find_index_by(name)
      connection.indexes(table).find { |c| c.name == name.to_s }
    end
  end
end