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