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

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

require 'spec_helper'

require_migration!

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

  let(:integrations) { table(:integrations) }
  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!(type: 'SlackService', type_new: 'Integrations::Slack')
    # update required
    record1 = integrations.create!(type: 'SlackService')
    record2 = integrations.create!(type: 'JiraService')
    record3 = integrations.create!(type: 'SlackService')

    migrate!

    expect(record1.reload.type_new).to eq 'Integrations::Slack'
    expect(record2.reload.type_new).to eq 'Integrations::Jira'
    expect(record3.reload.type_new).to eq 'Integrations::Slack'
  end
end