summaryrefslogtreecommitdiff
path: root/spec/migrations/add_triggers_to_integrations_type_new_spec.rb
blob: 07845715a524f7d119596934c215ae2d90fe52d8 (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
# frozen_string_literal: true

require 'spec_helper'

require_migration!

RSpec.describe AddTriggersToIntegrationsTypeNew do
  let(:migration) { described_class.new }
  let(:integrations) { table(:integrations) }

  describe '#up' do
    before do
      migrate!
    end

    describe 'INSERT trigger' do
      it 'sets `type_new` to the transformed `type` class name' do
        Gitlab::Integrations::StiType.namespaced_integrations.each do |type|
          integration = integrations.create!(type: "#{type}Service")

          expect(integration.reload).to have_attributes(
            type: "#{type}Service",
            type_new: "Integrations::#{type}"
          )
        end
      end

      it 'ignores types that are not namespaced' do
        # We don't actually have any integrations without namespaces,
        # but we can abuse one of the integration base classes.
        integration = integrations.create!(type: 'BaseIssueTracker')

        expect(integration.reload).to have_attributes(
          type: 'BaseIssueTracker',
          type_new: nil
        )
      end

      it 'ignores types that are unknown' do
        integration = integrations.create!(type: 'FooBar')

        expect(integration.reload).to have_attributes(
          type: 'FooBar',
          type_new: nil
        )
      end
    end
  end

  describe '#down' do
    before do
      migration.up
      migration.down
    end

    it 'drops the INSERT trigger' do
      integration = integrations.create!(type: 'JiraService')

      expect(integration.reload).to have_attributes(
        type: 'JiraService',
        type_new: nil
      )
    end
  end
end