diff options
author | Grzegorz Bizon <grzegorz@gitlab.com> | 2018-05-07 15:02:14 +0000 |
---|---|---|
committer | Grzegorz Bizon <grzegorz@gitlab.com> | 2018-05-07 15:02:14 +0000 |
commit | 32009764527a89708e89fb547ce4086e75cd04d0 (patch) | |
tree | 608e50782275df4595652dc9805e761e6979c94d /spec | |
parent | aea8d02c284ba37e61bd5fbe4ce4245629e3a074 (diff) | |
parent | cffb3e6805ae8b2b3ee909c7561953b1d99bc1ea (diff) | |
download | gitlab-ce-32009764527a89708e89fb547ce4086e75cd04d0.tar.gz |
Merge branch 'backstage/gb/clean-up-pipeline-stages-migration' into 'master'
Cleanup pipeline build stage background migration
Closes #43854
See merge request gitlab-org/gitlab-ce!18778
Diffstat (limited to 'spec')
-rw-r--r-- | spec/migrations/cleanup_build_stage_migration_spec.rb | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/spec/migrations/cleanup_build_stage_migration_spec.rb b/spec/migrations/cleanup_build_stage_migration_spec.rb new file mode 100644 index 00000000000..4d4d02aaa94 --- /dev/null +++ b/spec/migrations/cleanup_build_stage_migration_spec.rb @@ -0,0 +1,53 @@ +require 'spec_helper' +require Rails.root.join('db', 'migrate', '20180420010616_cleanup_build_stage_migration.rb') + +describe CleanupBuildStageMigration, :migration, :sidekiq, :redis do + let(:migration) { spy('migration') } + + before do + allow(Gitlab::BackgroundMigration::MigrateBuildStage) + .to receive(:new).and_return(migration) + end + + context 'when there are pending background migrations' do + it 'processes pending jobs synchronously' do + Sidekiq::Testing.disable! do + BackgroundMigrationWorker + .perform_in(2.minutes, 'MigrateBuildStage', [1, 1]) + BackgroundMigrationWorker + .perform_async('MigrateBuildStage', [1, 1]) + + migrate! + + expect(migration).to have_received(:perform).with(1, 1).twice + end + end + end + + context 'when there are no background migrations pending' do + it 'does nothing' do + Sidekiq::Testing.disable! do + migrate! + + expect(migration).not_to have_received(:perform) + end + end + end + + context 'when there are still unmigrated builds present' do + let(:builds) { table('ci_builds') } + + before do + builds.create!(name: 'test:1', ref: 'master') + builds.create!(name: 'test:2', ref: 'master') + end + + it 'migrates stages sequentially in batches' do + expect(builds.all).to all(have_attributes(stage_id: nil)) + + migrate! + + expect(migration).to have_received(:perform).once + end + end +end |