~cytrogen/masto-fe

ref: b9e2eb5184f3f2c92836f6aec68d0500e8de23ae masto-fe/spec/lib/vacuum/system_keys_vacuum_spec.rb -rw-r--r-- 624 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
# frozen_string_literal: true

require 'rails_helper'

RSpec.describe Vacuum::SystemKeysVacuum do
  subject { described_class.new }

  describe '#perform' do
    let!(:expired_system_key) { Fabricate(:system_key, created_at: (SystemKey::ROTATION_PERIOD * 4).ago) }
    let!(:current_system_key) { Fabricate(:system_key) }

    before do
      subject.perform
    end

    it 'deletes the expired key' do
      expect { expired_system_key.reload }.to raise_error ActiveRecord::RecordNotFound
    end

    it 'does not delete the current key' do
      expect { current_system_key.reload }.to_not raise_error
    end
  end
end