Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-06-18 14:18:50 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-06-18 14:18:50 +0300
commit8c7f4e9d5f36cff46365a7f8c4b9c21578c1e781 (patch)
treea77e7fe7a93de11213032ed4ab1f33a3db51b738 /spec/lib/gitlab/instrumentation/redis_spec.rb
parent00b35af3db1abfe813a778f643dad221aad51fca (diff)
Add latest changes from gitlab-org/gitlab@13-1-stable-ee
Diffstat (limited to 'spec/lib/gitlab/instrumentation/redis_spec.rb')
-rw-r--r--spec/lib/gitlab/instrumentation/redis_spec.rb114
1 files changed, 114 insertions, 0 deletions
diff --git a/spec/lib/gitlab/instrumentation/redis_spec.rb b/spec/lib/gitlab/instrumentation/redis_spec.rb
new file mode 100644
index 00000000000..8311c4f5bbb
--- /dev/null
+++ b/spec/lib/gitlab/instrumentation/redis_spec.rb
@@ -0,0 +1,114 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+describe Gitlab::Instrumentation::Redis do
+ def stub_storages(method, value)
+ described_class::STORAGES.each do |storage|
+ allow(storage).to receive(method) { value }
+ end
+ end
+
+ shared_examples 'aggregation of redis storage data' do |method|
+ describe "#{method} sum" do
+ it "sums data from all Redis storages" do
+ amount = 0.3
+
+ stub_storages(method, amount)
+
+ expect(described_class.public_send(method)).to eq(described_class::STORAGES.size * amount)
+ end
+ end
+ end
+
+ it_behaves_like 'aggregation of redis storage data', :get_request_count
+ it_behaves_like 'aggregation of redis storage data', :query_time
+ it_behaves_like 'aggregation of redis storage data', :read_bytes
+ it_behaves_like 'aggregation of redis storage data', :write_bytes
+
+ describe '.known_payload_keys' do
+ it 'returns all known payload keys' do
+ expected_keys = [
+ :redis_calls,
+ :redis_duration_s,
+ :redis_read_bytes,
+ :redis_write_bytes,
+ :redis_action_cable_calls,
+ :redis_action_cable_duration_s,
+ :redis_action_cable_read_bytes,
+ :redis_action_cable_write_bytes,
+ :redis_cache_calls,
+ :redis_cache_duration_s,
+ :redis_cache_read_bytes,
+ :redis_cache_write_bytes,
+ :redis_queues_calls,
+ :redis_queues_duration_s,
+ :redis_queues_read_bytes,
+ :redis_queues_write_bytes,
+ :redis_shared_state_calls,
+ :redis_shared_state_duration_s,
+ :redis_shared_state_read_bytes,
+ :redis_shared_state_write_bytes
+ ]
+
+ expect(described_class.known_payload_keys).to eq(expected_keys)
+ end
+
+ it 'does not call storage calculation methods' do
+ described_class::STORAGES.each do |storage|
+ expect(storage).not_to receive(:get_request_count)
+ expect(storage).not_to receive(:query_time)
+ expect(storage).not_to receive(:read_bytes)
+ expect(storage).not_to receive(:write_bytes)
+ end
+
+ described_class.known_payload_keys
+ end
+ end
+
+ describe '.payload', :request_store do
+ before do
+ Gitlab::Redis::Cache.with { |redis| redis.set('cache-test', 321) }
+ Gitlab::Redis::SharedState.with { |redis| redis.set('shared-state-test', 123) }
+ end
+
+ it 'returns payload filtering out zeroed values' do
+ expected_payload = {
+ # Aggregated results
+ redis_calls: 2,
+ redis_duration_s: be >= 0,
+ redis_read_bytes: be >= 0,
+ redis_write_bytes: be >= 0,
+
+ # Cache results
+ redis_cache_calls: 1,
+ redis_cache_duration_s: be >= 0,
+ redis_cache_read_bytes: be >= 0,
+ redis_cache_write_bytes: be >= 0,
+
+ # Shared state results
+ redis_shared_state_calls: 1,
+ redis_shared_state_duration_s: be >= 0,
+ redis_shared_state_read_bytes: be >= 0,
+ redis_shared_state_write_bytes: be >= 0
+ }
+
+ expect(described_class.payload).to include(expected_payload)
+ expect(described_class.payload.keys).to match_array(expected_payload.keys)
+ end
+ end
+
+ describe '.detail_store' do
+ it 'returns a flat array of detail stores with the storage name added to each item' do
+ details_row = { cmd: 'GET foo', duration: 1 }
+
+ stub_storages(:detail_store, [details_row])
+
+ expect(described_class.detail_store)
+ .to contain_exactly(details_row.merge(storage: 'ActionCable'),
+ details_row.merge(storage: 'Cache'),
+ details_row.merge(storage: 'Queues'),
+ details_row.merge(storage: 'SharedState'))
+ end
+ end
+end