forked from promptfoo/promptfoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtelemetry.test.ts
136 lines (118 loc) · 4 KB
/
telemetry.test.ts
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
import packageJson from '../package.json';
import { fetchWithTimeout } from '../src/fetch';
import { Telemetry } from '../src/telemetry';
jest.mock('../src/fetch', () => ({
fetchWithTimeout: jest.fn(),
}));
jest.mock('../package.json', () => ({
version: '1.0.0',
}));
describe('Telemetry', () => {
let originalEnv: NodeJS.ProcessEnv;
beforeEach(() => {
originalEnv = process.env;
process.env = { ...originalEnv };
jest.mocked(fetchWithTimeout).mockClear();
});
afterEach(() => {
process.env = originalEnv;
});
it('should record only the "telemetry disabled" event when telemetry is disabled', () => {
process.env.PROMPTFOO_DISABLE_TELEMETRY = '1';
const telemetry = new Telemetry();
telemetry.record('eval_ran', { foo: 'bar' });
expect(telemetry['events']).toHaveLength(1);
expect(telemetry['events'][0]).toEqual({
event: 'feature_used',
packageVersion: packageJson.version,
properties: { feature: 'telemetry disabled' },
});
});
it('should record events when telemetry is enabled', () => {
delete process.env.PROMPTFOO_DISABLE_TELEMETRY;
const telemetry = new Telemetry();
telemetry.record('eval_ran', { foo: 'bar' });
expect(telemetry['events']).toHaveLength(1);
expect(telemetry['events'][0]).toEqual({
event: 'eval_ran',
packageVersion: packageJson.version,
properties: { foo: 'bar' },
});
});
it('should send events and clear events array when telemetry is enabled and send is called', async () => {
delete process.env.PROMPTFOO_DISABLE_TELEMETRY;
jest.mocked(fetchWithTimeout).mockResolvedValue({ ok: true } as any);
const telemetry = new Telemetry();
telemetry.record('eval_ran', { foo: 'bar' });
await telemetry.send();
expect(fetchWithTimeout).toHaveBeenCalledWith(
'https://api.promptfoo.dev/telemetry',
{
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify([
{ event: 'eval_ran', packageVersion: '1.0.0', properties: { foo: 'bar' } },
]),
},
1000,
);
expect(telemetry['events']).toHaveLength(0);
});
it('should send only the "telemetry disabled" event when telemetry is disabled and send is called', async () => {
process.env.PROMPTFOO_DISABLE_TELEMETRY = '1';
jest.mocked(fetchWithTimeout).mockResolvedValue({ ok: true } as any);
const telemetry = new Telemetry();
telemetry.record('eval_ran', { foo: 'bar' });
await telemetry.send();
expect(fetchWithTimeout).toHaveBeenCalledWith(
'https://api.promptfoo.dev/telemetry',
{
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify([
{
event: 'feature_used',
packageVersion: '1.0.0',
properties: { feature: 'telemetry disabled' },
},
]),
},
1000,
);
expect(telemetry['events']).toHaveLength(0);
});
it('should send telemetry disabled event only once', async () => {
process.env.PROMPTFOO_DISABLE_TELEMETRY = '1';
jest.mocked(fetchWithTimeout).mockResolvedValue({ ok: true } as any);
const telemetry = new Telemetry();
telemetry.record('eval_ran', { foo: 'bar' });
await telemetry.send();
expect(fetchWithTimeout).toHaveBeenCalledTimes(1);
expect(fetchWithTimeout).toHaveBeenCalledWith(
'https://api.promptfoo.dev/telemetry',
{
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify([
{
event: 'feature_used',
packageVersion: '1.0.0',
properties: { feature: 'telemetry disabled' },
},
]),
},
1000,
);
// Record another event and send again
telemetry.record('command_used', { command: 'test' });
await telemetry.send();
// Ensure fetchWithTimeout was not called again
expect(fetchWithTimeout).toHaveBeenCalledTimes(1);
});
});