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

tables_sorted_by_foreign_keys_spec.rb « database « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aa25590ed58a681969b31142c8265031e771a4f4 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Database::TablesSortedByForeignKeys do
  let(:connection) { ApplicationRecord.connection }
  let(:tables) do
    %w[_test_gitlab_main_items _test_gitlab_main_references _test_gitlab_partition_parent
       gitlab_partitions_dynamic._test_gitlab_partition_20220101]
  end

  subject do
    described_class.new(connection, tables).execute
  end

  before do
    statement = <<~SQL
      CREATE TABLE _test_gitlab_main_items (id serial NOT NULL PRIMARY KEY);

      CREATE TABLE _test_gitlab_main_references (
        id serial NOT NULL PRIMARY KEY,
        item_id BIGINT NOT NULL,
        CONSTRAINT fk_constrained_1 FOREIGN KEY(item_id) REFERENCES _test_gitlab_main_items(id)
      );

      CREATE TABLE _test_gitlab_partition_parent (
        id bigserial not null,
        created_at timestamptz not null,
        item_id BIGINT NOT NULL,
        primary key (id, created_at),
        CONSTRAINT fk_constrained_1 FOREIGN KEY(item_id) REFERENCES _test_gitlab_main_items(id)
      ) PARTITION BY RANGE(created_at);

      CREATE TABLE gitlab_partitions_dynamic._test_gitlab_partition_20220101
      PARTITION OF _test_gitlab_partition_parent
      FOR VALUES FROM ('20220101') TO ('20220131');

      ALTER TABLE _test_gitlab_partition_parent DETACH PARTITION gitlab_partitions_dynamic._test_gitlab_partition_20220101;
    SQL
    connection.execute(statement)
  end

  describe '#execute' do
    it 'returns the tables sorted by the foreign keys dependency' do
      expect(subject).to eq(
        [
          ['_test_gitlab_main_references'],
          ['_test_gitlab_partition_parent'],
          ['gitlab_partitions_dynamic._test_gitlab_partition_20220101'],
          ['_test_gitlab_main_items']
        ])
    end

    it 'returns both tables together if they are strongly connected' do
      statement = <<~SQL
        ALTER TABLE _test_gitlab_main_items ADD COLUMN reference_id BIGINT
        REFERENCES _test_gitlab_main_references(id)
      SQL
      connection.execute(statement)

      expect(subject).to eq(
        [
          ['_test_gitlab_partition_parent'],
          ['gitlab_partitions_dynamic._test_gitlab_partition_20220101'],
          %w[_test_gitlab_main_items _test_gitlab_main_references]
        ])
    end
  end
end