debian-mirror-gitlab/spec/lib/gitlab/cache/metrics_spec.rb

103 lines
2.6 KiB
Ruby
Raw Normal View History

2023-01-13 00:05:48 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Gitlab::Cache::Metrics do
2023-04-23 21:23:45 +05:30
subject(:metrics) { described_class.new(metadata) }
let(:metadata) do
Gitlab::Cache::Metadata.new(
2023-01-13 00:05:48 +05:30
caller_id: caller_id,
cache_identifier: cache_identifier,
feature_category: feature_category,
backing_resource: backing_resource
)
end
let(:caller_id) { 'caller-id' }
let(:cache_identifier) { 'ApplicationController#show' }
let(:feature_category) { :source_code_management }
let(:backing_resource) { :unknown }
let(:counter_mock) { instance_double(Prometheus::Client::Counter) }
before do
allow(Gitlab::Metrics).to receive(:counter)
.with(
:redis_hit_miss_operations_total,
'Hit/miss Redis cache counter'
).and_return(counter_mock)
end
describe '#increment_cache_hit' do
subject { metrics.increment_cache_hit }
it 'increments number of hits' do
expect(counter_mock)
.to receive(:increment)
.with(
{
caller_id: caller_id,
cache_identifier: cache_identifier,
feature_category: feature_category,
backing_resource: backing_resource,
cache_hit: true
}
).once
subject
end
end
describe '#increment_cache_miss' do
subject { metrics.increment_cache_miss }
it 'increments number of misses' do
expect(counter_mock)
.to receive(:increment)
.with(
{
caller_id: caller_id,
cache_identifier: cache_identifier,
feature_category: feature_category,
backing_resource: backing_resource,
cache_hit: false
}
).once
subject
end
end
describe '#observe_cache_generation' do
subject do
metrics.observe_cache_generation { action }
end
let(:action) { 'action' }
let(:histogram_mock) { instance_double(Prometheus::Client::Histogram) }
before do
allow(Gitlab::Metrics::System).to receive(:monotonic_time).and_return(100.0, 500.0)
end
it 'updates histogram metric' do
expect(Gitlab::Metrics).to receive(:histogram).with(
:redis_cache_generation_duration_seconds,
'Duration of Redis cache generation',
{
caller_id: caller_id,
cache_identifier: cache_identifier,
feature_category: feature_category,
backing_resource: backing_resource
},
[0, 1, 5]
).and_return(histogram_mock)
expect(histogram_mock).to receive(:observe).with({}, 400.0)
is_expected.to eq(action)
end
end
end