debian-mirror-gitlab/spec/services/keys/last_used_service_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

76 lines
2.2 KiB
Ruby
Raw Normal View History

2019-07-31 22:56:46 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
require 'spec_helper'
2023-05-27 22:25:52 +05:30
RSpec.describe Keys::LastUsedService, feature_category: :source_code_management do
2018-03-17 18:26:18 +05:30
describe '#execute', :clean_gitlab_redis_shared_state do
2023-07-09 08:55:56 +05:30
context 'when it has not been used recently' do
let(:key) { create(:key, last_used_at: 1.year.ago) }
let(:time) { Time.zone.now }
2018-03-17 18:26:18 +05:30
2023-07-09 08:55:56 +05:30
it 'updates the key' do
travel_to(time) { described_class.new(key).execute }
2018-03-17 18:26:18 +05:30
2023-07-09 08:55:56 +05:30
expect(key.reload.last_used_at).to be_like_time(time)
end
2018-03-17 18:26:18 +05:30
end
2023-07-09 08:55:56 +05:30
context 'when it has been used recently' do
let(:time) { 1.minute.ago }
let(:key) { create(:key, last_used_at: time) }
2018-03-17 18:26:18 +05:30
2023-07-09 08:55:56 +05:30
it 'does not update the key' do
described_class.new(key).execute
2018-03-17 18:26:18 +05:30
2023-07-09 08:55:56 +05:30
expect(key.reload.last_used_at).to be_like_time(time)
end
2018-03-17 18:26:18 +05:30
end
2023-07-09 08:55:56 +05:30
end
describe '#execute_async', :clean_gitlab_redis_shared_state do
context 'when it has not been used recently' do
let(:key) { create(:key, last_used_at: 1.year.ago) }
let(:time) { Time.zone.now }
2018-03-17 18:26:18 +05:30
2023-07-09 08:55:56 +05:30
it 'schedules a job to update last_used_at' do
expect(::SshKeys::UpdateLastUsedAtWorker).to receive(:perform_async)
2018-03-17 18:26:18 +05:30
2023-07-09 08:55:56 +05:30
travel_to(time) { described_class.new(key).execute_async }
end
end
context 'when it has been used recently' do
let(:key) { create(:key, last_used_at: 1.minute.ago) }
it 'does not schedule a job to update last_used_at' do
expect(::SshKeys::UpdateLastUsedAtWorker).not_to receive(:perform_async)
described_class.new(key).execute_async
end
2018-03-17 18:26:18 +05:30
end
end
describe '#update?', :clean_gitlab_redis_shared_state do
it 'returns true when no last used timestamp is present' do
key = build(:key, last_used_at: nil)
service = described_class.new(key)
expect(service.update?).to eq(true)
end
it 'returns true when the key needs to be updated' do
key = build(:key, last_used_at: 1.year.ago)
service = described_class.new(key)
expect(service.update?).to eq(true)
end
it 'returns false when the key does not yet need to be updated' do
key = build(:key, last_used_at: 1.minute.ago)
service = described_class.new(key)
expect(service.update?).to eq(false)
end
end
end