summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/lib/gitlab/database/postgres_model_shared_examples.rb
blob: ffebbabca5882d41d0deada6877be8f64ed9f4e1 (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
# frozen_string_literal: true

RSpec.shared_examples 'a postgres model' do
  describe '.by_identifier' do
    it "finds the #{described_class}" do
      expect(find(identifier)).to be_a(described_class)
    end

    it 'raises an error if not found' do
      expect { find('public.idontexist') }.to raise_error(ActiveRecord::RecordNotFound)
    end

    it 'raises ArgumentError if given a non-fully qualified identifier' do
      expect { find('foo') }.to raise_error(ArgumentError, /not fully qualified/)
    end
  end

  describe '#to_s' do
    it 'returns the name' do
      expect(find(identifier).to_s).to eq(name)
    end
  end

  describe '#schema' do
    it 'returns the schema' do
      expect(find(identifier).schema).to eq(schema)
    end
  end

  describe '#name' do
    it 'returns the name' do
      expect(find(identifier).name).to eq(name)
    end
  end
end