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

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

require 'spec_helper'

RSpec.describe Gitlab::Schema::Validation::SchemaObjects::ForeignKey, feature_category: :database do
  subject(:foreign_key) { described_class.new(adapter) }

  let(:database_adapter) { 'Gitlab::Schema::Validation::Adapters::ForeignKeyDatabaseAdapter' }
  let(:adapter) do
    instance_double(database_adapter, name: 'public.fk_1d37cddf91', table_name: 'vulnerabilities',
      statement: 'FOREIGN KEY (epic_id) REFERENCES epics(id) ON DELETE SET NULL')
  end

  describe '#name' do
    it { expect(foreign_key.name).to eq('public.fk_1d37cddf91') }
  end

  describe '#table_name' do
    it { expect(foreign_key.table_name).to eq('vulnerabilities') }
  end

  describe '#statement' do
    it { expect(foreign_key.statement).to eq('FOREIGN KEY (epic_id) REFERENCES epics(id) ON DELETE SET NULL') }
  end
end