-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
513 lines (485 loc) · 11.5 KB
/
types.ts
File metadata and controls
513 lines (485 loc) · 11.5 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
510
511
512
513
/**
* CTRF TypeScript Types
* Generated from the CTRF JSON Schema specification
*/
// ============================================================================
// Core Types
// ============================================================================
/**
* The root CTRF report object
*
* @group Core Types
*/
export interface CTRFReport {
/** Must be 'CTRF' */
reportFormat: 'CTRF'
/** Semantic version of the CTRF specification */
specVersion: string
/** Unique identifier for this report (UUID v4) */
reportId?: string
/** ISO 8601 timestamp when the report was generated */
timestamp?: string
/** Name of the tool/library that generated this report */
generatedBy?: string
/** The test results */
results: Results
/** Run-level insights computed from historical data */
insights?: Insights
/** Reference to a baseline report for comparison */
baseline?: Baseline
/** Custom metadata */
extra?: Record<string, unknown>
}
/**
* Container for test results
*
* @group Core Types
*/
export interface Results {
/** Information about the test tool */
tool: Tool
/** Aggregated test statistics */
summary: Summary
/** Array of individual test results */
tests: Test[]
/** Environment information */
environment?: Environment
/** Custom metadata */
extra?: Record<string, unknown>
}
/**
* Test tool information
*
* @group Core Types
*/
export interface Tool {
/** Name of the test tool (e.g., 'jest', 'playwright') */
name: string
/** Version of the test tool */
version?: string
/** Custom metadata */
extra?: Record<string, unknown>
}
/**
* Aggregated test statistics
*
* @group Core Types
*/
export interface Summary {
/** Total number of tests */
tests: number
/** Number of passed tests */
passed: number
/** Number of failed tests */
failed: number
/** Number of skipped tests */
skipped: number
/** Number of pending tests */
pending: number
/** Number of tests with other status */
other: number
/** Number of flaky tests */
flaky?: number
/** Number of test suites */
suites?: number
/** Start timestamp (Unix epoch milliseconds) */
start: number
/** Stop timestamp (Unix epoch milliseconds) */
stop: number
/** Total duration in milliseconds */
duration?: number
/** Custom metadata */
extra?: Record<string, unknown>
}
/**
* Individual test result
*
* @group Core Types
*/
export interface Test {
/** Unique test identifier (UUID) */
id?: string
/** Test name */
name: string
/** Test execution status */
status: TestStatus
/** Test duration in milliseconds */
duration: number
/** Start timestamp (Unix epoch milliseconds) */
start?: number
/** Stop timestamp (Unix epoch milliseconds) */
stop?: number
/** Test suite hierarchy */
suite?: string[]
/** Error message (for failed tests) */
message?: string
/** Stack trace (for failed tests) */
trace?: string
/** Code snippet where failure occurred */
snippet?: string
/** AI-generated analysis or suggestion */
ai?: string
/** Line number where test is defined or failed */
line?: number
/** Original status from the test framework */
rawStatus?: string
/** Tags for categorization */
tags?: string[]
/** Test type (e.g., 'unit', 'integration', 'e2e') */
type?: string
/** Path to the test file */
filePath?: string
/** Number of retry attempts */
retries?: number
/** Details of each retry attempt */
retryAttempts?: RetryAttempt[]
/** Whether the test is flaky */
flaky?: boolean
/** Standard output captured during test */
stdout?: string[]
/** Standard error captured during test */
stderr?: string[]
/** Thread/worker ID that ran this test */
threadId?: string
/** Browser name (for browser tests) */
browser?: string
/** Device name (for device tests) */
device?: string
/** Base64 encoded screenshot */
screenshot?: string
/** File attachments */
attachments?: Attachment[]
/** Test parameters (for parameterized tests) */
parameters?: Record<string, unknown>
/** Test steps */
steps?: Step[]
/** Test-level insights */
insights?: TestInsights
/** Custom metadata */
extra?: Record<string, unknown>
}
/**
* Test status enum
*
* @group Core Types
*/
export type TestStatus = 'passed' | 'failed' | 'skipped' | 'pending' | 'other'
/**
* Details of a test retry attempt
*
* @group Core Types
*/
export interface RetryAttempt {
/** Attempt number (1-indexed) */
attempt: number
/** Status of this attempt */
status: TestStatus
/** Duration of this attempt in milliseconds */
duration?: number
/** Error message */
message?: string
/** Stack trace */
trace?: string
/** Line number */
line?: number
/** Code snippet */
snippet?: string
/** Standard output */
stdout?: string[]
/** Standard error */
stderr?: string[]
/** Start timestamp */
start?: number
/** Stop timestamp */
stop?: number
/** Attachments for this attempt */
attachments?: Attachment[]
/** Custom metadata */
extra?: Record<string, unknown>
}
/**
* File attachment
*
* @group Core Types
*/
export interface Attachment {
/** Attachment name */
name: string
/** MIME content type */
contentType: string
/** Path to the attachment file */
path: string
/** Custom metadata */
extra?: Record<string, unknown>
}
/**
* Test step
*
* @group Core Types
*/
export interface Step {
/** Step name */
name: string
/** Step status */
status: TestStatus
/** Custom metadata */
extra?: Record<string, unknown>
}
/**
* Environment information
*
* @group Core Types
*/
export interface Environment {
/** Custom report name */
reportName?: string
/** Application name */
appName?: string
/** Application version */
appVersion?: string
/** Build identifier */
buildId?: string
/** Build name */
buildName?: string
/** Build number */
buildNumber?: number
/** Build URL */
buildUrl?: string
/** Repository name */
repositoryName?: string
/** Repository URL */
repositoryUrl?: string
/** Git commit SHA */
commit?: string
/** Git branch name */
branchName?: string
/** Operating system platform */
osPlatform?: string
/** Operating system release */
osRelease?: string
/** Operating system version */
osVersion?: string
/** Test environment name */
testEnvironment?: string
/** Whether the environment is healthy */
healthy?: boolean
/** Custom metadata */
extra?: Record<string, unknown>
}
// ============================================================================
// Insights Types
// ============================================================================
/**
* Run-level insights computed from historical data
*
* @group Insights
*/
export interface Insights {
/** Pass rate metric */
passRate?: MetricDelta
/** Fail rate metric */
failRate?: MetricDelta
/** Flaky rate metric */
flakyRate?: MetricDelta
/** Average run duration metric */
averageRunDuration?: MetricDelta
/** 95th percentile run duration metric */
p95RunDuration?: MetricDelta
/** Average test duration metric */
averageTestDuration?: MetricDelta
/** Number of historical runs analyzed */
runsAnalyzed?: number
/** Custom metadata */
extra?: Record<string, unknown>
}
/**
* Test-level insights computed from historical data
*
* @group Insights
*/
export interface TestInsights {
/** Pass rate metric */
passRate?: MetricDelta
/** Fail rate metric */
failRate?: MetricDelta
/** Flaky rate metric */
flakyRate?: MetricDelta
/** Average test duration metric */
averageTestDuration?: MetricDelta
/** 95th percentile test duration metric */
p95TestDuration?: MetricDelta
/** Number of runs this test was executed in */
executedInRuns?: number
/** Custom metadata */
extra?: Record<string, unknown>
}
/**
* Metric with current value, baseline, and change
*
* @group Insights
*/
export interface MetricDelta {
/** Current value */
current?: number
/** Baseline value for comparison */
baseline?: number
/** Change from baseline (current - baseline) */
change?: number
}
/**
* Reference to a baseline report
*
* @group Core Types
*/
export interface Baseline {
/** Report ID of the baseline report */
reportId: string
/** Timestamp of the baseline report */
timestamp?: string
/** Source description (e.g., 'main-branch', 'previous-run') */
source?: string
/** Build number of the baseline */
buildNumber?: number
/** Build name of the baseline */
buildName?: string
/** Build URL of the baseline */
buildUrl?: string
/** Git commit of the baseline */
commit?: string
/** Custom metadata */
extra?: Record<string, unknown>
}
// ============================================================================
// Utility Types
// ============================================================================
/**
* Result of schema validation
*
* @group Validation Options
*/
export interface ValidationResult {
/** Whether the report is valid */
valid: boolean
/** Array of validation errors */
errors: ValidationErrorDetail[]
}
/**
* Details of a validation error
*
* @group Validation Options
*/
export interface ValidationErrorDetail {
/** Human-readable error message */
message: string
/** JSON path to the error location */
path: string
/** JSON Schema keyword that failed */
keyword: string
}
/**
* Options for merging reports
*
* @group Merge Options
*/
export interface MergeOptions {
/** Remove duplicate tests by ID */
deduplicateTests?: boolean
/** Recalculate summary from merged tests */
mergeSummary?: boolean
/** Strategy for handling environments */
preserveEnvironment?: 'first' | 'last' | 'merge'
}
/**
* Criteria for filtering and finding tests.
*
* @group Query & Filter Options
*/
export interface FilterCriteria {
/** Filter by test ID (UUID) */
id?: string
/** Filter by test name */
name?: string
/** Filter by status */
status?: TestStatus | TestStatus[]
/** Filter by tags */
tags?: string | string[]
/** Filter by suite */
suite?: string | string[]
/** Filter by flaky flag */
flaky?: boolean
/** Filter by browser */
browser?: string
/** Filter by device */
device?: string
}
/**
* Options for insights calculation
*
* @group Insights Options
*/
export interface InsightsOptions {
/** Baseline report for comparison */
baseline?: CTRFReport
/** Number of historical reports to analyze */
window?: number
}
/**
* Options for ReportBuilder
*
* @group Builder Options
*/
export interface ReportBuilderOptions {
/** Automatically generate report ID */
autoGenerateId?: boolean
/** Automatically set timestamp */
autoTimestamp?: boolean
}
/**
* Options for TestBuilder
*
* @group Builder Options
*/
export interface TestBuilderOptions {
/** Automatically generate test ID */
autoGenerateId?: boolean
}
/**
* Options for calculating summary
*
* @group Core Options
*/
export interface SummaryOptions {
/** Start timestamp */
start?: number
/** Stop timestamp */
stop?: number
}
/**
* Options for parsing JSON
*
* @group Core Options
*/
export interface ParseOptions {
/** Validate after parsing */
validate?: boolean
}
/**
* Options for stringifying to JSON
*
* @group Core Options
*/
export interface StringifyOptions {
/** Pretty print with indentation */
pretty?: boolean
/** Number of spaces for indentation (default: 2) */
indent?: number
}
/**
* Options for validation
*
* @group Validation Options
*/
export interface ValidateOptions {
/** Specific spec version to validate against */
specVersion?: string
}