debian-mirror-gitlab/spec/lib/gitlab/usage_data_counters/search_counter_spec.rb

32 lines
856 B
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe Gitlab::UsageDataCounters::SearchCounter, :clean_gitlab_redis_shared_state do
2020-06-23 00:09:42 +05:30
shared_examples_for 'usage counter with totals' do |counter|
it 'increments counter and returns total count' do
expect(described_class.read(counter)).to eq(0)
2019-10-12 21:52:04 +05:30
2020-06-23 00:09:42 +05:30
2.times { described_class.count(counter) }
2019-10-12 21:52:04 +05:30
2020-06-23 00:09:42 +05:30
expect(described_class.read(counter)).to eq(2)
end
end
context 'all_searches counter' do
it_behaves_like 'usage counter with totals', :all_searches
end
context 'navbar_searches counter' do
it_behaves_like 'usage counter with totals', :navbar_searches
2019-10-12 21:52:04 +05:30
end
2021-02-22 17:27:13 +05:30
describe '.fetch_supported_event' do
subject { described_class.fetch_supported_event(event_name) }
let(:event_name) { 'all_searches' }
it { is_expected.to eq 'all_searches' }
end
2019-10-12 21:52:04 +05:30
end