-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathanalytics.capture.unit.tests.js
More file actions
339 lines (272 loc) · 14.1 KB
/
analytics.capture.unit.tests.js
File metadata and controls
339 lines (272 loc) · 14.1 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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
/**
* Module dependencies.
*/
import { jest, beforeEach, afterEach, describe, test, expect } from '@jest/globals';
/**
* Unit tests for AnalyticsService.capture() and enabled-flag behaviour.
*/
describe('Analytics capture() and enabled-flag:', () => {
let AnalyticsService;
let mockPostHogInstance;
beforeEach(async () => {
jest.resetModules();
mockPostHogInstance = {
capture: jest.fn(),
identify: jest.fn(),
groupIdentify: jest.fn(),
getFeatureFlag: jest.fn().mockResolvedValue(undefined),
isFeatureEnabled: jest.fn().mockResolvedValue(undefined),
shutdown: jest.fn().mockResolvedValue(undefined),
};
jest.unstable_mockModule('posthog-node', () => ({
PostHog: jest.fn().mockImplementation(() => mockPostHogInstance),
}));
});
afterEach(() => {
jest.restoreAllMocks();
});
// ─────────────────────────────────────────────────────────────────
// 1. enabled=false disables client creation
// ─────────────────────────────────────────────────────────────────
describe('enabled flag:', () => {
test('returns null client when enabled=false even if key is present', async () => {
jest.unstable_mockModule('../../../config/index.js', () => ({
default: { analytics: { posthog: { enabled: false, key: 'phc_test_key', host: 'https://eu.i.posthog.com' } } },
}));
const mod = await import('../analytics.js');
AnalyticsService = mod.default;
await AnalyticsService.init();
AnalyticsService.capture({ distinctId: 'user-1', event: 'test' });
const { PostHog } = await import('posthog-node');
expect(PostHog).not.toHaveBeenCalled();
expect(mockPostHogInstance.capture).not.toHaveBeenCalled();
});
test('returns null client when key is missing even if enabled=true', async () => {
jest.unstable_mockModule('../../../config/index.js', () => ({
default: { analytics: { posthog: { enabled: true } } },
}));
const mod = await import('../analytics.js');
AnalyticsService = mod.default;
await AnalyticsService.init();
AnalyticsService.capture({ distinctId: 'user-1', event: 'test' });
const { PostHog } = await import('posthog-node');
expect(PostHog).not.toHaveBeenCalled();
});
test('creates client when enabled=true and key is present', async () => {
jest.unstable_mockModule('../../../config/index.js', () => ({
default: { analytics: { posthog: { enabled: true, key: 'phc_test_key', host: 'https://eu.i.posthog.com' } } },
}));
const mod = await import('../analytics.js');
AnalyticsService = mod.default;
await AnalyticsService.init();
const { PostHog } = await import('posthog-node');
expect(PostHog).toHaveBeenCalledWith('phc_test_key', expect.objectContaining({ host: 'https://eu.i.posthog.com' }));
});
test('passes flushAt and flushInterval to PostHog constructor', async () => {
jest.unstable_mockModule('../../../config/index.js', () => ({
default: { analytics: { posthog: { enabled: true, key: 'phc_key', host: 'https://eu.i.posthog.com', flushAt: 20, flushInterval: 10000 } } },
}));
const mod = await import('../analytics.js');
AnalyticsService = mod.default;
await AnalyticsService.init();
const { PostHog } = await import('posthog-node');
expect(PostHog).toHaveBeenCalledWith('phc_key', {
host: 'https://eu.i.posthog.com',
flushAt: 20,
flushInterval: 10000,
});
});
test('singleton: two init() calls on the same module instance result in one PostHog client', async () => {
jest.unstable_mockModule('../../../config/index.js', () => ({
default: { analytics: { posthog: { enabled: true, key: 'phc_key', host: 'https://eu.i.posthog.com' } } },
}));
const mod = await import('../analytics.js');
AnalyticsService = mod.default;
await AnalyticsService.init();
await AnalyticsService.init(); // singleton guard: no-op, client already set
const { PostHog } = await import('posthog-node');
expect(PostHog).toHaveBeenCalledTimes(1);
});
});
// ─────────────────────────────────────────────────────────────────
// 2. capture() no-ops
// ─────────────────────────────────────────────────────────────────
describe('capture() no-ops:', () => {
test('is a no-op when client is null', async () => {
jest.unstable_mockModule('../../../config/index.js', () => ({
default: { analytics: { posthog: { enabled: false, key: 'phc_key' } } },
}));
const mod = await import('../analytics.js');
AnalyticsService = mod.default;
await AnalyticsService.init();
AnalyticsService.capture({ distinctId: 'user-1', event: 'some_event' });
expect(mockPostHogInstance.capture).not.toHaveBeenCalled();
});
test('is a no-op when distinctId is missing', async () => {
jest.unstable_mockModule('../../../config/index.js', () => ({
default: { analytics: { posthog: { enabled: true, key: 'phc_key', host: 'https://eu.i.posthog.com' } } },
}));
const mod = await import('../analytics.js');
AnalyticsService = mod.default;
await AnalyticsService.init();
AnalyticsService.capture({ event: 'some_event' });
expect(mockPostHogInstance.capture).not.toHaveBeenCalled();
});
test('is a no-op when event is missing', async () => {
jest.unstable_mockModule('../../../config/index.js', () => ({
default: { analytics: { posthog: { enabled: true, key: 'phc_key', host: 'https://eu.i.posthog.com' } } },
}));
const mod = await import('../analytics.js');
AnalyticsService = mod.default;
await AnalyticsService.init();
AnalyticsService.capture({ distinctId: 'user-1' });
expect(mockPostHogInstance.capture).not.toHaveBeenCalled();
});
});
// ─────────────────────────────────────────────────────────────────
// 3. capture() auto-injects app + env
// ─────────────────────────────────────────────────────────────────
describe('capture() property injection:', () => {
beforeEach(async () => {
jest.unstable_mockModule('../../../config/index.js', () => ({
default: { analytics: { posthog: { enabled: true, key: 'phc_key', host: 'https://eu.i.posthog.com', appTag: 'myapp' } } },
}));
const mod = await import('../analytics.js');
AnalyticsService = mod.default;
await AnalyticsService.init();
});
test('auto-injects app from appTag and env from NODE_ENV', async () => {
const origEnv = process.env.NODE_ENV;
process.env.NODE_ENV = 'test';
AnalyticsService.capture({ distinctId: 'user-1', event: 'my_event' });
expect(mockPostHogInstance.capture).toHaveBeenCalledWith({
distinctId: 'user-1',
event: 'my_event',
properties: { app: 'myapp', env: 'test', source: 'system' },
});
process.env.NODE_ENV = origEnv;
});
test('custom properties win over defaults', async () => {
AnalyticsService.capture({ distinctId: 'user-1', event: 'my_event', properties: { app: 'override', custom: 'val' } });
expect(mockPostHogInstance.capture).toHaveBeenCalledWith({
distinctId: 'user-1',
event: 'my_event',
properties: expect.objectContaining({ app: 'override', custom: 'val' }),
});
});
test('does not inject app when appTag is not configured', async () => {
jest.resetModules();
jest.unstable_mockModule('posthog-node', () => ({
PostHog: jest.fn().mockImplementation(() => mockPostHogInstance),
}));
jest.unstable_mockModule('../../../config/index.js', () => ({
default: { analytics: { posthog: { enabled: true, key: 'phc_key', host: 'https://eu.i.posthog.com' } } },
}));
const mod = await import('../analytics.js');
AnalyticsService = mod.default;
await AnalyticsService.init();
AnalyticsService.capture({ distinctId: 'user-1', event: 'my_event' });
const call = mockPostHogInstance.capture.mock.calls[0][0];
expect(call.properties).not.toHaveProperty('app');
expect(call.properties).toHaveProperty('env');
});
test('merges req.posthogContext (source + cli_version) into event properties', async () => {
AnalyticsService.capture({
distinctId: 'user-1',
event: 'my_event',
req: { posthogContext: { source: 'cli', cli_version: '1.2.3' } },
});
expect(mockPostHogInstance.capture).toHaveBeenCalledWith({
distinctId: 'user-1',
event: 'my_event',
properties: expect.objectContaining({ source: 'cli', cli_version: '1.2.3', app: 'myapp' }),
});
});
test('user-supplied properties win over req.posthogContext (precedence)', async () => {
AnalyticsService.capture({
distinctId: 'user-1',
event: 'my_event',
properties: { source: 'override' },
req: { posthogContext: { source: 'cli', cli_version: '1.2.3' } },
});
expect(mockPostHogInstance.capture).toHaveBeenCalledWith({
distinctId: 'user-1',
event: 'my_event',
properties: expect.objectContaining({ source: 'override', cli_version: '1.2.3' }),
});
});
test('absent req injects source="system" default (no cli_version)', async () => {
AnalyticsService.capture({ distinctId: 'user-1', event: 'my_event' });
const call = mockPostHogInstance.capture.mock.calls[0][0];
expect(call.properties).toHaveProperty('source', 'system');
expect(call.properties).not.toHaveProperty('cli_version');
});
});
// ─────────────────────────────────────────────────────────────────
// 4. shutdown idempotency
// ─────────────────────────────────────────────────────────────────
describe('shutdown idempotency:', () => {
test('two shutdown() calls invoke client.shutdown exactly once', async () => {
jest.unstable_mockModule('../../../config/index.js', () => ({
default: { analytics: { posthog: { enabled: true, key: 'phc_key', host: 'https://eu.i.posthog.com' } } },
}));
const mod = await import('../analytics.js');
AnalyticsService = mod.default;
await AnalyticsService.init();
await AnalyticsService.shutdown();
await AnalyticsService.shutdown();
expect(mockPostHogInstance.shutdown).toHaveBeenCalledTimes(1);
});
});
// ─────────────────────────────────────────────────────────────────
// 5. source attribution
// ─────────────────────────────────────────────────────────────────
describe('source attribution:', () => {
let AnalyticsService;
beforeEach(async () => {
jest.resetModules();
jest.unstable_mockModule('posthog-node', () => ({
PostHog: jest.fn().mockImplementation(() => mockPostHogInstance),
}));
jest.unstable_mockModule('../../../config/index.js', () => ({
default: { analytics: { posthog: { enabled: true, key: 'phc_test', host: 'https://eu.i.posthog.com', appTag: 'trawl' } } },
}));
const mod = await import('../analytics.js');
AnalyticsService = mod.default;
await AnalyticsService.init();
});
test('defaults to source="system" when no req, no explicit source', () => {
AnalyticsService.capture({ distinctId: 'u1', event: 'test' });
expect(mockPostHogInstance.capture).toHaveBeenCalledWith(expect.objectContaining({
properties: expect.objectContaining({ source: 'system' }),
}));
});
test('explicit source param wins over req.posthogContext', () => {
const req = { posthogContext: { source: 'web' } };
AnalyticsService.capture({ distinctId: 'u1', event: 'test', req, source: 'cron' });
expect(mockPostHogInstance.capture).toHaveBeenCalledWith(expect.objectContaining({
properties: expect.objectContaining({ source: 'cron' }),
}));
});
test('properties.source wins over req.posthogContext', () => {
const req = { posthogContext: { source: 'web' } };
AnalyticsService.capture({ distinctId: 'u1', event: 'test', req, properties: { source: 'stripe-webhook' } });
expect(mockPostHogInstance.capture).toHaveBeenCalledWith(expect.objectContaining({
properties: expect.objectContaining({ source: 'stripe-webhook' }),
}));
});
test('req.posthogContext.source wins over default', () => {
const req = { posthogContext: { source: 'cli', cli_version: '1.12.0' } };
AnalyticsService.capture({ distinctId: 'u1', event: 'test', req });
expect(mockPostHogInstance.capture).toHaveBeenCalledWith(expect.objectContaining({
properties: expect.objectContaining({ source: 'cli', cli_version: '1.12.0' }),
}));
});
test('explicit source param wins over properties.source', () => {
AnalyticsService.capture({ distinctId: 'u1', event: 'test', source: 'cron', properties: { source: 'web' } });
expect(mockPostHogInstance.capture).toHaveBeenCalledWith(expect.objectContaining({
properties: expect.objectContaining({ source: 'cron' }),
}));
});
});
});