-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror-formatting.test.ts
More file actions
509 lines (417 loc) · 15.1 KB
/
error-formatting.test.ts
File metadata and controls
509 lines (417 loc) · 15.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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
import { describe, it, expect } from 'vitest';
import {
formatError,
formatCommandError,
formatValidationError,
formatWarning,
formatInfo,
formatDeprecationWarning,
ID_VALIDATION_ERRORS,
SCHEMA_VALIDATION_ERRORS,
type ErrorContext,
type WarningContext,
type InfoContext,
} from './error-formatting.js';
describe('error-formatting', () => {
describe('formatError', () => {
it('should format basic error message', () => {
const ctx: ErrorContext = {
command: 'build',
context: 'module validation',
issue: 'missing required field',
suggestion: 'add the missing field',
};
const result = formatError(ctx);
expect(result).toBe(
'[ERROR] build: module validation - missing required field (add the missing field)'
);
});
it('should include file path when provided', () => {
const ctx: ErrorContext = {
command: 'validate',
context: 'schema validation',
issue: 'invalid structure',
suggestion: 'fix the structure',
filePath: '/path/to/module.module.yml',
};
const result = formatError(ctx);
expect(result).toBe(
'[ERROR] validate: schema validation - invalid structure (fix the structure)\n File: /path/to/module.module.yml'
);
});
it('should include key path when provided', () => {
const ctx: ErrorContext = {
command: 'build',
context: 'field validation',
issue: 'wrong type',
suggestion: 'use correct type',
keyPath: 'metadata.name',
};
const result = formatError(ctx);
expect(result).toBe(
'[ERROR] build: field validation - wrong type (use correct type)\n Key path: metadata.name'
);
});
it('should include section reference when provided', () => {
const ctx: ErrorContext = {
command: 'validate',
context: 'specification compliance',
issue: 'invalid format',
suggestion: 'follow the specification',
sectionReference: 'Section 4.2',
};
const result = formatError(ctx);
expect(result).toBe(
'[ERROR] validate: specification compliance - invalid format (follow the specification)\n Reference: UMS v2.2 Section 4.2'
);
});
it('should include all optional fields when provided', () => {
const ctx: ErrorContext = {
command: 'build',
context: 'module processing',
issue: 'validation failed',
suggestion: 'check the documentation',
filePath: '/modules/test.module.yml',
keyPath: 'frontmatter.schema',
sectionReference: 'Section 3.1',
};
const result = formatError(ctx);
expect(result).toBe(
'[ERROR] build: module processing - validation failed (check the documentation)\n File: /modules/test.module.yml\n Key path: frontmatter.schema\n Reference: UMS v2.2 Section 3.1'
);
});
it('should handle empty strings in context', () => {
const ctx: ErrorContext = {
command: '',
context: '',
issue: '',
suggestion: '',
};
const result = formatError(ctx);
expect(result).toBe('[ERROR] : - ()');
});
});
describe('formatCommandError', () => {
it('should format basic command error', () => {
const result = formatCommandError('list', 'operation failed');
expect(result).toBe('[ERROR] list: operation failed');
});
it('should include file path when provided', () => {
const result = formatCommandError(
'build',
'compilation failed',
'/path/to/persona.persona.yml'
);
expect(result).toBe(
'[ERROR] build: compilation failed\n File: /path/to/persona.persona.yml'
);
});
it('should handle empty command and message', () => {
const result = formatCommandError('', '');
expect(result).toBe('[ERROR] : ');
});
it('should handle undefined file path', () => {
const result = formatCommandError(
'search',
'no results found',
undefined
);
expect(result).toBe('[ERROR] search: no results found');
});
});
describe('formatValidationError', () => {
it('should format validation error with all required fields', () => {
const result = formatValidationError(
'validate',
'/modules/test.module.yml',
'missing name field',
'add a name field'
);
expect(result).toBe(
'[ERROR] validate: validation failed - missing name field (add a name field)\n File: /modules/test.module.yml'
);
});
it('should include key path when provided', () => {
const result = formatValidationError(
'build',
'/modules/test.module.yml',
'invalid type',
'use correct type',
'frontmatter.schema'
);
expect(result).toBe(
'[ERROR] build: validation failed - invalid type (use correct type)\n File: /modules/test.module.yml\n Key path: frontmatter.schema'
);
});
it('should include section reference when provided', () => {
const result = formatValidationError(
'validate',
'/modules/test.module.yml',
'invalid format',
'follow specification',
undefined,
'Section 4.1'
);
expect(result).toBe(
'[ERROR] validate: validation failed - invalid format (follow specification)\n File: /modules/test.module.yml\n Reference: UMS v2.2 Section 4.1'
);
});
it('should include all optional parameters', () => {
const result = formatValidationError(
'build',
'/modules/test.module.yml',
'schema violation',
'fix schema',
'metadata.description',
'Section 3.2'
);
expect(result).toBe(
'[ERROR] build: validation failed - schema violation (fix schema)\n File: /modules/test.module.yml\n Key path: metadata.description\n Reference: UMS v2.2 Section 3.2'
);
});
});
describe('formatWarning', () => {
it('should format basic warning message', () => {
const ctx: WarningContext = {
command: 'build',
context: 'module processing',
issue: 'deprecated feature used',
};
const result = formatWarning(ctx);
expect(result).toBe(
'[WARN] build: module processing - deprecated feature used (continuing...)'
);
});
it('should include file path when provided', () => {
const ctx: WarningContext = {
command: 'validate',
context: 'compatibility check',
issue: 'using old format',
filePath: '/modules/legacy.module.yml',
};
const result = formatWarning(ctx);
expect(result).toBe(
'[WARN] validate: compatibility check - using old format (continuing...)\n File: /modules/legacy.module.yml'
);
});
it('should handle empty strings', () => {
const ctx: WarningContext = {
command: '',
context: '',
issue: '',
};
const result = formatWarning(ctx);
expect(result).toBe('[WARN] : - (continuing...)');
});
});
describe('formatInfo', () => {
it('should format info message', () => {
const ctx: InfoContext = {
command: 'list',
message: 'found 5 modules',
};
const result = formatInfo(ctx);
expect(result).toBe('[INFO] list: found 5 modules');
});
it('should handle empty strings', () => {
const ctx: InfoContext = {
command: '',
message: '',
};
const result = formatInfo(ctx);
expect(result).toBe('[INFO] : ');
});
});
describe('formatDeprecationWarning', () => {
it('should format deprecation warning without replacement', () => {
const result = formatDeprecationWarning(
'build',
'foundation/old-logic/deprecated-module'
);
expect(result).toBe(
"[WARN] build: Module 'foundation/old-logic/deprecated-module' is deprecated. This module may be removed in a future version."
);
});
it('should format deprecation warning with replacement', () => {
const result = formatDeprecationWarning(
'validate',
'foundation/old-logic/deprecated-module',
'foundation/logic/new-module'
);
expect(result).toBe(
"[WARN] validate: Module 'foundation/old-logic/deprecated-module' is deprecated and has been replaced by 'foundation/logic/new-module'. Please update your persona file to use the replacement module."
);
});
it('should include file path when provided', () => {
const result = formatDeprecationWarning(
'build',
'foundation/old-logic/deprecated-module',
'foundation/logic/new-module',
'/personas/test.persona.yml'
);
expect(result).toBe(
"[WARN] build: Module 'foundation/old-logic/deprecated-module' is deprecated and has been replaced by 'foundation/logic/new-module'. Please update your persona file to use the replacement module.\n File: /personas/test.persona.yml"
);
});
it('should handle empty module ID', () => {
const result = formatDeprecationWarning('build', '');
expect(result).toBe(
"[WARN] build: Module '' is deprecated. This module may be removed in a future version."
);
});
});
describe('ID_VALIDATION_ERRORS', () => {
describe('invalidFormat', () => {
it('should return formatted invalid format message', () => {
const result = ID_VALIDATION_ERRORS.invalidFormat('Invalid-ID');
expect(result).toBe(
"Module ID 'Invalid-ID' does not match required format. Must be lowercase with optional path segments separated by '/'"
);
});
});
describe('emptySegment', () => {
it('should return formatted empty segment message', () => {
const result = ID_VALIDATION_ERRORS.emptySegment('foundation//module');
expect(result).toBe(
"Module ID 'foundation//module' contains empty segments (double slashes or leading/trailing slashes)"
);
});
});
describe('invalidCharacters', () => {
it('should return formatted invalid characters message', () => {
const result = ID_VALIDATION_ERRORS.invalidCharacters(
'foundation/logic/test_module'
);
expect(result).toBe(
"Module ID 'foundation/logic/test_module' contains invalid characters. Only lowercase letters, numbers, and hyphens are allowed"
);
});
});
describe('uppercaseCharacters', () => {
it('should return formatted uppercase characters message', () => {
const result = ID_VALIDATION_ERRORS.uppercaseCharacters(
'Foundation/logic/module'
);
expect(result).toBe(
"Module ID 'Foundation/logic/module' contains uppercase characters. All segments must be lowercase"
);
});
});
describe('invalidModuleName', () => {
it('should return formatted invalid module name message', () => {
const result = ID_VALIDATION_ERRORS.invalidModuleName('-invalid-start');
expect(result).toBe(
"Module name '-invalid-start' is invalid. Must start with a letter or number and contain only lowercase letters, numbers, and hyphens"
);
});
});
});
describe('SCHEMA_VALIDATION_ERRORS', () => {
describe('missingField', () => {
it('should return formatted missing field message', () => {
const result = SCHEMA_VALIDATION_ERRORS.missingField('name');
expect(result).toBe("Required field 'name' is missing");
});
});
describe('wrongType', () => {
it('should return formatted wrong type message', () => {
const result = SCHEMA_VALIDATION_ERRORS.wrongType(
'description',
'string',
'number'
);
expect(result).toBe("Field 'description' must be string, got number");
});
});
describe('wrongSchemaVersion', () => {
it('should return formatted wrong schema version message', () => {
const result = SCHEMA_VALIDATION_ERRORS.wrongSchemaVersion('0.5');
expect(result).toBe(
"Schema version must be '2.0', '2.1', or '2.2', got '0.5'"
);
});
});
describe('undeclaredDirective', () => {
it('should return formatted undeclared directive message', () => {
const declared = ['goal', 'process', 'constraints'];
const result = SCHEMA_VALIDATION_ERRORS.undeclaredDirective(
'invalid',
declared
);
expect(result).toBe(
"Directive 'invalid' is not declared. Declared directives: goal, process, constraints"
);
});
it('should handle empty declared array', () => {
const result = SCHEMA_VALIDATION_ERRORS.undeclaredDirective('test', []);
expect(result).toBe(
"Directive 'test' is not declared. Declared directives: "
);
});
});
describe('missingRequiredDirective', () => {
it('should return formatted missing required directive message', () => {
const result =
SCHEMA_VALIDATION_ERRORS.missingRequiredDirective('goal');
expect(result).toBe("Required directive 'goal' is missing from body");
});
});
describe('invalidDirectiveType', () => {
it('should return formatted invalid directive type message', () => {
const result = SCHEMA_VALIDATION_ERRORS.invalidDirectiveType(
'goal',
'string'
);
expect(result).toBe("Directive 'goal' must be string");
});
});
describe('duplicateModuleId', () => {
it('should return formatted duplicate module ID message', () => {
const result = SCHEMA_VALIDATION_ERRORS.duplicateModuleId(
'foundation/logic/reasoning',
'core-group'
);
expect(result).toBe(
"Module ID 'foundation/logic/reasoning' appears multiple times in group 'core-group'. Each ID must be unique within a group."
);
});
});
});
describe('Edge Cases and Error Handling', () => {
it('should handle null and undefined values gracefully', () => {
const ctx: ErrorContext = {
command: 'test',
context: 'null test',
issue: 'null issue',
suggestion: 'handle nulls',
};
const result = formatError(ctx);
expect(result).toBe(
'[ERROR] test: null test - null issue (handle nulls)'
);
});
it('should handle very long messages', () => {
const longMessage = 'a'.repeat(1000);
const ctx: ErrorContext = {
command: 'test',
context: longMessage,
issue: longMessage,
suggestion: longMessage,
};
const result = formatError(ctx);
expect(result).toContain(longMessage);
expect(result.length).toBeGreaterThan(3000);
});
it('should handle special characters in messages', () => {
const specialChars = 'test with "quotes" and \n newlines \t tabs';
const ctx: ErrorContext = {
command: 'test',
context: specialChars,
issue: specialChars,
suggestion: specialChars,
};
const result = formatError(ctx);
expect(result).toContain(specialChars);
});
});
});