-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvalidateEventStructure.test.ts
More file actions
296 lines (244 loc) · 7.41 KB
/
validateEventStructure.test.ts
File metadata and controls
296 lines (244 loc) · 7.41 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
import { validateEventStructure } from './validateEventStructure';
describe('validateEventStructure', () => {
describe('Basic type validation', () => {
test('should reject null payload', () => {
const result = validateEventStructure(null);
expect(result.isValid).toBe(false);
expect(result.error).toBe('Invalid payload type: null');
});
test('should reject array payload', () => {
const result = validateEventStructure([]);
expect(result.isValid).toBe(false);
expect(result.error).toContain('expected object, got array');
});
test('should reject string payload', () => {
const result = validateEventStructure('invalid');
expect(result.isValid).toBe(false);
expect(result.error).toContain('expected object, got string');
});
test('should reject number payload', () => {
const result = validateEventStructure(123);
expect(result.isValid).toBe(false);
expect(result.error).toContain('expected object, got number');
});
test('should reject undefined payload', () => {
const result = validateEventStructure(undefined);
expect(result.isValid).toBe(false);
expect(result.error).toContain('expected object, got undefined');
});
});
describe('Required fields validation', () => {
test('should reject payload without title', () => {
const result = validateEventStructure({
backtrace: [],
});
expect(result.isValid).toBe(false);
expect(result.error).toContain('Event title is required');
});
test('should reject payload with empty title', () => {
const result = validateEventStructure({
title: '',
});
expect(result.isValid).toBe(false);
expect(result.error).toContain('Event title is required');
});
test('should reject payload with non-string title', () => {
const result = validateEventStructure({
title: 123,
});
expect(result.isValid).toBe(false);
expect(result.error).toContain('title');
});
test('should accept payload with only title', () => {
const result = validateEventStructure({
title: 'Error occurred',
});
expect(result.isValid).toBe(true);
expect(result.error).toBeUndefined();
});
});
describe('Optional fields validation', () => {
test('should accept valid payload with all optional fields', () => {
const result = validateEventStructure({
title: 'TypeError: Cannot read property',
type: 'TypeError',
backtrace: [
{
file: '/path/to/file.js',
line: 42,
column: 10,
function: 'myFunction',
},
],
breadcrumbs: [
{
timestamp: Date.now(),
type: 'navigation',
message: 'User navigated to /home',
},
],
release: 'v1.0.0',
user: {
id: 'user123',
name: 'John Doe',
},
context: {
customKey: 'customValue',
},
addons: {
vue: {
version: '3.0.0',
},
},
catcherVersion: '3.2.0',
});
expect(result.isValid).toBe(true);
expect(result.error).toBeUndefined();
});
test('should accept payload with optional backtrace', () => {
const result = validateEventStructure({
title: 'Error',
backtrace: [
{
file: 'file.js',
line: 1,
},
],
});
expect(result.isValid).toBe(true);
});
test('should accept payload with optional breadcrumbs', () => {
const result = validateEventStructure({
title: 'Error',
breadcrumbs: [
{
timestamp: 1234567890,
message: 'User clicked button',
},
],
});
expect(result.isValid).toBe(true);
});
test('should accept payload with optional user', () => {
const result = validateEventStructure({
title: 'Error',
user: {
id: 'user123',
},
});
expect(result.isValid).toBe(true);
});
test('should accept payload with context as object', () => {
const result = validateEventStructure({
title: 'Error',
context: {
key: 'value',
},
});
expect(result.isValid).toBe(true);
});
test('should accept payload with context as string', () => {
const result = validateEventStructure({
title: 'Error',
context: 'string context',
});
expect(result.isValid).toBe(true);
});
test('should accept payload with addons', () => {
const result = validateEventStructure({
title: 'Error',
addons: {
vue: {
componentName: 'MyComponent',
},
},
});
expect(result.isValid).toBe(true);
});
});
describe('Type validation for optional fields', () => {
test('should reject backtrace if not array', () => {
const result = validateEventStructure({
title: 'Error',
backtrace: 'invalid',
});
expect(result.isValid).toBe(false);
expect(result.error).toContain('backtrace');
});
test('should reject breadcrumbs if not array', () => {
const result = validateEventStructure({
title: 'Error',
breadcrumbs: 'invalid',
});
expect(result.isValid).toBe(false);
expect(result.error).toContain('breadcrumbs');
});
test('should reject breadcrumbs with missing timestamp', () => {
const result = validateEventStructure({
title: 'Error',
breadcrumbs: [
{
message: 'test',
},
],
});
expect(result.isValid).toBe(false);
expect(result.error).toContain('timestamp');
});
test('should reject release if not string', () => {
const result = validateEventStructure({
title: 'Error',
release: 123,
});
expect(result.isValid).toBe(false);
expect(result.error).toContain('release');
});
test('should reject type if not string', () => {
const result = validateEventStructure({
title: 'Error',
type: 123,
});
expect(result.isValid).toBe(false);
expect(result.error).toContain('type');
});
});
describe('Edge cases', () => {
test('should accept empty backtrace array', () => {
const result = validateEventStructure({
title: 'Error',
backtrace: [],
});
expect(result.isValid).toBe(true);
});
test('should accept empty breadcrumbs array', () => {
const result = validateEventStructure({
title: 'Error',
breadcrumbs: [],
});
expect(result.isValid).toBe(true);
});
test('should accept empty context object', () => {
const result = validateEventStructure({
title: 'Error',
context: {},
});
expect(result.isValid).toBe(true);
});
test('should accept empty addons object', () => {
const result = validateEventStructure({
title: 'Error',
addons: {},
});
expect(result.isValid).toBe(true);
});
test('should handle multiple validation errors', () => {
const result = validateEventStructure({
title: 123,
backtrace: 'invalid',
breadcrumbs: 'invalid',
});
expect(result.isValid).toBe(false);
expect(result.error).toBeTruthy();
});
});
});