summaryrefslogtreecommitdiff
path: root/spec/migrations/complete_namespace_settings_migration_spec.rb
blob: 7820536f35504e3a8aaefad8f7daf53281a65410 (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
# frozen_string_literal: true

require 'spec_helper'
require Rails.root.join('db', 'post_migrate', '20200907124300_complete_namespace_settings_migration.rb')

RSpec.describe CompleteNamespaceSettingsMigration, :redis do
  let(:migration) { spy('migration') }

  context 'when still legacy artifacts exist' do
    let(:namespaces) { table(:namespaces) }
    let(:namespace_settings) { table(:namespace_settings) }
    let!(:namespace) { namespaces.create!(name: 'gitlab', path: 'gitlab-org') }

    it 'steals sidekiq jobs from BackfillNamespaceSettings background migration' do
      expect(Gitlab::BackgroundMigration).to receive(:steal).with('BackfillNamespaceSettings')

      migrate!
    end

    it 'migrates namespaces without namespace_settings' do
      expect { migrate! }.to change { namespace_settings.count }.from(0).to(1)
    end
  end
end