summaryrefslogtreecommitdiff
path: root/spec/migrations/20220929213730_schedule_delete_orphaned_operational_vulnerabilities_spec.rb
blob: 9220b5e8a955dccdf2e295b2898f6b8b479b004d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# frozen_string_literal: true

require 'spec_helper'
require_migration!

RSpec.describe ScheduleDeleteOrphanedOperationalVulnerabilities do
  let_it_be(:migration) { described_class.new }
  let_it_be(:post_migration) { described_class::MIGRATION }

  describe '#up' do
    it 'schedules background jobs for each batch of vulnerabilities' do
      migration.up

      expect(post_migration).to(
        have_scheduled_batched_migration(
          table_name: :vulnerabilities,
          column_name: :id,
          interval: described_class::INTERVAL,
          batch_size: described_class::BATCH_SIZE
        )
      )
    end
  end

  describe '#down' do
    it 'deletes all batched migration records' do
      migration.down

      expect(post_migration).not_to have_scheduled_batched_migration
    end
  end
end