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/migrations/backfill_integrations_enable_ssl_verification_spec.rb')
-rw-r--r--spec/migrations/backfill_integrations_enable_ssl_verification_spec.rb32
1 files changed, 32 insertions, 0 deletions
diff --git a/spec/migrations/backfill_integrations_enable_ssl_verification_spec.rb b/spec/migrations/backfill_integrations_enable_ssl_verification_spec.rb
new file mode 100644
index 00000000000..28578a3d79a
--- /dev/null
+++ b/spec/migrations/backfill_integrations_enable_ssl_verification_spec.rb
@@ -0,0 +1,32 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+require_migration!
+
+RSpec.describe BackfillIntegrationsEnableSslVerification do
+ let_it_be(:migration) { described_class::MIGRATION }
+ let_it_be(:integrations) { described_class::Integration }
+
+ before do
+ stub_const("#{described_class.name}::BATCH_SIZE", 2)
+
+ integrations.create!(id: 1, type_new: 'Integrations::DroneCi')
+ integrations.create!(id: 2, type_new: 'Integrations::DroneCi', properties: {})
+ integrations.create!(id: 3, type_new: 'Integrations::Bamboo', properties: {})
+ integrations.create!(id: 4, type_new: 'Integrations::Teamcity', properties: {})
+ integrations.create!(id: 5, type_new: 'Integrations::DroneCi', properties: {})
+ integrations.create!(id: 6, type_new: 'Integrations::Teamcity', properties: {})
+ end
+
+ describe '#up' do
+ it 'schedules background jobs for each batch of integrations', :freeze_time do
+ Sidekiq::Testing.fake! do
+ migrate!
+
+ expect(BackgroundMigrationWorker.jobs.size).to eq(2)
+ expect(migration).to be_scheduled_delayed_migration(5.minutes, 2, 4)
+ expect(migration).to be_scheduled_delayed_migration(10.minutes, 5, 6)
+ end
+ end
+ end
+end