# frozen_string_literal: true require 'spec_helper' RSpec.describe Gitlab::Usage::ServicePing::PayloadKeysProcessor do context 'with an object metric' do let(:payload) { { counts: { issues: 1, boards: 1 }, topology: { duration_d: 100 }, redis_hll_counters: { search: { i_search_total_monthly: 1 } } } } it 'returns the payload keys that have a metric definition' do expect(described_class.new(payload).key_paths).to match_array(['counts.issues', 'counts.boards', 'topology', 'redis_hll_counters.search.i_search_total_monthly']) end end context 'with a missing metric definition' do let(:payload) { { counts: { issues: 1, boards: 1 }, missing_definition: 1, topology: { duration_d: 100 } } } it 'returns the payload keys that have a metric definition' do expect(described_class.new(payload).key_paths).to match_array(['counts.issues', 'counts.boards', 'topology']) end end context 'with array metric' do let(:payload) { { counts: { issues: 1, boards: 1 }, settings: { collected_data_categories: ['standard'] }, topology: { duration_d: 100 } } } it 'returns the payload keys that have a metric definition' do expect(described_class.new(payload).key_paths).to match_array(['counts.issues', 'counts.boards', 'topology', 'settings.collected_data_categories']) end end context 'missing_instrumented_metrics_key_paths' do let(:payload) do { counts: { issues: 1, boards: 1 }, topology: { duration_d: 100 }, redis_hll_counters: { search: { i_search_total_monthly: 1 } } } end let(:metrics_definitions) do [ instance_double(::Gitlab::Usage::MetricDefinition, key: 'counts.issues'), instance_double(::Gitlab::Usage::MetricDefinition, key: 'topology'), instance_double(::Gitlab::Usage::MetricDefinition, key: 'redis_hll_counters.search.i_search_total_monthly'), instance_double(::Gitlab::Usage::MetricDefinition, key: 'settings.collected_data_categories') ] end before do allow(::Gitlab::Usage::MetricDefinition).to receive(:with_instrumentation_class).and_return(metrics_definitions) end it 'returns the missing keys' do expect(described_class.new(payload).missing_instrumented_metrics_key_paths).to match_array(['settings.collected_data_categories']) end end end