gitlab-org--gitlab-foss/spec/migrations/20220213103859_remove_integ...

32 lines
941 B
Ruby

# 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