forked from snowplow/snowplow-javascript-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscreen_summary.test.ts
More file actions
215 lines (177 loc) · 6.89 KB
/
Copy pathscreen_summary.test.ts
File metadata and controls
215 lines (177 loc) · 6.89 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
import { addTracker, SharedState, EventStore, BrowserTracker } from '@snowplow/browser-tracker-core';
import { ScreenTrackingPlugin, trackListItemView, trackScreenView, trackScrollChanged } from '../src';
import { buildSelfDescribingEvent, newInMemoryEventStore } from '@snowplow/tracker-core';
import { BACKGROUND_EVENT_SCHEMA, SCREEN_END_EVENT_SCHEMA, SCREEN_SUMMARY_ENTITY_SCHEMA, SCREEN_VIEW_EVENT_SCHEMA } from '../src/schemata';
describe('Screen summary tracking', () => {
let idx = 1;
let eventStore: EventStore;
let tracker: BrowserTracker | null;
beforeAll(() => {
jest.useFakeTimers();
});
afterAll(() => {
jest.clearAllTimers();
});
describe('Enabled screen engagement tracking', () => {
beforeEach(() => {
eventStore = newInMemoryEventStore({});
const customFetch = async () => new Response(null, { status: 500 });
tracker = addTracker(`sp${idx++}`, `sp${idx++}`, 'js-3.0.0', '', new SharedState(), {
plugins: [ScreenTrackingPlugin()],
eventStore,
customFetch,
contexts: { webPage: false },
});
});
it('adds a screen summary entity to screen end event', async () => {
jest.setSystemTime(new Date('2022-04-17T00:00:00.000Z'));
trackScreenView({ name: 'Home' });
jest.setSystemTime(new Date('2022-04-17T00:00:15.000Z'));
trackScreenView({ name: 'About' });
const [, { ue_pr, co }] = await eventStore.getAllPayloads();
const event = JSON.parse(ue_pr as string).data;
expect(event.schema).toBe(SCREEN_END_EVENT_SCHEMA);
const context = JSON.parse(co as string).data;
const screenSummary = context.find((c: any) => c.schema === SCREEN_SUMMARY_ENTITY_SCHEMA);
expect(screenSummary.data).toMatchObject({
foreground_sec: 15,
});
jest.setSystemTime(new Date('2022-04-17T00:00:45.000Z'));
trackScreenView({ name: 'Contact' });
const [, , , { ue_pr: ue_pr2, co: co2 }] = await eventStore.getAllPayloads();
const event2 = JSON.parse(ue_pr2 as string).data;
expect(event2.schema).toBe(SCREEN_END_EVENT_SCHEMA);
const context2 = JSON.parse(co2 as string).data;
const screenSummary2 = context2.find((c: any) => c.schema === SCREEN_SUMMARY_ENTITY_SCHEMA);
expect(screenSummary2.data).toMatchObject({
foreground_sec: 30,
});
});
it('tracks both background and foreground time', async () => {
jest.setSystemTime(new Date('2022-04-17T00:00:00.000Z'));
trackScreenView({ name: 'Home' });
jest.setSystemTime(new Date('2022-04-17T00:00:15.000Z'));
tracker?.core.track(
buildSelfDescribingEvent({
event: {
schema: BACKGROUND_EVENT_SCHEMA,
data: {},
},
})
);
jest.setSystemTime(new Date('2022-04-17T00:00:25.000Z'));
trackScreenView({ name: 'About' });
const [, { ue_pr, co }, { ue_pr: ue_pr2, co: co2 }] = await eventStore.getAllPayloads();
const event = JSON.parse(ue_pr as string).data;
expect(event.schema).toBe(BACKGROUND_EVENT_SCHEMA);
const context = JSON.parse(co as string).data;
const screenSummary = context.find((c: any) => c.schema === SCREEN_SUMMARY_ENTITY_SCHEMA);
expect(screenSummary.data).toMatchObject({
foreground_sec: 15,
});
const event2 = JSON.parse(ue_pr2 as string).data;
expect(event2.schema).toBe(SCREEN_END_EVENT_SCHEMA);
const context2 = JSON.parse(co2 as string).data;
const screenSummary2 = context2.find((c: any) => c.schema === SCREEN_SUMMARY_ENTITY_SCHEMA);
expect(screenSummary2.data).toMatchObject({
foreground_sec: 15,
background_sec: 10,
});
});
it('adds scroll information to screen summary entity', async () => {
trackScreenView({ name: 'Home' });
trackScrollChanged({
yOffset: 10,
xOffset: 0,
viewHeight: 1000,
viewWidth: 100,
contentHeight: 2000,
contentWidth: 1000,
});
trackScrollChanged({
yOffset: 500,
xOffset: 10,
viewHeight: 1000,
viewWidth: 100,
contentHeight: 2000,
contentWidth: 1000,
});
trackScreenView({ name: 'About' });
const payloads = await eventStore.getAllPayloads();
expect(payloads.length).toBe(3);
const [, { co }] = payloads;
const context = JSON.parse(co as string).data;
const screenSummary = context.find((c: any) => c.schema === SCREEN_SUMMARY_ENTITY_SCHEMA);
expect(screenSummary.data).toMatchObject({
min_x_offset: 0,
max_x_offset: 10 + 100,
min_y_offset: 10,
max_y_offset: 500 + 1000,
content_height: 2000,
content_width: 1000,
});
});
it('adds list item view information to screen summary entity', async () => {
trackScreenView({ name: 'Home' });
trackListItemView({
index: 0,
itemsCount: 10,
});
trackListItemView({
index: 5,
itemsCount: 10,
});
trackScreenView({ name: 'About' });
const payloads = await eventStore.getAllPayloads();
expect(payloads.length).toBe(3);
const [, { co }] = payloads;
const context = JSON.parse(co as string).data;
const screenSummary = context.find((c: any) => c.schema === SCREEN_SUMMARY_ENTITY_SCHEMA);
expect(screenSummary.data).toMatchObject({
last_item_index: 5,
items_count: 10,
});
});
});
describe('Disabled screen engagement tracking', () => {
beforeEach(() => {
eventStore = newInMemoryEventStore({});
const customFetch = async () => new Response(null, { status: 500 });
tracker = addTracker(`sp${idx++}`, `sp${idx++}`, 'js-3.0.0', '', new SharedState(), {
plugins: [ScreenTrackingPlugin({ screenEngagementAutotracking: false })],
eventStore,
customFetch,
contexts: { webPage: false },
});
});
it('does not add a screen end event', async () => {
jest.setSystemTime(new Date('2022-04-17T00:00:00.000Z'));
trackScreenView({ name: 'Home' });
jest.setSystemTime(new Date('2022-04-17T00:00:15.000Z'));
trackScreenView({ name: 'About' });
const payloads = await eventStore.getAllPayloads();
expect(payloads.length).toBe(2);
const [, { ue_pr }] = payloads;
const event = JSON.parse(ue_pr as string).data;
expect(event.schema).toBe(SCREEN_VIEW_EVENT_SCHEMA);
});
it('tracks scroll and list item view events', async () => {
trackScreenView({ name: 'Home' });
trackScrollChanged({
yOffset: 10,
xOffset: 0,
viewHeight: 1000,
viewWidth: 100,
contentHeight: 2000,
contentWidth: 1000,
});
trackListItemView({
index: 0,
itemsCount: 10,
});
trackScreenView({ name: 'About' });
const payloads = await eventStore.getAllPayloads();
expect(payloads.length).toBe(4);
});
});
});