summaryrefslogtreecommitdiff
path: root/spec/models/concerns/loose_foreign_key_spec.rb
blob: 42da69eb75eadbb719fd829351f661695a81e878 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe LooseForeignKey do
  let(:project_klass) do
    Class.new(ApplicationRecord) do
      include LooseForeignKey

      self.table_name = 'projects'

      loose_foreign_key :issues, :project_id, on_delete: :async_delete
      loose_foreign_key 'merge_requests', 'project_id', 'on_delete' => 'async_nullify'
    end
  end

  it 'exposes the loose foreign key definitions' do
    definitions = project_klass.loose_foreign_key_definitions

    tables = definitions.map(&:to_table)
    expect(tables).to eq(%w[issues merge_requests])
  end

  it 'casts strings to symbol' do
    definition = project_klass.loose_foreign_key_definitions.last

    expect(definition.from_table).to eq('projects')
    expect(definition.to_table).to eq('merge_requests')
    expect(definition.column).to eq('project_id')
    expect(definition.on_delete).to eq(:async_nullify)
  end

  context 'validation' do
    context 'on_delete validation' do
      let(:invalid_class) do
        Class.new(ApplicationRecord) do
          include LooseForeignKey

          self.table_name = 'projects'

          loose_foreign_key :issues, :project_id, on_delete: :async_delete
          loose_foreign_key :merge_requests, :project_id, on_delete: :async_nullify
          loose_foreign_key :merge_requests, :project_id, on_delete: :destroy
        end
      end

      it 'raises error when invalid `on_delete` option was given' do
        expect { invalid_class }.to raise_error /Invalid on_delete option given: destroy/
      end
    end

    context 'inheritance validation' do
      let(:inherited_project_class) do
        Class.new(Project) do
          include LooseForeignKey

          loose_foreign_key :issues, :project_id, on_delete: :async_delete
        end
      end

      it 'raises error when loose_foreign_key is defined in a child ActiveRecord model' do
        expect { inherited_project_class }.to raise_error /Please define the loose_foreign_key on the Project class/
      end
    end
  end
end