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

backfill_integrations_enable_ssl_verification_spec.rb « migrations « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 28578a3d79aaf130d0e606202066165e4f5a382d (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
# 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