@memberjunction/testing-engine-base 2.129.0 → 2.130.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +421 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +7 -0
- package/dist/types.js.map +1 -0
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,cAAc,kBAAkB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,cAAc,kBAAkB,CAAC;AACjC,cAAc,SAAS,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -20,4 +20,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
20
20
|
};
|
|
21
21
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
22
|
__exportStar(require("./TestEngineBase"), exports);
|
|
23
|
+
__exportStar(require("./types"), exports);
|
|
23
24
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;;;;;;;;;;;;;;AAEH,mDAAiC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;;;;;;;;;;;;;;AAEH,mDAAiC;AACjC,0CAAwB"}
|
package/dist/types.d.ts
ADDED
|
@@ -0,0 +1,421 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Core type definitions for the Testing Framework
|
|
3
|
+
* These types are UI-safe and do not depend on execution logic
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
* Log message from test execution
|
|
7
|
+
*/
|
|
8
|
+
export interface TestLogMessage {
|
|
9
|
+
/**
|
|
10
|
+
* Timestamp when the message was logged
|
|
11
|
+
*/
|
|
12
|
+
timestamp: Date;
|
|
13
|
+
/**
|
|
14
|
+
* Log level
|
|
15
|
+
*/
|
|
16
|
+
level: 'info' | 'warn' | 'error' | 'debug';
|
|
17
|
+
/**
|
|
18
|
+
* Log message content
|
|
19
|
+
*/
|
|
20
|
+
message: string;
|
|
21
|
+
/**
|
|
22
|
+
* Optional metadata for additional context
|
|
23
|
+
*/
|
|
24
|
+
metadata?: Record<string, unknown>;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Progress callback for test execution
|
|
28
|
+
*/
|
|
29
|
+
export interface TestProgress {
|
|
30
|
+
/**
|
|
31
|
+
* Current execution step
|
|
32
|
+
*/
|
|
33
|
+
step: string;
|
|
34
|
+
/**
|
|
35
|
+
* Progress percentage (0-100)
|
|
36
|
+
*/
|
|
37
|
+
percentage: number;
|
|
38
|
+
/**
|
|
39
|
+
* Human-readable message
|
|
40
|
+
*/
|
|
41
|
+
message: string;
|
|
42
|
+
/**
|
|
43
|
+
* Additional metadata
|
|
44
|
+
*/
|
|
45
|
+
metadata?: {
|
|
46
|
+
testName?: string;
|
|
47
|
+
testRun?: unknown;
|
|
48
|
+
driverType?: string;
|
|
49
|
+
oracleType?: string;
|
|
50
|
+
[key: string]: unknown;
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* Options for running a single test
|
|
55
|
+
*/
|
|
56
|
+
export interface TestRunOptions {
|
|
57
|
+
/**
|
|
58
|
+
* Verbose logging
|
|
59
|
+
*/
|
|
60
|
+
verbose?: boolean;
|
|
61
|
+
/**
|
|
62
|
+
* Validate configuration without executing
|
|
63
|
+
*/
|
|
64
|
+
dryRun?: boolean;
|
|
65
|
+
/**
|
|
66
|
+
* Environment context (dev, staging, prod)
|
|
67
|
+
*/
|
|
68
|
+
environment?: string;
|
|
69
|
+
/**
|
|
70
|
+
* Git commit SHA for versioning
|
|
71
|
+
*/
|
|
72
|
+
gitCommit?: string;
|
|
73
|
+
/**
|
|
74
|
+
* Agent/system version being tested
|
|
75
|
+
*/
|
|
76
|
+
agentVersion?: string;
|
|
77
|
+
/**
|
|
78
|
+
* Override test configuration
|
|
79
|
+
*/
|
|
80
|
+
configOverride?: Record<string, unknown>;
|
|
81
|
+
/**
|
|
82
|
+
* Progress callback for real-time updates
|
|
83
|
+
*/
|
|
84
|
+
progressCallback?: (progress: TestProgress) => void;
|
|
85
|
+
/**
|
|
86
|
+
* Log callback for streaming execution details to the test run log
|
|
87
|
+
*/
|
|
88
|
+
logCallback?: (message: TestLogMessage) => void;
|
|
89
|
+
/**
|
|
90
|
+
* Tags to apply to the test run (JSON string array)
|
|
91
|
+
*/
|
|
92
|
+
tags?: string;
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* Options for running a test suite
|
|
96
|
+
*/
|
|
97
|
+
export interface SuiteRunOptions extends TestRunOptions {
|
|
98
|
+
/**
|
|
99
|
+
* Run tests in parallel
|
|
100
|
+
*/
|
|
101
|
+
parallel?: boolean;
|
|
102
|
+
/**
|
|
103
|
+
* Stop on first failure
|
|
104
|
+
*/
|
|
105
|
+
failFast?: boolean;
|
|
106
|
+
/**
|
|
107
|
+
* Maximum parallel tests (if parallel=true)
|
|
108
|
+
*/
|
|
109
|
+
maxParallel?: number;
|
|
110
|
+
/**
|
|
111
|
+
* Run only specific sequence numbers (e.g., [1, 3, 5] runs tests at those positions)
|
|
112
|
+
*/
|
|
113
|
+
sequence?: number[];
|
|
114
|
+
/**
|
|
115
|
+
* Run only specific tests by their IDs.
|
|
116
|
+
* If provided, only tests with matching IDs will be executed.
|
|
117
|
+
*/
|
|
118
|
+
selectedTestIds?: string[];
|
|
119
|
+
/**
|
|
120
|
+
* Start execution from this sequence number (inclusive).
|
|
121
|
+
* Tests with sequence numbers less than this value will be skipped.
|
|
122
|
+
*/
|
|
123
|
+
sequenceStart?: number;
|
|
124
|
+
/**
|
|
125
|
+
* Stop execution at this sequence number (inclusive).
|
|
126
|
+
* Tests with sequence numbers greater than this value will be skipped.
|
|
127
|
+
*/
|
|
128
|
+
sequenceEnd?: number;
|
|
129
|
+
}
|
|
130
|
+
/**
|
|
131
|
+
* Oracle evaluation result
|
|
132
|
+
*/
|
|
133
|
+
export interface OracleResult {
|
|
134
|
+
/**
|
|
135
|
+
* Oracle type that produced this result
|
|
136
|
+
*/
|
|
137
|
+
oracleType: string;
|
|
138
|
+
/**
|
|
139
|
+
* Whether the oracle check passed
|
|
140
|
+
*/
|
|
141
|
+
passed: boolean;
|
|
142
|
+
/**
|
|
143
|
+
* Numeric score (0.0 to 1.0)
|
|
144
|
+
*/
|
|
145
|
+
score: number;
|
|
146
|
+
/**
|
|
147
|
+
* Human-readable message
|
|
148
|
+
*/
|
|
149
|
+
message: string;
|
|
150
|
+
/**
|
|
151
|
+
* Additional details (oracle-specific)
|
|
152
|
+
*/
|
|
153
|
+
details?: unknown;
|
|
154
|
+
}
|
|
155
|
+
/**
|
|
156
|
+
* Result from running a single test
|
|
157
|
+
*/
|
|
158
|
+
export interface TestRunResult {
|
|
159
|
+
/**
|
|
160
|
+
* Test Run ID
|
|
161
|
+
*/
|
|
162
|
+
testRunId: string;
|
|
163
|
+
/**
|
|
164
|
+
* Test ID
|
|
165
|
+
*/
|
|
166
|
+
testId: string;
|
|
167
|
+
/**
|
|
168
|
+
* Test name (from lookup field)
|
|
169
|
+
*/
|
|
170
|
+
testName: string;
|
|
171
|
+
/**
|
|
172
|
+
* Test execution status
|
|
173
|
+
*/
|
|
174
|
+
status: 'Passed' | 'Failed' | 'Skipped' | 'Error' | 'Timeout';
|
|
175
|
+
/**
|
|
176
|
+
* Overall score (0.0000 to 1.0000)
|
|
177
|
+
*/
|
|
178
|
+
score: number;
|
|
179
|
+
/**
|
|
180
|
+
* Number of checks that passed
|
|
181
|
+
*/
|
|
182
|
+
passedChecks: number;
|
|
183
|
+
/**
|
|
184
|
+
* Number of checks that failed
|
|
185
|
+
*/
|
|
186
|
+
failedChecks: number;
|
|
187
|
+
/**
|
|
188
|
+
* Total number of checks
|
|
189
|
+
*/
|
|
190
|
+
totalChecks: number;
|
|
191
|
+
/**
|
|
192
|
+
* Oracle evaluation results
|
|
193
|
+
*/
|
|
194
|
+
oracleResults: OracleResult[];
|
|
195
|
+
/**
|
|
196
|
+
* Optional sub-category or variant label for the test target.
|
|
197
|
+
* Use for ad-hoc labeling or to distinguish test scenarios within the same entity type.
|
|
198
|
+
* Examples: "Summarization", "Classification", "Code Review", "Multi-turn Chat"
|
|
199
|
+
*/
|
|
200
|
+
targetType: string;
|
|
201
|
+
/**
|
|
202
|
+
* Entity ID identifying the type of target being tested.
|
|
203
|
+
* References Entity.ID (e.g., Entity ID for "MJ: AI Agent Runs").
|
|
204
|
+
*/
|
|
205
|
+
targetLogEntityId?: string;
|
|
206
|
+
/**
|
|
207
|
+
* Target entity ID (e.g., AIAgentRun.ID)
|
|
208
|
+
*/
|
|
209
|
+
targetLogId: string;
|
|
210
|
+
/**
|
|
211
|
+
* Execution duration in milliseconds
|
|
212
|
+
*/
|
|
213
|
+
durationMs: number;
|
|
214
|
+
/**
|
|
215
|
+
* Cost in USD
|
|
216
|
+
*/
|
|
217
|
+
totalCost: number;
|
|
218
|
+
/**
|
|
219
|
+
* When execution started
|
|
220
|
+
*/
|
|
221
|
+
startedAt: Date;
|
|
222
|
+
/**
|
|
223
|
+
* When execution completed
|
|
224
|
+
*/
|
|
225
|
+
completedAt: Date;
|
|
226
|
+
/**
|
|
227
|
+
* Error message if status is Error
|
|
228
|
+
*/
|
|
229
|
+
errorMessage?: string;
|
|
230
|
+
/**
|
|
231
|
+
* Iteration number for repeated tests (when RepeatCount > 1)
|
|
232
|
+
*/
|
|
233
|
+
sequence?: number;
|
|
234
|
+
}
|
|
235
|
+
/**
|
|
236
|
+
* Result from running a test suite
|
|
237
|
+
*/
|
|
238
|
+
export interface TestSuiteRunResult {
|
|
239
|
+
/**
|
|
240
|
+
* Suite Run ID
|
|
241
|
+
*/
|
|
242
|
+
suiteRunId: string;
|
|
243
|
+
/**
|
|
244
|
+
* Suite ID
|
|
245
|
+
*/
|
|
246
|
+
suiteId: string;
|
|
247
|
+
/**
|
|
248
|
+
* Suite name (from lookup field)
|
|
249
|
+
*/
|
|
250
|
+
suiteName: string;
|
|
251
|
+
/**
|
|
252
|
+
* Suite execution status
|
|
253
|
+
*/
|
|
254
|
+
status: 'Completed' | 'Failed' | 'Cancelled' | 'Pending' | 'Running';
|
|
255
|
+
/**
|
|
256
|
+
* Tests that passed
|
|
257
|
+
*/
|
|
258
|
+
passedTests: number;
|
|
259
|
+
/**
|
|
260
|
+
* Tests that failed
|
|
261
|
+
*/
|
|
262
|
+
failedTests: number;
|
|
263
|
+
/**
|
|
264
|
+
* Total tests
|
|
265
|
+
*/
|
|
266
|
+
totalTests: number;
|
|
267
|
+
/**
|
|
268
|
+
* Average score across all tests
|
|
269
|
+
*/
|
|
270
|
+
averageScore: number;
|
|
271
|
+
/**
|
|
272
|
+
* Individual test results
|
|
273
|
+
*/
|
|
274
|
+
testResults: TestRunResult[];
|
|
275
|
+
/**
|
|
276
|
+
* Total duration in milliseconds
|
|
277
|
+
*/
|
|
278
|
+
durationMs: number;
|
|
279
|
+
/**
|
|
280
|
+
* Total cost in USD
|
|
281
|
+
*/
|
|
282
|
+
totalCost: number;
|
|
283
|
+
/**
|
|
284
|
+
* When execution started
|
|
285
|
+
*/
|
|
286
|
+
startedAt: Date;
|
|
287
|
+
/**
|
|
288
|
+
* When execution completed
|
|
289
|
+
*/
|
|
290
|
+
completedAt: Date;
|
|
291
|
+
}
|
|
292
|
+
/**
|
|
293
|
+
* Scoring weights for different evaluation dimensions
|
|
294
|
+
*/
|
|
295
|
+
export interface ScoringWeights {
|
|
296
|
+
/**
|
|
297
|
+
* Weight for each oracle type
|
|
298
|
+
* Keys are oracle types, values are weights (should sum to 1.0)
|
|
299
|
+
*/
|
|
300
|
+
[oracleType: string]: number;
|
|
301
|
+
}
|
|
302
|
+
/**
|
|
303
|
+
* Validation result for test configuration
|
|
304
|
+
*/
|
|
305
|
+
export interface ValidationResult {
|
|
306
|
+
/**
|
|
307
|
+
* Whether validation passed
|
|
308
|
+
*/
|
|
309
|
+
valid: boolean;
|
|
310
|
+
/**
|
|
311
|
+
* Validation errors (blocking issues)
|
|
312
|
+
*/
|
|
313
|
+
errors: ValidationError[];
|
|
314
|
+
/**
|
|
315
|
+
* Validation warnings (non-blocking issues)
|
|
316
|
+
*/
|
|
317
|
+
warnings: ValidationWarning[];
|
|
318
|
+
}
|
|
319
|
+
/**
|
|
320
|
+
* Validation error
|
|
321
|
+
*/
|
|
322
|
+
export interface ValidationError {
|
|
323
|
+
/**
|
|
324
|
+
* Error category
|
|
325
|
+
*/
|
|
326
|
+
category: 'configuration' | 'input' | 'expected-outcome';
|
|
327
|
+
/**
|
|
328
|
+
* Error message
|
|
329
|
+
*/
|
|
330
|
+
message: string;
|
|
331
|
+
/**
|
|
332
|
+
* Field path (if applicable)
|
|
333
|
+
*/
|
|
334
|
+
field?: string;
|
|
335
|
+
/**
|
|
336
|
+
* Suggested fix
|
|
337
|
+
*/
|
|
338
|
+
suggestion?: string;
|
|
339
|
+
}
|
|
340
|
+
/**
|
|
341
|
+
* Validation warning
|
|
342
|
+
*/
|
|
343
|
+
export interface ValidationWarning {
|
|
344
|
+
/**
|
|
345
|
+
* Warning category
|
|
346
|
+
*/
|
|
347
|
+
category: 'best-practice' | 'performance' | 'cost';
|
|
348
|
+
/**
|
|
349
|
+
* Warning message
|
|
350
|
+
*/
|
|
351
|
+
message: string;
|
|
352
|
+
/**
|
|
353
|
+
* Recommendation
|
|
354
|
+
*/
|
|
355
|
+
recommendation?: string;
|
|
356
|
+
}
|
|
357
|
+
/**
|
|
358
|
+
* Execution context details for test runs.
|
|
359
|
+
* Stored as JSON in the RunContextDetails field of TestRun and TestSuiteRun entities.
|
|
360
|
+
* Enables cross-server aggregation and detailed environment tracking.
|
|
361
|
+
*/
|
|
362
|
+
export interface RunContextDetails {
|
|
363
|
+
/**
|
|
364
|
+
* Operating system type (e.g., "darwin", "linux", "win32")
|
|
365
|
+
*/
|
|
366
|
+
osType?: string;
|
|
367
|
+
/**
|
|
368
|
+
* Operating system version/release
|
|
369
|
+
*/
|
|
370
|
+
osVersion?: string;
|
|
371
|
+
/**
|
|
372
|
+
* Node.js version used to run the tests
|
|
373
|
+
*/
|
|
374
|
+
nodeVersion?: string;
|
|
375
|
+
/**
|
|
376
|
+
* Timezone identifier (e.g., "America/New_York", "UTC")
|
|
377
|
+
*/
|
|
378
|
+
timezone?: string;
|
|
379
|
+
/**
|
|
380
|
+
* System locale (e.g., "en-US", "fr-FR")
|
|
381
|
+
*/
|
|
382
|
+
locale?: string;
|
|
383
|
+
/**
|
|
384
|
+
* IP address of the machine running tests (useful for network debugging)
|
|
385
|
+
*/
|
|
386
|
+
ipAddress?: string;
|
|
387
|
+
/**
|
|
388
|
+
* CI/CD provider name (e.g., "GitHub Actions", "Azure DevOps", "Jenkins")
|
|
389
|
+
*/
|
|
390
|
+
ciProvider?: string;
|
|
391
|
+
/**
|
|
392
|
+
* CI/CD pipeline or workflow ID
|
|
393
|
+
*/
|
|
394
|
+
pipelineId?: string;
|
|
395
|
+
/**
|
|
396
|
+
* Build number or run number from CI/CD
|
|
397
|
+
*/
|
|
398
|
+
buildNumber?: string;
|
|
399
|
+
/**
|
|
400
|
+
* Git branch name
|
|
401
|
+
*/
|
|
402
|
+
branch?: string;
|
|
403
|
+
/**
|
|
404
|
+
* Pull request number (if applicable)
|
|
405
|
+
*/
|
|
406
|
+
prNumber?: string;
|
|
407
|
+
/**
|
|
408
|
+
* Additional custom properties for extensibility
|
|
409
|
+
*/
|
|
410
|
+
[key: string]: unknown;
|
|
411
|
+
}
|
|
412
|
+
/**
|
|
413
|
+
* Oracle configuration (can have any additional properties)
|
|
414
|
+
*/
|
|
415
|
+
export interface OracleConfig {
|
|
416
|
+
/**
|
|
417
|
+
* Oracle-specific configuration properties
|
|
418
|
+
*/
|
|
419
|
+
[key: string]: unknown;
|
|
420
|
+
}
|
|
421
|
+
//# sourceMappingURL=types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"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"}
|
package/dist/types.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":";AAAA;;;GAGG"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/testing-engine-base",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.130.1",
|
|
4
4
|
"description": "MemberJunction Testing Framework Engine Base - Metadata cache for test types, suites, and tests (UI-safe, no execution)",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"@types/debug": "^4.1.12"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@memberjunction/global": "2.
|
|
24
|
-
"@memberjunction/core": "2.
|
|
25
|
-
"@memberjunction/core-entities": "2.
|
|
23
|
+
"@memberjunction/global": "2.130.1",
|
|
24
|
+
"@memberjunction/core": "2.130.1",
|
|
25
|
+
"@memberjunction/core-entities": "2.130.1",
|
|
26
26
|
"rxjs": "^7.8.1",
|
|
27
27
|
"debug": "^4.4.0"
|
|
28
28
|
},
|