~cytrogen/masto-fe

ref: b9e2eb5184f3f2c92836f6aec68d0500e8de23ae masto-fe/spec/lib/vacuum/backups_vacuum_spec.rb -rw-r--r-- 684 bytes
b9e2eb51 — renovate[bot] Update dependency @material-design-icons/svg to v0.14.12 (#26832) 2 years ago
                                                                                
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
# frozen_string_literal: true

require 'rails_helper'

RSpec.describe Vacuum::BackupsVacuum do
  subject { described_class.new(retention_period) }

  let(:retention_period) { 7.days }

  describe '#perform' do
    let!(:expired_backup) { Fabricate(:backup, created_at: (retention_period + 1.day).ago) }
    let!(:current_backup) { Fabricate(:backup) }

    before do
      subject.perform
    end

    it 'deletes backups past the retention period' do
      expect { expired_backup.reload }.to raise_error ActiveRecord::RecordNotFound
    end

    it 'does not delete backups within the retention period' do
      expect { current_backup.reload }.to_not raise_error
    end
  end
end