2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-06-01 12:20:20 +00:00
|
|
|
|
2019-12-04 14:29:43 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe ActiveJobLockCleanupJob, type: :job do
|
|
|
|
|
|
|
|
context 'when ActiveJobLock records older than a day are present' do
|
|
|
|
|
|
|
|
before do
|
|
|
|
create(:active_job_lock, created_at: 1.day.ago)
|
|
|
|
travel 1.minute
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'cleans up those jobs' do
|
|
|
|
expect { described_class.perform_now }.to change(ActiveJobLock, :count).by(-1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when recent ActiveJobLock records are present' do
|
|
|
|
|
|
|
|
before do
|
|
|
|
create(:active_job_lock, created_at: 1.minute.ago)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'keeps those jobs' do
|
|
|
|
expect { described_class.perform_now }.not_to change(ActiveJobLock, :count)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|