a0b14c40dc
Notes call `#after_note_created` and `#after_note_destroyed` on their noteable in callbacks, so the noteable can perform tasks particular to them, like cache expiry. This is in preparation of the EE-specific class `DesignManagement::Design` clearing its `user_notes_count` cache when its note are created or destroyed. Refactoring Rspec behaviour testing of a counter caching service into a shared example. https://gitlab.com/gitlab-org/gitlab-ee/issues/13353
32 lines
736 B
Ruby
32 lines
736 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe Users::KeysCountService, :use_clean_rails_memory_store_caching do
|
|
let(:user) { create(:user) }
|
|
subject { described_class.new(user) }
|
|
|
|
it_behaves_like 'a counter caching service'
|
|
|
|
describe '#count' do
|
|
before do
|
|
create(:personal_key, user: user)
|
|
end
|
|
|
|
it 'returns the number of SSH keys as an Integer' do
|
|
expect(subject.count).to eq(1)
|
|
end
|
|
end
|
|
|
|
describe '#uncached_count' do
|
|
it 'returns the number of SSH keys' do
|
|
expect(subject.uncached_count).to be_zero
|
|
end
|
|
end
|
|
|
|
describe '#cache_key' do
|
|
it 'returns the cache key' do
|
|
expect(subject.cache_key).to eq("users/key-count-service/#{user.id}")
|
|
end
|
|
end
|
|
end
|