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

require 'spec_helper'

RSpec.describe IssuableLink do
  let(:test_class) do
    Class.new(ApplicationRecord) do
      include IssuableLink

      self.table_name = 'issue_links'

      belongs_to :source, class_name: 'Issue'
      belongs_to :target, class_name: 'Issue'

      def self.name
        'TestClass'
      end
    end
  end

  describe '.inverse_link_type' do
    it 'returns the inverse type of link' do
      expect(test_class.inverse_link_type('relates_to')).to eq('relates_to')
    end
  end

  describe '.issuable_type' do
    let_it_be(:source_issue) { create(:issue) }
    let_it_be(:target_issue) { create(:issue) }

    before do
      test_class.create!(source: source_issue, target: target_issue)
    end

    context 'when opposite relation already exists' do
      it 'raises NotImplementedError when performing validations' do
        instance = test_class.new(source: target_issue, target: source_issue)

        expect { instance.save! }.to raise_error(NotImplementedError)
      end
    end
  end
end