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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/migrations/move_container_registry_enabled_to_project_features2_spec.rb')
-rw-r--r--spec/migrations/move_container_registry_enabled_to_project_features2_spec.rb47
1 files changed, 47 insertions, 0 deletions
diff --git a/spec/migrations/move_container_registry_enabled_to_project_features2_spec.rb b/spec/migrations/move_container_registry_enabled_to_project_features2_spec.rb
new file mode 100644
index 00000000000..11d43a36bc9
--- /dev/null
+++ b/spec/migrations/move_container_registry_enabled_to_project_features2_spec.rb
@@ -0,0 +1,47 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+require Rails.root.join('db', 'post_migrate', '20210401131948_move_container_registry_enabled_to_project_features2.rb')
+
+RSpec.describe MoveContainerRegistryEnabledToProjectFeatures2, :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!
+
+ # Since track_jobs is true, each job should have an entry in the background_migration_jobs
+ # table.
+ expect(table(:background_migration_jobs).count).to eq(2)
+
+ 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