2023-02-22 01:55:31 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-09-27 03:08:19 +02:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe Vacuum::BackupsVacuum do
|
|
|
|
subject { described_class.new(retention_period) }
|
|
|
|
|
2023-02-20 05:24:14 +01:00
|
|
|
let(:retention_period) { 7.days }
|
|
|
|
|
2022-09-27 03:08:19 +02:00
|
|
|
describe '#perform' do
|
|
|
|
let!(:expired_backup) { Fabricate(:backup, created_at: (retention_period + 1.day).ago) }
|
|
|
|
let!(:current_backup) { Fabricate(:backup) }
|
|
|
|
|
2024-10-15 14:54:56 +02:00
|
|
|
it 'deletes backups past the retention period but preserves those within the period' do
|
2022-09-27 03:08:19 +02:00
|
|
|
subject.perform
|
|
|
|
|
2024-10-15 14:54:56 +02:00
|
|
|
expect { expired_backup.reload }
|
|
|
|
.to raise_error ActiveRecord::RecordNotFound
|
|
|
|
expect { current_backup.reload }
|
|
|
|
.to_not raise_error
|
2022-09-27 03:08:19 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|