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

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

require 'spec_helper'

RSpec.describe Gitlab::Database::SchemaValidation::SchemaObjects::Table, feature_category: :database do
  subject(:table) { described_class.new(name, columns) }

  let(:name) { 'my_table' }
  let(:column_class) { 'Gitlab::Database::SchemaValidation::SchemaObjects::Column' }
  let(:columns) do
    [
      instance_double(column_class, name: 'id', statement: 'id bigint NOT NULL', partition_key?: false),
      instance_double(column_class, name: 'col', statement: 'col text', partition_key?: false),
      instance_double(column_class, name: 'partition', statement: 'partition integer DEFAULT 1', partition_key?: true)
    ]
  end

  describe '#name' do
    it { expect(table.name).to eq('my_table') }
  end

  describe '#table_name' do
    it { expect(table.table_name).to eq('my_table') }
  end

  describe '#statement' do
    it { expect(table.statement).to eq('CREATE TABLE my_table (id bigint NOT NULL, col text)') }

    it 'ignores the partition column' do
      expect(table.statement).not_to include('partition integer DEFAULT 1')
    end
  end

  describe '#fetch_column_by_name' do
    it { expect(table.fetch_column_by_name('col')).not_to be_nil }

    it { expect(table.fetch_column_by_name('invalid')).to be_nil }
  end

  describe '#column_exists?' do
    it { expect(table.column_exists?('col')).to eq(true) }

    it { expect(table.column_exists?('invalid')).to eq(false) }
  end
end