summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/database/partitioning_migration_helpers/partitioned_foreign_key_spec.rb
blob: a58c37f111ddbf1fed8aaf5dbfec2eba8745ab1e (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Database::PartitioningMigrationHelpers::PartitionedForeignKey do
  let(:foreign_key) do
    described_class.new(
      to_table: 'issues',
      from_table: 'issue_assignees',
      from_column: 'issue_id',
      to_column: 'id',
      cascade_delete: true)
  end

  describe 'validations' do
    it 'allows keys that reference valid tables and columns' do
      expect(foreign_key).to be_valid
    end

    it 'does not allow keys without a valid to_table' do
      foreign_key.to_table = 'this_is_not_a_real_table'

      expect(foreign_key).not_to be_valid
      expect(foreign_key.errors[:to_table].first).to eq('must be a valid table')
    end

    it 'does not allow keys without a valid from_table' do
      foreign_key.from_table = 'this_is_not_a_real_table'

      expect(foreign_key).not_to be_valid
      expect(foreign_key.errors[:from_table].first).to eq('must be a valid table')
    end

    it 'does not allow keys without a valid to_column' do
      foreign_key.to_column = 'this_is_not_a_real_fk'

      expect(foreign_key).not_to be_valid
      expect(foreign_key.errors[:to_column].first).to eq('must be a valid column')
    end

    it 'does not allow keys without a valid from_column' do
      foreign_key.from_column = 'this_is_not_a_real_pk'

      expect(foreign_key).not_to be_valid
      expect(foreign_key.errors[:from_column].first).to eq('must be a valid column')
    end
  end
end