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

20220412143552_consume_remaining_encrypt_integration_property_jobs_spec.rb « migrations « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4a1b68a5a857b9e5cf0a4fbc6cf3605880819398 (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
# frozen_string_literal: true

require 'spec_helper'

require_migration!

RSpec.describe ConsumeRemainingEncryptIntegrationPropertyJobs, :migration do
  subject(:migration) { described_class.new }

  let(:integrations) { table(:integrations) }
  let(:bg_migration_class) { ::Gitlab::BackgroundMigration::EncryptIntegrationProperties }
  let(:bg_migration) { instance_double(bg_migration_class) }

  before do
    stub_const("#{described_class.name}::BATCH_SIZE", 2)
  end

  it 'performs remaining background migrations', :aggregate_failures do
    # Already migrated
    integrations.create!(properties: some_props, encrypted_properties: 'abc')
    integrations.create!(properties: some_props, encrypted_properties: 'def')
    integrations.create!(properties: some_props, encrypted_properties: 'xyz')
    # update required
    record1 = integrations.create!(properties: some_props)
    record2 = integrations.create!(properties: some_props)
    record3 = integrations.create!(properties: some_props)
    # No update required
    integrations.create!(properties: nil)
    integrations.create!(properties: nil)

    expect(Gitlab::BackgroundMigration).to receive(:steal).with(bg_migration_class.name.demodulize)
    expect(bg_migration_class).to receive(:new).twice.and_return(bg_migration)
    expect(bg_migration).to receive(:perform).with(record1.id, record2.id)
    expect(bg_migration).to receive(:perform).with(record3.id, record3.id)

    migrate!
  end

  def some_props
    { iid: generate(:iid), url: generate(:url), username: generate(:username) }.to_json
  end
end