summaryrefslogtreecommitdiff
path: root/spec/services/alert_management/sync_alert_service_data_service_spec.rb
blob: ecec60011db8110b0bdf7e4b9b1bd6620fa2a314 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe AlertManagement::SyncAlertServiceDataService do
  let_it_be(:alerts_service) do
    AlertsService.skip_callback(:save, :after, :update_http_integration)
    service = create(:alerts_service, :active)
    AlertsService.set_callback(:save, :after, :update_http_integration)

    service
  end

  describe '#execute' do
    subject(:execute) { described_class.new(alerts_service).execute }

    context 'without http integration' do
      it 'creates the integration' do
        expect { execute }
          .to change { AlertManagement::HttpIntegration.count }.by(1)
      end

      it 'returns a success' do
        expect(subject.success?).to eq(true)
      end
    end

    context 'existing legacy http integration' do
      let_it_be(:integration) { create(:alert_management_http_integration, :legacy, project: alerts_service.project) }

      it 'updates the integration' do
        expect { execute }
          .to change { integration.reload.encrypted_token }.to(alerts_service.data.encrypted_token)
          .and change { integration.encrypted_token_iv }.to(alerts_service.data.encrypted_token_iv)
      end

      it 'returns a success' do
        expect(subject.success?).to eq(true)
      end
    end

    context 'existing other http integration' do
      let_it_be(:integration) { create(:alert_management_http_integration, project: alerts_service.project) }

      it 'creates the integration' do
        expect { execute }
          .to change { AlertManagement::HttpIntegration.count }.by(1)
      end

      it 'returns a success' do
        expect(subject.success?).to eq(true)
      end
    end
  end
end