2021-11-18 22:05:49 +05:30
|
|
|
import { SNOWPLOW_JS_SOURCE, GOOGLE_ANALYTICS_ID_COOKIE_NAME } from '~/tracking/constants';
|
2021-09-04 01:27:46 +05:30
|
|
|
import getStandardContext from '~/tracking/get_standard_context';
|
2021-11-18 22:05:49 +05:30
|
|
|
import { setCookie, removeCookie } from '~/lib/utils/common_utils';
|
|
|
|
|
|
|
|
const TEST_GA_ID = 'GA1.2.345678901.234567891';
|
|
|
|
const TEST_BASE_DATA = {
|
|
|
|
source: SNOWPLOW_JS_SOURCE,
|
|
|
|
google_analytics_id: '',
|
|
|
|
extra: {},
|
|
|
|
};
|
2021-09-04 01:27:46 +05:30
|
|
|
|
|
|
|
describe('~/tracking/get_standard_context', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
window.gl = window.gl || {};
|
|
|
|
window.gl.snowplowStandardContext = {};
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns default object if called without server context', () => {
|
|
|
|
expect(getStandardContext()).toStrictEqual({
|
|
|
|
schema: undefined,
|
2021-11-18 22:05:49 +05:30
|
|
|
data: TEST_BASE_DATA,
|
2021-09-04 01:27:46 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns filled object if called with server context', () => {
|
|
|
|
window.gl.snowplowStandardContext = {
|
|
|
|
schema: 'iglu:com.gitlab/gitlab_standard',
|
|
|
|
data: {
|
|
|
|
environment: 'testing',
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
expect(getStandardContext()).toStrictEqual({
|
|
|
|
schema: 'iglu:com.gitlab/gitlab_standard',
|
|
|
|
data: {
|
2021-11-18 22:05:49 +05:30
|
|
|
...TEST_BASE_DATA,
|
2021-09-04 01:27:46 +05:30
|
|
|
environment: 'testing',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('always overrides `source` property', () => {
|
|
|
|
window.gl.snowplowStandardContext = {
|
|
|
|
data: {
|
|
|
|
source: 'custom_source',
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
expect(getStandardContext().data.source).toBe(SNOWPLOW_JS_SOURCE);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('accepts optional `extra` property', () => {
|
|
|
|
const extra = { foo: 'bar' };
|
|
|
|
|
2023-04-23 21:23:45 +05:30
|
|
|
expect(getStandardContext({ extra }).data.extra).toStrictEqual(extra);
|
2021-09-04 01:27:46 +05:30
|
|
|
});
|
2021-11-18 22:05:49 +05:30
|
|
|
|
|
|
|
describe('with Google Analytics cookie present', () => {
|
|
|
|
afterEach(() => {
|
|
|
|
removeCookie(GOOGLE_ANALYTICS_ID_COOKIE_NAME);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('appends Google Analytics ID', () => {
|
|
|
|
setCookie(GOOGLE_ANALYTICS_ID_COOKIE_NAME, TEST_GA_ID);
|
|
|
|
expect(getStandardContext().data.google_analytics_id).toBe(TEST_GA_ID);
|
|
|
|
});
|
|
|
|
});
|
2021-09-04 01:27:46 +05:30
|
|
|
});
|