summaryrefslogtreecommitdiff
path: root/spec/migrations/move_container_registry_enabled_to_project_features_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/migrations/move_container_registry_enabled_to_project_features_spec.rb')
-rw-r--r--spec/migrations/move_container_registry_enabled_to_project_features_spec.rb43
1 files changed, 43 insertions, 0 deletions
diff --git a/spec/migrations/move_container_registry_enabled_to_project_features_spec.rb b/spec/migrations/move_container_registry_enabled_to_project_features_spec.rb
new file mode 100644
index 00000000000..c7b07f3ef37
--- /dev/null
+++ b/spec/migrations/move_container_registry_enabled_to_project_features_spec.rb
@@ -0,0 +1,43 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+require Rails.root.join('db', 'post_migrate', '20210226120851_move_container_registry_enabled_to_project_features.rb')
+
+RSpec.describe MoveContainerRegistryEnabledToProjectFeatures, :migration do
+ let(:namespace) { table(:namespaces).create!(name: 'gitlab', path: 'gitlab-org') }
+
+ let!(:projects) do
+ [
+ table(:projects).create!(namespace_id: namespace.id, name: 'project 1'),
+ table(:projects).create!(namespace_id: namespace.id, name: 'project 2'),
+ table(:projects).create!(namespace_id: namespace.id, name: 'project 3'),
+ table(:projects).create!(namespace_id: namespace.id, name: 'project 4')
+ ]
+ end
+
+ before do
+ stub_const("#{described_class.name}::BATCH_SIZE", 3)
+ end
+
+ around do |example|
+ Sidekiq::Testing.fake! do
+ freeze_time do
+ example.call
+ end
+ end
+ end
+
+ it 'schedules jobs for ranges of projects' do
+ migrate!
+
+ expect(described_class::MIGRATION)
+ .to be_scheduled_delayed_migration(2.minutes, projects[0].id, projects[2].id)
+
+ expect(described_class::MIGRATION)
+ .to be_scheduled_delayed_migration(4.minutes, projects[3].id, projects[3].id)
+ end
+
+ it 'schedules jobs according to the configured batch size' do
+ expect { migrate! }.to change { BackgroundMigrationWorker.jobs.size }.by(2)
+ end
+end