Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/services/alert_management/sync_alert_service_data_service_spec.rb')
-rw-r--r--spec/services/alert_management/sync_alert_service_data_service_spec.rb55
1 files changed, 55 insertions, 0 deletions
diff --git a/spec/services/alert_management/sync_alert_service_data_service_spec.rb b/spec/services/alert_management/sync_alert_service_data_service_spec.rb
new file mode 100644
index 00000000000..ecec60011db
--- /dev/null
+++ b/spec/services/alert_management/sync_alert_service_data_service_spec.rb
@@ -0,0 +1,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