debian-mirror-gitlab/spec/controllers/concerns/redis_tracking_spec.rb

135 lines
2.7 KiB
Ruby
Raw Normal View History

2020-11-24 15:15:51 +05:30
# frozen_string_literal: true
require "spec_helper"
RSpec.describe RedisTracking do
2021-10-27 15:23:28 +05:30
include TrackingHelpers
2020-11-24 15:15:51 +05:30
let(:user) { create(:user) }
controller(ApplicationController) do
include RedisTracking
skip_before_action :authenticate_user!, only: :show
2021-04-29 21:17:54 +05:30
track_redis_hll_event(:index, :show, name: 'g_compliance_approval_rules',
if: [:custom_condition_one?, :custom_condition_two?]) { |controller| controller.get_custom_id }
2020-11-24 15:15:51 +05:30
def index
render html: 'index'
end
def new
render html: 'new'
end
def show
render html: 'show'
end
2021-04-29 21:17:54 +05:30
def get_custom_id
'some_custom_id'
end
2021-01-03 14:25:43 +05:30
private
2020-11-24 15:15:51 +05:30
2021-01-03 14:25:43 +05:30
def custom_condition_one?
true
end
2020-11-24 15:15:51 +05:30
2021-01-03 14:25:43 +05:30
def custom_condition_two?
true
2020-11-24 15:15:51 +05:30
end
end
2021-01-03 14:25:43 +05:30
def expect_tracking
expect(Gitlab::UsageDataCounters::HLLRedisCounter).to receive(:track_event)
2021-03-08 18:12:59 +05:30
.with('g_compliance_approval_rules', values: instance_of(String))
2021-01-03 14:25:43 +05:30
end
def expect_no_tracking
expect(Gitlab::UsageDataCounters::HLLRedisCounter).not_to receive(:track_event)
end
2021-03-11 19:13:27 +05:30
context 'when user is logged in' do
2020-11-24 15:15:51 +05:30
before do
2021-03-11 19:13:27 +05:30
sign_in(user)
2020-11-24 15:15:51 +05:30
end
2021-03-11 19:13:27 +05:30
it 'tracks the event' do
expect_tracking
2020-11-24 15:15:51 +05:30
2021-03-11 19:13:27 +05:30
get :index
end
2021-01-03 14:25:43 +05:30
2021-03-11 19:13:27 +05:30
it 'tracks the event if DNT is not enabled' do
2021-10-27 15:23:28 +05:30
stub_do_not_track('0')
2021-01-03 14:25:43 +05:30
2021-03-11 19:13:27 +05:30
expect_tracking
2021-01-03 14:25:43 +05:30
2021-03-11 19:13:27 +05:30
get :index
end
2021-01-03 14:25:43 +05:30
2021-03-11 19:13:27 +05:30
it 'does not track the event if DNT is enabled' do
2021-10-27 15:23:28 +05:30
stub_do_not_track('1')
2021-01-03 14:25:43 +05:30
2021-03-11 19:13:27 +05:30
expect_no_tracking
2021-01-03 14:25:43 +05:30
2021-03-11 19:13:27 +05:30
get :index
end
2021-01-03 14:25:43 +05:30
2021-03-11 19:13:27 +05:30
it 'does not track the event if the format is not HTML' do
expect_no_tracking
2021-01-03 14:25:43 +05:30
2021-03-11 19:13:27 +05:30
get :index, format: :json
end
2021-01-03 14:25:43 +05:30
2021-03-11 19:13:27 +05:30
it 'does not track the event if a custom condition returns false' do
expect(controller).to receive(:custom_condition_two?).and_return(false)
2021-01-03 14:25:43 +05:30
2021-03-11 19:13:27 +05:30
expect_no_tracking
2021-01-03 14:25:43 +05:30
2021-03-11 19:13:27 +05:30
get :index
end
2021-01-03 14:25:43 +05:30
2021-03-11 19:13:27 +05:30
it 'does not track the event for untracked actions' do
expect_no_tracking
2021-01-03 14:25:43 +05:30
2021-03-11 19:13:27 +05:30
get :new
2020-11-24 15:15:51 +05:30
end
2021-03-11 19:13:27 +05:30
end
2020-11-24 15:15:51 +05:30
2021-04-29 21:17:54 +05:30
context 'when user is not logged in' do
2021-03-11 19:13:27 +05:30
let(:visitor_id) { SecureRandom.uuid }
2020-11-24 15:15:51 +05:30
2021-04-29 21:17:54 +05:30
it 'tracks the event when there is a visitor id' do
2021-03-11 19:13:27 +05:30
cookies[:visitor_id] = { value: visitor_id, expires: 24.months }
2020-11-24 15:15:51 +05:30
2021-03-11 19:13:27 +05:30
expect_tracking
2020-11-24 15:15:51 +05:30
2021-04-29 21:17:54 +05:30
get :show, params: { id: 1 }
2020-11-24 15:15:51 +05:30
end
2021-03-11 19:13:27 +05:30
end
2020-11-24 15:15:51 +05:30
2021-03-11 19:13:27 +05:30
context 'when user is not logged in and there is no visitor_id' do
it 'does not track the event' do
expect_no_tracking
2020-11-24 15:15:51 +05:30
2021-03-11 19:13:27 +05:30
get :index
2020-11-24 15:15:51 +05:30
end
2021-04-29 21:17:54 +05:30
it 'tracks the event when there is custom id' do
expect_tracking
get :show, params: { id: 1 }
end
it 'does not track the event when there is no custom id' do
expect(controller).to receive(:get_custom_id).and_return(nil)
expect_no_tracking
get :show, params: { id: 2 }
end
2020-11-24 15:15:51 +05:30
end
end