Welcome to mirror list, hosted at ThFree Co, Russian Federation.

get_standard_context_spec.js « tracking « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b7bdc56b801d59eff016dda879f0ef75d3889818 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import { SNOWPLOW_JS_SOURCE } from '~/tracking/constants';
import getStandardContext from '~/tracking/get_standard_context';

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,
      data: {
        source: SNOWPLOW_JS_SOURCE,
        extra: {},
      },
    });
  });

  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: {
        environment: 'testing',
        source: SNOWPLOW_JS_SOURCE,
        extra: {},
      },
    });
  });

  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' };

    expect(getStandardContext({ extra }).data.extra).toBe(extra);
  });
});