summaryrefslogtreecommitdiff
path: root/spec/migrations/migrate_stages_statuses_spec.rb
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-07-05 10:54:48 +0200
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-07-05 10:54:48 +0200
commit6c477d5b9496829eb5cb56ef32a0dd813be7dc16 (patch)
treeb744bfdbeed906271aac62917abf9d44f58d56c3 /spec/migrations/migrate_stages_statuses_spec.rb
parentc5ede858eab81e662c48761749ff2fa22dbfa9df (diff)
downloadgitlab-ce-6c477d5b9496829eb5cb56ef32a0dd813be7dc16.tar.gz
Move stages status migration to the background workerbackstage/gb/migrate-stages-statuses
Diffstat (limited to 'spec/migrations/migrate_stages_statuses_spec.rb')
-rw-r--r--spec/migrations/migrate_stages_statuses_spec.rb28
1 files changed, 23 insertions, 5 deletions
diff --git a/spec/migrations/migrate_stages_statuses_spec.rb b/spec/migrations/migrate_stages_statuses_spec.rb
index 478ddad262a..8463583cef3 100644
--- a/spec/migrations/migrate_stages_statuses_spec.rb
+++ b/spec/migrations/migrate_stages_statuses_spec.rb
@@ -11,6 +11,8 @@ describe MigrateStagesStatuses, :migration do
failed: 4, canceled: 5, skipped: 6, manual: 7 }
before do
+ stub_const("#{described_class.name}::BATCH_SIZE", 2)
+
projects.create!(id: 1, name: 'gitlab1', path: 'gitlab1')
projects.create!(id: 2, name: 'gitlab2', path: 'gitlab2')
@@ -31,15 +33,31 @@ describe MigrateStagesStatuses, :migration do
end
it 'correctly migrates stages statuses' do
- expect(stages.where(status: nil).count).to eq 3
+ Sidekiq::Testing.inline! do
+ expect(stages.where(status: nil).count).to eq 3
- migrate!
+ migrate!
- expect(stages.where(status: nil)).to be_empty
- expect(stages.all.order('id ASC').pluck(:status))
- .to eq [STATUSES[:running], STATUSES[:failed], STATUSES[:success]]
+ expect(stages.where(status: nil)).to be_empty
+ expect(stages.all.order('id ASC').pluck(:status))
+ .to eq [STATUSES[:running], STATUSES[:failed], STATUSES[:success]]
+ end
end
+ it 'correctly schedules background migrations' do
+ Sidekiq::Testing.fake! do
+ Timecop.freeze do
+ migrate!
+
+ expect(described_class::MIGRATION).to be_scheduled_migration(5.minutes, 1)
+ expect(described_class::MIGRATION).to be_scheduled_migration(5.minutes, 2)
+ expect(described_class::MIGRATION).to be_scheduled_migration(10.minutes, 3)
+ expect(BackgroundMigrationWorker.jobs.size).to eq 3
+ end
+ end
+ end
+
+
def create_job(project:, pipeline:, stage:, status:, **opts)
stages = { test: 1, build: 2, deploy: 3}