2019-10-12 21:52:04 +05:30
|
|
|
import { setHTMLFixture } from './helpers/fixtures';
|
2019-12-04 20:38:33 +05:30
|
|
|
import Tracking, { initUserTracking } from '~/tracking';
|
2019-10-12 21:52:04 +05:30
|
|
|
|
|
|
|
describe('Tracking', () => {
|
2019-12-04 20:38:33 +05:30
|
|
|
let snowplowSpy;
|
2019-12-21 20:55:43 +05:30
|
|
|
let bindDocumentSpy;
|
2019-12-04 20:38:33 +05:30
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
beforeEach(() => {
|
|
|
|
window.snowplow = window.snowplow || (() => {});
|
2019-12-04 20:38:33 +05:30
|
|
|
window.snowplowOptions = {
|
|
|
|
namespace: '_namespace_',
|
|
|
|
hostname: 'app.gitfoo.com',
|
|
|
|
cookieDomain: '.gitfoo.com',
|
|
|
|
};
|
|
|
|
snowplowSpy = jest.spyOn(window, 'snowplow');
|
2019-10-12 21:52:04 +05:30
|
|
|
});
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
describe('initUserTracking', () => {
|
2019-12-21 20:55:43 +05:30
|
|
|
beforeEach(() => {
|
|
|
|
bindDocumentSpy = jest.spyOn(Tracking, 'bindDocument').mockImplementation(() => null);
|
|
|
|
});
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
it('calls through to get a new tracker with the expected options', () => {
|
|
|
|
initUserTracking();
|
|
|
|
expect(snowplowSpy).toHaveBeenCalledWith('newTracker', '_namespace_', 'app.gitfoo.com', {
|
|
|
|
namespace: '_namespace_',
|
|
|
|
hostname: 'app.gitfoo.com',
|
|
|
|
cookieDomain: '.gitfoo.com',
|
|
|
|
appId: '',
|
|
|
|
userFingerprint: false,
|
|
|
|
respectDoNotTrack: true,
|
|
|
|
forceSecureTracker: true,
|
|
|
|
eventMethod: 'post',
|
|
|
|
contexts: { webPage: true },
|
|
|
|
formTracking: false,
|
|
|
|
linkClickTracking: false,
|
|
|
|
});
|
|
|
|
});
|
2019-10-12 21:52:04 +05:30
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
it('should activate features based on what has been enabled', () => {
|
|
|
|
initUserTracking();
|
|
|
|
expect(snowplowSpy).toHaveBeenCalledWith('enableActivityTracking', 30, 30);
|
|
|
|
expect(snowplowSpy).toHaveBeenCalledWith('trackPageView');
|
|
|
|
expect(snowplowSpy).not.toHaveBeenCalledWith('enableFormTracking');
|
|
|
|
expect(snowplowSpy).not.toHaveBeenCalledWith('enableLinkClickTracking');
|
|
|
|
|
|
|
|
window.snowplowOptions = Object.assign({}, window.snowplowOptions, {
|
|
|
|
formTracking: true,
|
|
|
|
linkClickTracking: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
initUserTracking();
|
|
|
|
expect(snowplowSpy).toHaveBeenCalledWith('enableFormTracking');
|
|
|
|
expect(snowplowSpy).toHaveBeenCalledWith('enableLinkClickTracking');
|
|
|
|
});
|
2019-12-21 20:55:43 +05:30
|
|
|
|
|
|
|
it('binds the document event handling', () => {
|
|
|
|
initUserTracking();
|
|
|
|
expect(bindDocumentSpy).toHaveBeenCalled();
|
|
|
|
});
|
2019-12-04 20:38:33 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
describe('.event', () => {
|
|
|
|
afterEach(() => {
|
|
|
|
window.doNotTrack = undefined;
|
|
|
|
navigator.doNotTrack = undefined;
|
|
|
|
navigator.msDoNotTrack = undefined;
|
2019-10-12 21:52:04 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('tracks to snowplow (our current tracking system)', () => {
|
|
|
|
Tracking.event('_category_', '_eventName_', { label: '_label_' });
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
expect(snowplowSpy).toHaveBeenCalledWith(
|
|
|
|
'trackStructEvent',
|
|
|
|
'_category_',
|
|
|
|
'_eventName_',
|
|
|
|
'_label_',
|
|
|
|
undefined,
|
|
|
|
undefined,
|
|
|
|
undefined,
|
|
|
|
);
|
2019-10-12 21:52:04 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('skips tracking if snowplow is unavailable', () => {
|
|
|
|
window.snowplow = false;
|
|
|
|
Tracking.event('_category_', '_eventName_');
|
|
|
|
|
|
|
|
expect(snowplowSpy).not.toHaveBeenCalled();
|
|
|
|
});
|
2019-12-04 20:38:33 +05:30
|
|
|
|
|
|
|
it('skips tracking if the user does not want to be tracked (general spec)', () => {
|
|
|
|
window.doNotTrack = '1';
|
|
|
|
Tracking.event('_category_', '_eventName_');
|
|
|
|
|
|
|
|
expect(snowplowSpy).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('skips tracking if the user does not want to be tracked (firefox legacy)', () => {
|
|
|
|
navigator.doNotTrack = 'yes';
|
|
|
|
Tracking.event('_category_', '_eventName_');
|
|
|
|
|
|
|
|
expect(snowplowSpy).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('skips tracking if the user does not want to be tracked (IE legacy)', () => {
|
|
|
|
navigator.msDoNotTrack = '1';
|
|
|
|
Tracking.event('_category_', '_eventName_');
|
|
|
|
|
|
|
|
expect(snowplowSpy).not.toHaveBeenCalled();
|
|
|
|
});
|
2019-10-12 21:52:04 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
describe('tracking interface events', () => {
|
2019-12-21 20:55:43 +05:30
|
|
|
let eventSpy;
|
|
|
|
|
|
|
|
const trigger = (selector, eventName = 'click') => {
|
|
|
|
const event = new Event(eventName, { bubbles: true });
|
|
|
|
document.querySelector(selector).dispatchEvent(event);
|
|
|
|
};
|
2019-10-12 21:52:04 +05:30
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
eventSpy = jest.spyOn(Tracking, 'event');
|
2019-12-21 20:55:43 +05:30
|
|
|
Tracking.bindDocument('_category_'); // only happens once
|
2019-10-12 21:52:04 +05:30
|
|
|
setHTMLFixture(`
|
|
|
|
<input data-track-event="click_input1" data-track-label="_label_" value="_value_"/>
|
|
|
|
<input data-track-event="click_input2" data-track-value="_value_override_" value="_value_"/>
|
|
|
|
<input type="checkbox" data-track-event="toggle_checkbox" value="_value_" checked/>
|
|
|
|
<input class="dropdown" data-track-event="toggle_dropdown"/>
|
2019-12-21 20:55:43 +05:30
|
|
|
<div data-track-event="nested_event"><span class="nested"></span></div>
|
2019-10-12 21:52:04 +05:30
|
|
|
`);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('binds to clicks on elements matching [data-track-event]', () => {
|
2019-12-21 20:55:43 +05:30
|
|
|
trigger('[data-track-event="click_input1"]');
|
2019-10-12 21:52:04 +05:30
|
|
|
|
|
|
|
expect(eventSpy).toHaveBeenCalledWith('_category_', 'click_input1', {
|
|
|
|
label: '_label_',
|
|
|
|
value: '_value_',
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('allows value override with the data-track-value attribute', () => {
|
2019-12-21 20:55:43 +05:30
|
|
|
trigger('[data-track-event="click_input2"]');
|
2019-10-12 21:52:04 +05:30
|
|
|
|
|
|
|
expect(eventSpy).toHaveBeenCalledWith('_category_', 'click_input2', {
|
|
|
|
value: '_value_override_',
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('handles checkbox values correctly', () => {
|
2019-12-21 20:55:43 +05:30
|
|
|
trigger('[data-track-event="toggle_checkbox"]'); // checking
|
2019-10-12 21:52:04 +05:30
|
|
|
|
|
|
|
expect(eventSpy).toHaveBeenCalledWith('_category_', 'toggle_checkbox', {
|
|
|
|
value: false,
|
|
|
|
});
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
trigger('[data-track-event="toggle_checkbox"]'); // unchecking
|
2019-10-12 21:52:04 +05:30
|
|
|
|
|
|
|
expect(eventSpy).toHaveBeenCalledWith('_category_', 'toggle_checkbox', {
|
|
|
|
value: '_value_',
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('handles bootstrap dropdowns', () => {
|
2019-12-21 20:55:43 +05:30
|
|
|
trigger('[data-track-event="toggle_dropdown"]', 'show.bs.dropdown'); // showing
|
2019-10-12 21:52:04 +05:30
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
expect(eventSpy).toHaveBeenCalledWith('_category_', 'toggle_dropdown_show', {});
|
2019-10-12 21:52:04 +05:30
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
trigger('[data-track-event="toggle_dropdown"]', 'hide.bs.dropdown'); // hiding
|
|
|
|
|
|
|
|
expect(eventSpy).toHaveBeenCalledWith('_category_', 'toggle_dropdown_hide', {});
|
|
|
|
});
|
2019-10-12 21:52:04 +05:30
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
it('handles nested elements inside an element with tracking', () => {
|
|
|
|
trigger('span.nested', 'click');
|
2019-10-12 21:52:04 +05:30
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
expect(eventSpy).toHaveBeenCalledWith('_category_', 'nested_event', {});
|
2019-10-12 21:52:04 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|