summaryrefslogtreecommitdiff
path: root/spec/migrations/schedule_backfill_cluster_agents_has_vulnerabilities_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/migrations/schedule_backfill_cluster_agents_has_vulnerabilities_spec.rb')
-rw-r--r--spec/migrations/schedule_backfill_cluster_agents_has_vulnerabilities_spec.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/spec/migrations/schedule_backfill_cluster_agents_has_vulnerabilities_spec.rb b/spec/migrations/schedule_backfill_cluster_agents_has_vulnerabilities_spec.rb
new file mode 100644
index 00000000000..675cc332e69
--- /dev/null
+++ b/spec/migrations/schedule_backfill_cluster_agents_has_vulnerabilities_spec.rb
@@ -0,0 +1,24 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+require_migration!
+
+RSpec.describe ScheduleBackfillClusterAgentsHasVulnerabilities do
+ let_it_be(:batched_migration) { described_class::MIGRATION }
+
+ it 'schedules background jobs for each batch of cluster agents' do
+ reversible_migration do |migration|
+ migration.before -> {
+ expect(batched_migration).not_to have_scheduled_batched_migration
+ }
+
+ migration.after -> {
+ expect(batched_migration).to have_scheduled_batched_migration(
+ table_name: :cluster_agents,
+ column_name: :id,
+ interval: described_class::DELAY_INTERVAL
+ )
+ }
+ end
+ end
+end