@overkill-dev/run 0.0.16 → 0.0.17
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/package.json +2 -1
- package/readme.md +6 -0
- package/run/run-config-schema.d.ts +174 -0
- package/run/run-config-schema.d.ts.map +1 -0
- package/run/run-config-schema.js +78 -0
- package/run/run-config-schema.js.map +1 -0
- package/run/run-config.d.ts +13 -173
- package/run/run-config.d.ts.map +1 -1
- package/run/run-config.js +2 -77
- package/run/run-config.js.map +1 -1
- package/sbom.cdx.json +4 -4
package/package.json
CHANGED
|
@@ -50,11 +50,12 @@
|
|
|
50
50
|
"./run/command-line-command.js",
|
|
51
51
|
"./run/command-line-runner.js",
|
|
52
52
|
"./run/default-run-engine.js",
|
|
53
|
+
"./run/run-config-schema.js",
|
|
53
54
|
"./run/run-config.js",
|
|
54
55
|
"./run/run-orchestrator.js",
|
|
55
56
|
"./run/run-test-modules.js",
|
|
56
57
|
"./run/supervised-run.js"
|
|
57
58
|
],
|
|
58
59
|
"type": "module",
|
|
59
|
-
"version": "0.0.
|
|
60
|
+
"version": "0.0.17"
|
|
60
61
|
}
|
package/readme.md
CHANGED
|
@@ -65,6 +65,12 @@ benchmark commands. Every configured runner profile must declare
|
|
|
65
65
|
`testFamily: 'microtest'`; the selected profile's test family is recorded in
|
|
66
66
|
`RunFacts.execution.testFamily`.
|
|
67
67
|
|
|
68
|
+
Microtest profile execution is modeled with two independent fields:
|
|
69
|
+
`execution.processModel` is `in-process` or `supervised-process`, and
|
|
70
|
+
`execution.scheduling` is `concurrent` or `serial`. The default `microtest`
|
|
71
|
+
profile uses supervised concurrent execution. The selected values are recorded
|
|
72
|
+
in `RunFacts.execution` and drive the current explicit-file runner path.
|
|
73
|
+
|
|
68
74
|
Config loading is common runner infrastructure, not plugin discovery.
|
|
69
75
|
The command-line runner loads native Node config files, selects the default
|
|
70
76
|
line reporter when project config omits reporters, defaults managed reporter
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
import { z } from 'zod/v4';
|
|
2
|
+
import { type DefinedOutputRenderer } from '../engine/reporter-output.ts';
|
|
3
|
+
import { type DefinedReporter } from '../engine/reporter.ts';
|
|
4
|
+
export declare const resourceBudgetsSchema: z.ZodReadonly<z.ZodObject<{
|
|
5
|
+
activeResourceCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6
|
+
javaScriptEngineHeapBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
7
|
+
residentSetBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
8
|
+
residentSetGrowthBytesPerSecond: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
9
|
+
}, z.core.$strict>>;
|
|
10
|
+
declare const measuredResourceUsageSchema: z.ZodReadonly<z.ZodObject<{
|
|
11
|
+
budgets: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
|
|
12
|
+
activeResourceCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
13
|
+
javaScriptEngineHeapBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
14
|
+
residentSetBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
15
|
+
residentSetGrowthBytesPerSecond: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
16
|
+
}, z.core.$strict>>>;
|
|
17
|
+
measure: z.ZodLiteral<true>;
|
|
18
|
+
samplingIntervalMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
19
|
+
}, z.core.$strict>>;
|
|
20
|
+
declare const unmeasuredResourceUsageSchema: z.ZodReadonly<z.ZodObject<{
|
|
21
|
+
measure: z.ZodOptional<z.ZodLiteral<false>>;
|
|
22
|
+
}, z.core.$strict>>;
|
|
23
|
+
export declare const resourceUsageSchema: z.ZodUnion<readonly [z.ZodReadonly<z.ZodObject<{
|
|
24
|
+
budgets: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
|
|
25
|
+
activeResourceCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
26
|
+
javaScriptEngineHeapBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
27
|
+
residentSetBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
28
|
+
residentSetGrowthBytesPerSecond: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
29
|
+
}, z.core.$strict>>>;
|
|
30
|
+
measure: z.ZodLiteral<true>;
|
|
31
|
+
samplingIntervalMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
32
|
+
}, z.core.$strict>>, z.ZodReadonly<z.ZodObject<{
|
|
33
|
+
measure: z.ZodOptional<z.ZodLiteral<false>>;
|
|
34
|
+
}, z.core.$strict>>]>;
|
|
35
|
+
export declare const timeoutSchema: z.ZodReadonly<z.ZodObject<{
|
|
36
|
+
hardMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
37
|
+
softMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
38
|
+
}, z.core.$strict>>;
|
|
39
|
+
export declare const microtestExecutionSchema: z.ZodDiscriminatedUnion<[z.ZodReadonly<z.ZodObject<{
|
|
40
|
+
processModel: z.ZodLiteral<"in-process">;
|
|
41
|
+
scheduling: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"concurrent">, z.ZodLiteral<"serial">]>>;
|
|
42
|
+
}, z.core.$strict>>, z.ZodReadonly<z.ZodObject<{
|
|
43
|
+
processModel: z.ZodLiteral<"supervised-process">;
|
|
44
|
+
scheduling: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"concurrent">, z.ZodLiteral<"serial">]>>;
|
|
45
|
+
}, z.core.$strict>>], "processModel">;
|
|
46
|
+
export declare const microtestProfileSchema: z.ZodReadonly<z.ZodObject<{
|
|
47
|
+
execution: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodReadonly<z.ZodObject<{
|
|
48
|
+
processModel: z.ZodLiteral<"in-process">;
|
|
49
|
+
scheduling: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"concurrent">, z.ZodLiteral<"serial">]>>;
|
|
50
|
+
}, z.core.$strict>>, z.ZodReadonly<z.ZodObject<{
|
|
51
|
+
processModel: z.ZodLiteral<"supervised-process">;
|
|
52
|
+
scheduling: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"concurrent">, z.ZodLiteral<"serial">]>>;
|
|
53
|
+
}, z.core.$strict>>], "processModel">>;
|
|
54
|
+
reporters: z.ZodOptional<z.ZodReadonly<z.ZodTuple<[z.ZodCustom<DefinedReporter, DefinedReporter>], z.ZodCustom<DefinedReporter, DefinedReporter>>>>;
|
|
55
|
+
resourceUsage: z.ZodOptional<z.ZodUnion<readonly [z.ZodReadonly<z.ZodObject<{
|
|
56
|
+
budgets: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
|
|
57
|
+
activeResourceCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
58
|
+
javaScriptEngineHeapBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
59
|
+
residentSetBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
60
|
+
residentSetGrowthBytesPerSecond: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
61
|
+
}, z.core.$strict>>>;
|
|
62
|
+
measure: z.ZodLiteral<true>;
|
|
63
|
+
samplingIntervalMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
64
|
+
}, z.core.$strict>>, z.ZodReadonly<z.ZodObject<{
|
|
65
|
+
measure: z.ZodOptional<z.ZodLiteral<false>>;
|
|
66
|
+
}, z.core.$strict>>]>>;
|
|
67
|
+
testFamily: z.ZodLiteral<"microtest">;
|
|
68
|
+
timeouts: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
|
|
69
|
+
hardMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
70
|
+
softMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
71
|
+
}, z.core.$strict>>>;
|
|
72
|
+
}, z.core.$strict>>;
|
|
73
|
+
declare const profileSchema: z.ZodDiscriminatedUnion<[z.ZodReadonly<z.ZodObject<{
|
|
74
|
+
execution: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodReadonly<z.ZodObject<{
|
|
75
|
+
processModel: z.ZodLiteral<"in-process">;
|
|
76
|
+
scheduling: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"concurrent">, z.ZodLiteral<"serial">]>>;
|
|
77
|
+
}, z.core.$strict>>, z.ZodReadonly<z.ZodObject<{
|
|
78
|
+
processModel: z.ZodLiteral<"supervised-process">;
|
|
79
|
+
scheduling: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"concurrent">, z.ZodLiteral<"serial">]>>;
|
|
80
|
+
}, z.core.$strict>>], "processModel">>;
|
|
81
|
+
reporters: z.ZodOptional<z.ZodReadonly<z.ZodTuple<[z.ZodCustom<DefinedReporter, DefinedReporter>], z.ZodCustom<DefinedReporter, DefinedReporter>>>>;
|
|
82
|
+
resourceUsage: z.ZodOptional<z.ZodUnion<readonly [z.ZodReadonly<z.ZodObject<{
|
|
83
|
+
budgets: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
|
|
84
|
+
activeResourceCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
85
|
+
javaScriptEngineHeapBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
86
|
+
residentSetBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
87
|
+
residentSetGrowthBytesPerSecond: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
88
|
+
}, z.core.$strict>>>;
|
|
89
|
+
measure: z.ZodLiteral<true>;
|
|
90
|
+
samplingIntervalMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
91
|
+
}, z.core.$strict>>, z.ZodReadonly<z.ZodObject<{
|
|
92
|
+
measure: z.ZodOptional<z.ZodLiteral<false>>;
|
|
93
|
+
}, z.core.$strict>>]>>;
|
|
94
|
+
testFamily: z.ZodLiteral<"microtest">;
|
|
95
|
+
timeouts: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
|
|
96
|
+
hardMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
97
|
+
softMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
98
|
+
}, z.core.$strict>>>;
|
|
99
|
+
}, z.core.$strict>>], "testFamily">;
|
|
100
|
+
declare const profilesSchema: z.ZodReadonly<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodReadonly<z.ZodObject<{
|
|
101
|
+
execution: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodReadonly<z.ZodObject<{
|
|
102
|
+
processModel: z.ZodLiteral<"in-process">;
|
|
103
|
+
scheduling: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"concurrent">, z.ZodLiteral<"serial">]>>;
|
|
104
|
+
}, z.core.$strict>>, z.ZodReadonly<z.ZodObject<{
|
|
105
|
+
processModel: z.ZodLiteral<"supervised-process">;
|
|
106
|
+
scheduling: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"concurrent">, z.ZodLiteral<"serial">]>>;
|
|
107
|
+
}, z.core.$strict>>], "processModel">>;
|
|
108
|
+
reporters: z.ZodOptional<z.ZodReadonly<z.ZodTuple<[z.ZodCustom<DefinedReporter, DefinedReporter>], z.ZodCustom<DefinedReporter, DefinedReporter>>>>;
|
|
109
|
+
resourceUsage: z.ZodOptional<z.ZodUnion<readonly [z.ZodReadonly<z.ZodObject<{
|
|
110
|
+
budgets: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
|
|
111
|
+
activeResourceCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
112
|
+
javaScriptEngineHeapBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
113
|
+
residentSetBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
114
|
+
residentSetGrowthBytesPerSecond: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
115
|
+
}, z.core.$strict>>>;
|
|
116
|
+
measure: z.ZodLiteral<true>;
|
|
117
|
+
samplingIntervalMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
118
|
+
}, z.core.$strict>>, z.ZodReadonly<z.ZodObject<{
|
|
119
|
+
measure: z.ZodOptional<z.ZodLiteral<false>>;
|
|
120
|
+
}, z.core.$strict>>]>>;
|
|
121
|
+
testFamily: z.ZodLiteral<"microtest">;
|
|
122
|
+
timeouts: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
|
|
123
|
+
hardMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
124
|
+
softMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
125
|
+
}, z.core.$strict>>>;
|
|
126
|
+
}, z.core.$strict>>], "testFamily">>>;
|
|
127
|
+
export declare const projectConfigSchema: z.ZodReadonly<z.ZodObject<{
|
|
128
|
+
loader: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
|
|
129
|
+
sourceMaps: z.ZodBoolean;
|
|
130
|
+
stripMode: z.ZodLiteral<"strip-only">;
|
|
131
|
+
}, z.core.$strict>>>;
|
|
132
|
+
outputRenderer: z.ZodOptional<z.ZodCustom<DefinedOutputRenderer, DefinedOutputRenderer>>;
|
|
133
|
+
profiles: z.ZodOptional<z.ZodReadonly<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodReadonly<z.ZodObject<{
|
|
134
|
+
execution: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodReadonly<z.ZodObject<{
|
|
135
|
+
processModel: z.ZodLiteral<"in-process">;
|
|
136
|
+
scheduling: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"concurrent">, z.ZodLiteral<"serial">]>>;
|
|
137
|
+
}, z.core.$strict>>, z.ZodReadonly<z.ZodObject<{
|
|
138
|
+
processModel: z.ZodLiteral<"supervised-process">;
|
|
139
|
+
scheduling: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"concurrent">, z.ZodLiteral<"serial">]>>;
|
|
140
|
+
}, z.core.$strict>>], "processModel">>;
|
|
141
|
+
reporters: z.ZodOptional<z.ZodReadonly<z.ZodTuple<[z.ZodCustom<DefinedReporter, DefinedReporter>], z.ZodCustom<DefinedReporter, DefinedReporter>>>>;
|
|
142
|
+
resourceUsage: z.ZodOptional<z.ZodUnion<readonly [z.ZodReadonly<z.ZodObject<{
|
|
143
|
+
budgets: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
|
|
144
|
+
activeResourceCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
145
|
+
javaScriptEngineHeapBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
146
|
+
residentSetBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
147
|
+
residentSetGrowthBytesPerSecond: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
148
|
+
}, z.core.$strict>>>;
|
|
149
|
+
measure: z.ZodLiteral<true>;
|
|
150
|
+
samplingIntervalMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
151
|
+
}, z.core.$strict>>, z.ZodReadonly<z.ZodObject<{
|
|
152
|
+
measure: z.ZodOptional<z.ZodLiteral<false>>;
|
|
153
|
+
}, z.core.$strict>>]>>;
|
|
154
|
+
testFamily: z.ZodLiteral<"microtest">;
|
|
155
|
+
timeouts: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
|
|
156
|
+
hardMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
157
|
+
softMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
158
|
+
}, z.core.$strict>>>;
|
|
159
|
+
}, z.core.$strict>>], "testFamily">>>>;
|
|
160
|
+
reporters: z.ZodOptional<z.ZodReadonly<z.ZodTuple<[z.ZodCustom<DefinedReporter, DefinedReporter>], z.ZodCustom<DefinedReporter, DefinedReporter>>>>;
|
|
161
|
+
runtimeStateDir: z.ZodOptional<z.ZodString>;
|
|
162
|
+
}, z.core.$strict>>;
|
|
163
|
+
export type RunProjectResourceBudgets = z.infer<typeof resourceBudgetsSchema>;
|
|
164
|
+
export type RunProjectMeasuredResourceUsage = z.infer<typeof measuredResourceUsageSchema>;
|
|
165
|
+
export type RunProjectUnmeasuredResourceUsage = z.infer<typeof unmeasuredResourceUsageSchema>;
|
|
166
|
+
export type RunProjectResourceUsageConfig = z.infer<typeof resourceUsageSchema>;
|
|
167
|
+
export type RunProjectTimeoutConfig = z.infer<typeof timeoutSchema>;
|
|
168
|
+
export type RunProjectMicrotestExecution = z.infer<typeof microtestExecutionSchema>;
|
|
169
|
+
export type RunProjectMicrotestProfileConfig = z.infer<typeof microtestProfileSchema>;
|
|
170
|
+
export type RunProjectProfileConfig = z.infer<typeof profileSchema>;
|
|
171
|
+
export type RunProjectProfilesConfig = z.infer<typeof profilesSchema>;
|
|
172
|
+
export type RunProjectConfig = z.infer<typeof projectConfigSchema>;
|
|
173
|
+
export {};
|
|
174
|
+
//# sourceMappingURL=run-config-schema.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"run-config-schema.d.ts","sourceRoot":"","sources":["../../../../source/run/run-config-schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAC3B,OAAO,EAAoB,KAAK,qBAAqB,EAAE,MAAM,8BAA8B,CAAC;AAC5F,OAAO,EAAc,KAAK,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAoBzE,eAAO,MAAM,qBAAqB;;;;;mBAOnB,CAAC;AAEhB,QAAA,MAAM,2BAA2B;;;;;;;;;mBAMlB,CAAC;AAEhB,QAAA,MAAM,6BAA6B;;mBAIpB,CAAC;AAEhB,eAAO,MAAM,mBAAmB;;;;;;;;;;;qBAA0E,CAAC;AAE3G,eAAO,MAAM,aAAa;;;mBAKX,CAAC;AAEhB,eAAO,MAAM,wBAAwB;;;;;;qCAanC,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;mBAQpB,CAAC;AAEhB,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;mCAEjB,CAAC;AAEH,QAAA,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;qCAAiD,CAAC;AAEtE,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAQjB,CAAC;AAEhB,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAC9E,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAC1F,MAAM,MAAM,iCAAiC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAC;AAC9F,MAAM,MAAM,6BAA6B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAChF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AACpE,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AACpF,MAAM,MAAM,gCAAgC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACtF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AACpE,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AACtE,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC"}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import { z } from 'zod/v4';
|
|
2
|
+
import { isOutputRenderer } from "../engine/reporter-output.js";
|
|
3
|
+
import { isReporter } from "../engine/reporter.js";
|
|
4
|
+
const reporterSchema = z.custom(isReporter, 'must be created with defineReporter(...)');
|
|
5
|
+
const outputRendererSchema = z.custom(isOutputRenderer, 'must be created with defineOutputRenderer(...)');
|
|
6
|
+
const loaderSchema = z
|
|
7
|
+
.strictObject({
|
|
8
|
+
sourceMaps: z.boolean(),
|
|
9
|
+
stripMode: z.literal('strip-only')
|
|
10
|
+
})
|
|
11
|
+
.readonly();
|
|
12
|
+
const positiveSafeIntegerSchema = z.number().refine(function isPositiveSafeInteger(value) {
|
|
13
|
+
return Number.isSafeInteger(value) && value > 0;
|
|
14
|
+
}, 'must be a positive safe integer');
|
|
15
|
+
export const resourceBudgetsSchema = z
|
|
16
|
+
.strictObject({
|
|
17
|
+
activeResourceCount: z.optional(z.nullable(positiveSafeIntegerSchema)),
|
|
18
|
+
javaScriptEngineHeapBytes: z.optional(z.nullable(positiveSafeIntegerSchema)),
|
|
19
|
+
residentSetBytes: z.optional(z.nullable(positiveSafeIntegerSchema)),
|
|
20
|
+
residentSetGrowthBytesPerSecond: z.optional(z.nullable(positiveSafeIntegerSchema))
|
|
21
|
+
})
|
|
22
|
+
.readonly();
|
|
23
|
+
const measuredResourceUsageSchema = z
|
|
24
|
+
.strictObject({
|
|
25
|
+
budgets: z.optional(resourceBudgetsSchema),
|
|
26
|
+
measure: z.literal(true),
|
|
27
|
+
samplingIntervalMilliseconds: z.optional(positiveSafeIntegerSchema)
|
|
28
|
+
})
|
|
29
|
+
.readonly();
|
|
30
|
+
const unmeasuredResourceUsageSchema = z
|
|
31
|
+
.strictObject({
|
|
32
|
+
measure: z.optional(z.literal(false))
|
|
33
|
+
})
|
|
34
|
+
.readonly();
|
|
35
|
+
export const resourceUsageSchema = z.union([measuredResourceUsageSchema, unmeasuredResourceUsageSchema]);
|
|
36
|
+
export const timeoutSchema = z
|
|
37
|
+
.strictObject({
|
|
38
|
+
hardMilliseconds: z.optional(positiveSafeIntegerSchema),
|
|
39
|
+
softMilliseconds: z.optional(positiveSafeIntegerSchema)
|
|
40
|
+
})
|
|
41
|
+
.readonly();
|
|
42
|
+
export const microtestExecutionSchema = z.discriminatedUnion('processModel', [
|
|
43
|
+
z
|
|
44
|
+
.strictObject({
|
|
45
|
+
processModel: z.literal('in-process'),
|
|
46
|
+
scheduling: z.optional(z.union([z.literal('concurrent'), z.literal('serial')]))
|
|
47
|
+
})
|
|
48
|
+
.readonly(),
|
|
49
|
+
z
|
|
50
|
+
.strictObject({
|
|
51
|
+
processModel: z.literal('supervised-process'),
|
|
52
|
+
scheduling: z.optional(z.union([z.literal('concurrent'), z.literal('serial')]))
|
|
53
|
+
})
|
|
54
|
+
.readonly()
|
|
55
|
+
]);
|
|
56
|
+
export const microtestProfileSchema = z
|
|
57
|
+
.strictObject({
|
|
58
|
+
execution: z.optional(microtestExecutionSchema),
|
|
59
|
+
reporters: z.optional(z.tuple([reporterSchema]).rest(reporterSchema).readonly()),
|
|
60
|
+
resourceUsage: z.optional(resourceUsageSchema),
|
|
61
|
+
testFamily: z.literal('microtest'),
|
|
62
|
+
timeouts: z.optional(timeoutSchema)
|
|
63
|
+
})
|
|
64
|
+
.readonly();
|
|
65
|
+
const profileSchema = z.discriminatedUnion('testFamily', [
|
|
66
|
+
microtestProfileSchema
|
|
67
|
+
]);
|
|
68
|
+
const profilesSchema = z.record(z.string(), profileSchema).readonly();
|
|
69
|
+
export const projectConfigSchema = z
|
|
70
|
+
.strictObject({
|
|
71
|
+
loader: z.optional(loaderSchema),
|
|
72
|
+
outputRenderer: z.optional(outputRendererSchema),
|
|
73
|
+
profiles: z.optional(profilesSchema),
|
|
74
|
+
reporters: z.optional(z.tuple([reporterSchema]).rest(reporterSchema).readonly()),
|
|
75
|
+
runtimeStateDir: z.optional(z.string().min(1))
|
|
76
|
+
})
|
|
77
|
+
.readonly();
|
|
78
|
+
//# sourceMappingURL=run-config-schema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"run-config-schema.js","sourceRoot":"","sources":["../../../../source/run/run-config-schema.ts"],"names":[],"mappings":"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"}
|
package/run/run-config.d.ts
CHANGED
|
@@ -1,8 +1,18 @@
|
|
|
1
|
-
import { z } from 'zod/v4';
|
|
2
1
|
import type { NonEmptyReadonlyArray } from '../assertion-protocol/assertion-node-shape.ts';
|
|
3
|
-
import { type
|
|
4
|
-
import
|
|
2
|
+
import { type OutputRenderer } from '../engine/reporter-output.ts';
|
|
3
|
+
import type { Reporter } from '../engine/reporter.ts';
|
|
4
|
+
import { type RunProjectConfig as ParsedRunProjectConfig, type RunProjectMeasuredResourceUsage as ParsedRunProjectMeasuredResourceUsage, type RunProjectMicrotestExecution as ParsedRunProjectMicrotestExecution, type RunProjectMicrotestProfileConfig as ParsedRunProjectMicrotestProfileConfig, type RunProjectProfileConfig as ParsedRunProjectProfileConfig, type RunProjectProfilesConfig as ParsedRunProjectProfilesConfig, type RunProjectResourceBudgets as ParsedRunProjectResourceBudgets, type RunProjectResourceUsageConfig as ParsedRunProjectResourceUsageConfig, type RunProjectTimeoutConfig as ParsedRunProjectTimeoutConfig, type RunProjectUnmeasuredResourceUsage as ParsedRunProjectUnmeasuredResourceUsage } from './run-config-schema.ts';
|
|
5
5
|
import { type RunLoaderConfig, type RunProfilesConfig } from './run-types.ts';
|
|
6
|
+
export type RunProjectConfig = ParsedRunProjectConfig;
|
|
7
|
+
export type RunProjectMeasuredResourceUsage = ParsedRunProjectMeasuredResourceUsage;
|
|
8
|
+
export type RunProjectMicrotestExecution = ParsedRunProjectMicrotestExecution;
|
|
9
|
+
export type RunProjectMicrotestProfileConfig = ParsedRunProjectMicrotestProfileConfig;
|
|
10
|
+
export type RunProjectProfileConfig = ParsedRunProjectProfileConfig;
|
|
11
|
+
export type RunProjectProfilesConfig = ParsedRunProjectProfilesConfig;
|
|
12
|
+
export type RunProjectResourceBudgets = ParsedRunProjectResourceBudgets;
|
|
13
|
+
export type RunProjectResourceUsageConfig = ParsedRunProjectResourceUsageConfig;
|
|
14
|
+
export type RunProjectTimeoutConfig = ParsedRunProjectTimeoutConfig;
|
|
15
|
+
export type RunProjectUnmeasuredResourceUsage = ParsedRunProjectUnmeasuredResourceUsage;
|
|
6
16
|
export type LoadedRunConfig = {
|
|
7
17
|
readonly configPath: string | null;
|
|
8
18
|
readonly loader: RunLoaderConfig;
|
|
@@ -18,176 +28,6 @@ export type RunConfigLoadRequest = {
|
|
|
18
28
|
export declare class RunConfigError extends Error {
|
|
19
29
|
constructor(message: string, options?: Readonly<ErrorOptions>);
|
|
20
30
|
}
|
|
21
|
-
declare const resourceBudgetsSchema: z.ZodReadonly<z.ZodObject<{
|
|
22
|
-
activeResourceCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23
|
-
javaScriptEngineHeapBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
24
|
-
residentSetBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
25
|
-
residentSetGrowthBytesPerSecond: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
26
|
-
}, z.core.$strict>>;
|
|
27
|
-
declare const measuredResourceUsageSchema: z.ZodReadonly<z.ZodObject<{
|
|
28
|
-
budgets: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
|
|
29
|
-
activeResourceCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
30
|
-
javaScriptEngineHeapBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
31
|
-
residentSetBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
32
|
-
residentSetGrowthBytesPerSecond: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
33
|
-
}, z.core.$strict>>>;
|
|
34
|
-
measure: z.ZodLiteral<true>;
|
|
35
|
-
samplingIntervalMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
36
|
-
}, z.core.$strict>>;
|
|
37
|
-
declare const unmeasuredResourceUsageSchema: z.ZodReadonly<z.ZodObject<{
|
|
38
|
-
measure: z.ZodOptional<z.ZodLiteral<false>>;
|
|
39
|
-
}, z.core.$strict>>;
|
|
40
|
-
declare const resourceUsageSchema: z.ZodUnion<readonly [z.ZodReadonly<z.ZodObject<{
|
|
41
|
-
budgets: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
|
|
42
|
-
activeResourceCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
43
|
-
javaScriptEngineHeapBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
44
|
-
residentSetBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
45
|
-
residentSetGrowthBytesPerSecond: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
46
|
-
}, z.core.$strict>>>;
|
|
47
|
-
measure: z.ZodLiteral<true>;
|
|
48
|
-
samplingIntervalMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
49
|
-
}, z.core.$strict>>, z.ZodReadonly<z.ZodObject<{
|
|
50
|
-
measure: z.ZodOptional<z.ZodLiteral<false>>;
|
|
51
|
-
}, z.core.$strict>>]>;
|
|
52
|
-
declare const timeoutSchema: z.ZodReadonly<z.ZodObject<{
|
|
53
|
-
hardMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
54
|
-
softMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
55
|
-
}, z.core.$strict>>;
|
|
56
|
-
declare const microtestExecutionSchema: z.ZodDiscriminatedUnion<[z.ZodReadonly<z.ZodObject<{
|
|
57
|
-
processModel: z.ZodLiteral<"in-process">;
|
|
58
|
-
scheduling: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"concurrent">, z.ZodLiteral<"serial">]>>;
|
|
59
|
-
}, z.core.$strict>>, z.ZodReadonly<z.ZodObject<{
|
|
60
|
-
processModel: z.ZodLiteral<"supervised-process">;
|
|
61
|
-
scheduling: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"concurrent">, z.ZodLiteral<"serial">]>>;
|
|
62
|
-
}, z.core.$strict>>], "processModel">;
|
|
63
|
-
declare const microtestProfileSchema: z.ZodReadonly<z.ZodObject<{
|
|
64
|
-
execution: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodReadonly<z.ZodObject<{
|
|
65
|
-
processModel: z.ZodLiteral<"in-process">;
|
|
66
|
-
scheduling: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"concurrent">, z.ZodLiteral<"serial">]>>;
|
|
67
|
-
}, z.core.$strict>>, z.ZodReadonly<z.ZodObject<{
|
|
68
|
-
processModel: z.ZodLiteral<"supervised-process">;
|
|
69
|
-
scheduling: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"concurrent">, z.ZodLiteral<"serial">]>>;
|
|
70
|
-
}, z.core.$strict>>], "processModel">>;
|
|
71
|
-
reporters: z.ZodOptional<z.ZodReadonly<z.ZodTuple<[z.ZodCustom<DefinedReporter, DefinedReporter>], z.ZodCustom<DefinedReporter, DefinedReporter>>>>;
|
|
72
|
-
resourceUsage: z.ZodOptional<z.ZodUnion<readonly [z.ZodReadonly<z.ZodObject<{
|
|
73
|
-
budgets: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
|
|
74
|
-
activeResourceCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
75
|
-
javaScriptEngineHeapBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
76
|
-
residentSetBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
77
|
-
residentSetGrowthBytesPerSecond: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
78
|
-
}, z.core.$strict>>>;
|
|
79
|
-
measure: z.ZodLiteral<true>;
|
|
80
|
-
samplingIntervalMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
81
|
-
}, z.core.$strict>>, z.ZodReadonly<z.ZodObject<{
|
|
82
|
-
measure: z.ZodOptional<z.ZodLiteral<false>>;
|
|
83
|
-
}, z.core.$strict>>]>>;
|
|
84
|
-
testFamily: z.ZodLiteral<"microtest">;
|
|
85
|
-
timeouts: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
|
|
86
|
-
hardMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
87
|
-
softMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
88
|
-
}, z.core.$strict>>>;
|
|
89
|
-
}, z.core.$strict>>;
|
|
90
|
-
declare const profileSchema: z.ZodDiscriminatedUnion<[z.ZodReadonly<z.ZodObject<{
|
|
91
|
-
execution: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodReadonly<z.ZodObject<{
|
|
92
|
-
processModel: z.ZodLiteral<"in-process">;
|
|
93
|
-
scheduling: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"concurrent">, z.ZodLiteral<"serial">]>>;
|
|
94
|
-
}, z.core.$strict>>, z.ZodReadonly<z.ZodObject<{
|
|
95
|
-
processModel: z.ZodLiteral<"supervised-process">;
|
|
96
|
-
scheduling: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"concurrent">, z.ZodLiteral<"serial">]>>;
|
|
97
|
-
}, z.core.$strict>>], "processModel">>;
|
|
98
|
-
reporters: z.ZodOptional<z.ZodReadonly<z.ZodTuple<[z.ZodCustom<DefinedReporter, DefinedReporter>], z.ZodCustom<DefinedReporter, DefinedReporter>>>>;
|
|
99
|
-
resourceUsage: z.ZodOptional<z.ZodUnion<readonly [z.ZodReadonly<z.ZodObject<{
|
|
100
|
-
budgets: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
|
|
101
|
-
activeResourceCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
102
|
-
javaScriptEngineHeapBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
103
|
-
residentSetBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
104
|
-
residentSetGrowthBytesPerSecond: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
105
|
-
}, z.core.$strict>>>;
|
|
106
|
-
measure: z.ZodLiteral<true>;
|
|
107
|
-
samplingIntervalMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
108
|
-
}, z.core.$strict>>, z.ZodReadonly<z.ZodObject<{
|
|
109
|
-
measure: z.ZodOptional<z.ZodLiteral<false>>;
|
|
110
|
-
}, z.core.$strict>>]>>;
|
|
111
|
-
testFamily: z.ZodLiteral<"microtest">;
|
|
112
|
-
timeouts: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
|
|
113
|
-
hardMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
114
|
-
softMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
115
|
-
}, z.core.$strict>>>;
|
|
116
|
-
}, z.core.$strict>>], "testFamily">;
|
|
117
|
-
declare const profilesSchema: z.ZodReadonly<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodReadonly<z.ZodObject<{
|
|
118
|
-
execution: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodReadonly<z.ZodObject<{
|
|
119
|
-
processModel: z.ZodLiteral<"in-process">;
|
|
120
|
-
scheduling: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"concurrent">, z.ZodLiteral<"serial">]>>;
|
|
121
|
-
}, z.core.$strict>>, z.ZodReadonly<z.ZodObject<{
|
|
122
|
-
processModel: z.ZodLiteral<"supervised-process">;
|
|
123
|
-
scheduling: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"concurrent">, z.ZodLiteral<"serial">]>>;
|
|
124
|
-
}, z.core.$strict>>], "processModel">>;
|
|
125
|
-
reporters: z.ZodOptional<z.ZodReadonly<z.ZodTuple<[z.ZodCustom<DefinedReporter, DefinedReporter>], z.ZodCustom<DefinedReporter, DefinedReporter>>>>;
|
|
126
|
-
resourceUsage: z.ZodOptional<z.ZodUnion<readonly [z.ZodReadonly<z.ZodObject<{
|
|
127
|
-
budgets: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
|
|
128
|
-
activeResourceCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
129
|
-
javaScriptEngineHeapBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
130
|
-
residentSetBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
131
|
-
residentSetGrowthBytesPerSecond: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
132
|
-
}, z.core.$strict>>>;
|
|
133
|
-
measure: z.ZodLiteral<true>;
|
|
134
|
-
samplingIntervalMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
135
|
-
}, z.core.$strict>>, z.ZodReadonly<z.ZodObject<{
|
|
136
|
-
measure: z.ZodOptional<z.ZodLiteral<false>>;
|
|
137
|
-
}, z.core.$strict>>]>>;
|
|
138
|
-
testFamily: z.ZodLiteral<"microtest">;
|
|
139
|
-
timeouts: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
|
|
140
|
-
hardMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
141
|
-
softMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
142
|
-
}, z.core.$strict>>>;
|
|
143
|
-
}, z.core.$strict>>], "testFamily">>>;
|
|
144
|
-
declare const projectConfigSchema: z.ZodReadonly<z.ZodObject<{
|
|
145
|
-
loader: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
|
|
146
|
-
sourceMaps: z.ZodBoolean;
|
|
147
|
-
stripMode: z.ZodLiteral<"strip-only">;
|
|
148
|
-
}, z.core.$strict>>>;
|
|
149
|
-
outputRenderer: z.ZodOptional<z.ZodCustom<DefinedOutputRenderer, DefinedOutputRenderer>>;
|
|
150
|
-
profiles: z.ZodOptional<z.ZodReadonly<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodReadonly<z.ZodObject<{
|
|
151
|
-
execution: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodReadonly<z.ZodObject<{
|
|
152
|
-
processModel: z.ZodLiteral<"in-process">;
|
|
153
|
-
scheduling: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"concurrent">, z.ZodLiteral<"serial">]>>;
|
|
154
|
-
}, z.core.$strict>>, z.ZodReadonly<z.ZodObject<{
|
|
155
|
-
processModel: z.ZodLiteral<"supervised-process">;
|
|
156
|
-
scheduling: z.ZodOptional<z.ZodUnion<readonly [z.ZodLiteral<"concurrent">, z.ZodLiteral<"serial">]>>;
|
|
157
|
-
}, z.core.$strict>>], "processModel">>;
|
|
158
|
-
reporters: z.ZodOptional<z.ZodReadonly<z.ZodTuple<[z.ZodCustom<DefinedReporter, DefinedReporter>], z.ZodCustom<DefinedReporter, DefinedReporter>>>>;
|
|
159
|
-
resourceUsage: z.ZodOptional<z.ZodUnion<readonly [z.ZodReadonly<z.ZodObject<{
|
|
160
|
-
budgets: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
|
|
161
|
-
activeResourceCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
162
|
-
javaScriptEngineHeapBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
163
|
-
residentSetBytes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
164
|
-
residentSetGrowthBytesPerSecond: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
165
|
-
}, z.core.$strict>>>;
|
|
166
|
-
measure: z.ZodLiteral<true>;
|
|
167
|
-
samplingIntervalMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
168
|
-
}, z.core.$strict>>, z.ZodReadonly<z.ZodObject<{
|
|
169
|
-
measure: z.ZodOptional<z.ZodLiteral<false>>;
|
|
170
|
-
}, z.core.$strict>>]>>;
|
|
171
|
-
testFamily: z.ZodLiteral<"microtest">;
|
|
172
|
-
timeouts: z.ZodOptional<z.ZodReadonly<z.ZodObject<{
|
|
173
|
-
hardMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
174
|
-
softMilliseconds: z.ZodOptional<z.ZodNumber>;
|
|
175
|
-
}, z.core.$strict>>>;
|
|
176
|
-
}, z.core.$strict>>], "testFamily">>>>;
|
|
177
|
-
reporters: z.ZodOptional<z.ZodReadonly<z.ZodTuple<[z.ZodCustom<DefinedReporter, DefinedReporter>], z.ZodCustom<DefinedReporter, DefinedReporter>>>>;
|
|
178
|
-
runtimeStateDir: z.ZodOptional<z.ZodString>;
|
|
179
|
-
}, z.core.$strict>>;
|
|
180
|
-
export type RunProjectResourceBudgets = z.infer<typeof resourceBudgetsSchema>;
|
|
181
|
-
export type RunProjectMeasuredResourceUsage = z.infer<typeof measuredResourceUsageSchema>;
|
|
182
|
-
export type RunProjectUnmeasuredResourceUsage = z.infer<typeof unmeasuredResourceUsageSchema>;
|
|
183
|
-
export type RunProjectResourceUsageConfig = z.infer<typeof resourceUsageSchema>;
|
|
184
|
-
export type RunProjectTimeoutConfig = z.infer<typeof timeoutSchema>;
|
|
185
|
-
export type RunProjectMicrotestExecution = z.infer<typeof microtestExecutionSchema>;
|
|
186
|
-
export type RunProjectMicrotestProfileConfig = z.infer<typeof microtestProfileSchema>;
|
|
187
|
-
export type RunProjectProfileConfig = z.infer<typeof profileSchema>;
|
|
188
|
-
export type RunProjectProfilesConfig = z.infer<typeof profilesSchema>;
|
|
189
|
-
export type RunProjectConfig = z.infer<typeof projectConfigSchema>;
|
|
190
31
|
export declare function defineConfig(config: RunProjectConfig): RunProjectConfig;
|
|
191
32
|
export declare function loadRunConfig(request: RunConfigLoadRequest): Promise<LoadedRunConfig>;
|
|
192
|
-
export {};
|
|
193
33
|
//# sourceMappingURL=run-config.d.ts.map
|
package/run/run-config.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"run-config.d.ts","sourceRoot":"","sources":["../../../../source/run/run-config.ts"],"names":[],"mappings":"AAIA,OAAO,
|
|
1
|
+
{"version":3,"file":"run-config.d.ts","sourceRoot":"","sources":["../../../../source/run/run-config.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,+CAA+C,CAAC;AAC3F,OAAO,EAA6B,KAAK,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAC9F,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AACtD,OAAO,EAEH,KAAK,gBAAgB,IAAI,sBAAsB,EAC/C,KAAK,+BAA+B,IAAI,qCAAqC,EAC7E,KAAK,4BAA4B,IAAI,kCAAkC,EACvE,KAAK,gCAAgC,IAAI,sCAAsC,EAC/E,KAAK,uBAAuB,IAAI,6BAA6B,EAC7D,KAAK,wBAAwB,IAAI,8BAA8B,EAC/D,KAAK,yBAAyB,IAAI,+BAA+B,EACjE,KAAK,6BAA6B,IAAI,mCAAmC,EACzE,KAAK,uBAAuB,IAAI,6BAA6B,EAC7D,KAAK,iCAAiC,IAAI,uCAAuC,EACpF,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAEH,KAAK,eAAe,EAIpB,KAAK,iBAAiB,EAIzB,MAAM,gBAAgB,CAAC;AAExB,MAAM,MAAM,gBAAgB,GAAG,sBAAsB,CAAC;AACtD,MAAM,MAAM,+BAA+B,GAAG,qCAAqC,CAAC;AACpF,MAAM,MAAM,4BAA4B,GAAG,kCAAkC,CAAC;AAC9E,MAAM,MAAM,gCAAgC,GAAG,sCAAsC,CAAC;AACtF,MAAM,MAAM,uBAAuB,GAAG,6BAA6B,CAAC;AACpE,MAAM,MAAM,wBAAwB,GAAG,8BAA8B,CAAC;AACtE,MAAM,MAAM,yBAAyB,GAAG,+BAA+B,CAAC;AACxE,MAAM,MAAM,6BAA6B,GAAG,mCAAmC,CAAC;AAChF,MAAM,MAAM,uBAAuB,GAAG,6BAA6B,CAAC;AACpE,MAAM,MAAM,iCAAiC,GAAG,uCAAuC,CAAC;AAOxF,MAAM,MAAM,eAAe,GAAG;IAC1B,QAAQ,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,QAAQ,CAAC,MAAM,EAAE,eAAe,CAAC;IACjC,QAAQ,CAAC,cAAc,EAAE,cAAc,CAAC;IACxC,QAAQ,CAAC,QAAQ,EAAE,iBAAiB,CAAC;IACrC,QAAQ,CAAC,SAAS,EAAE,qBAAqB,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC;IAC3D,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAC;CACpC,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAAG;IAC/B,QAAQ,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF,qBAAa,cAAe,SAAQ,KAAK;gBAClB,OAAO,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,QAAQ,CAAC,YAAY,CAAC;CAIvE;AA4BD,wBAAgB,YAAY,CAAC,MAAM,EAAE,gBAAgB,GAAG,gBAAgB,CAEvE;AAyPD,wBAAsB,aAAa,CAAC,OAAO,EAAE,oBAAoB,GAAG,OAAO,CAAC,eAAe,CAAC,CAW3F"}
|
package/run/run-config.js
CHANGED
|
@@ -10,9 +10,8 @@ import fs from 'node:fs/promises';
|
|
|
10
10
|
import path from 'node:path';
|
|
11
11
|
import { pathToFileURL } from 'node:url';
|
|
12
12
|
import { parse } from '@schema-hub/zod-error-formatter';
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import { isReporter } from "../engine/reporter.js";
|
|
13
|
+
import { createPlainOutputRenderer } from "../engine/reporter-output.js";
|
|
14
|
+
import { projectConfigSchema } from "./run-config-schema.js";
|
|
16
15
|
import { invalidRunProfileNameMessage } from "./run-types.js";
|
|
17
16
|
const defaultConfigFileNames = ['overkill.config.ts', 'overkill.config.js'];
|
|
18
17
|
const defaultResourceUsageSamplingIntervalMilliseconds = 100;
|
|
@@ -46,80 +45,6 @@ const defaultMicrotestExecution = {
|
|
|
46
45
|
processModel: 'supervised-process',
|
|
47
46
|
scheduling: 'concurrent'
|
|
48
47
|
};
|
|
49
|
-
const reporterSchema = z.custom(isReporter, 'must be created with defineReporter(...)');
|
|
50
|
-
const outputRendererSchema = z.custom(isOutputRenderer, 'must be created with defineOutputRenderer(...)');
|
|
51
|
-
const loaderSchema = z
|
|
52
|
-
.strictObject({
|
|
53
|
-
sourceMaps: z.boolean(),
|
|
54
|
-
stripMode: z.literal('strip-only')
|
|
55
|
-
})
|
|
56
|
-
.readonly();
|
|
57
|
-
const positiveSafeIntegerSchema = z.number().refine(function isPositiveSafeInteger(value) {
|
|
58
|
-
return Number.isSafeInteger(value) && value > 0;
|
|
59
|
-
}, 'must be a positive safe integer');
|
|
60
|
-
const resourceBudgetsSchema = z
|
|
61
|
-
.strictObject({
|
|
62
|
-
activeResourceCount: z.optional(z.nullable(positiveSafeIntegerSchema)),
|
|
63
|
-
javaScriptEngineHeapBytes: z.optional(z.nullable(positiveSafeIntegerSchema)),
|
|
64
|
-
residentSetBytes: z.optional(z.nullable(positiveSafeIntegerSchema)),
|
|
65
|
-
residentSetGrowthBytesPerSecond: z.optional(z.nullable(positiveSafeIntegerSchema))
|
|
66
|
-
})
|
|
67
|
-
.readonly();
|
|
68
|
-
const measuredResourceUsageSchema = z
|
|
69
|
-
.strictObject({
|
|
70
|
-
budgets: z.optional(resourceBudgetsSchema),
|
|
71
|
-
measure: z.literal(true),
|
|
72
|
-
samplingIntervalMilliseconds: z.optional(positiveSafeIntegerSchema)
|
|
73
|
-
})
|
|
74
|
-
.readonly();
|
|
75
|
-
const unmeasuredResourceUsageSchema = z
|
|
76
|
-
.strictObject({
|
|
77
|
-
measure: z.optional(z.literal(false))
|
|
78
|
-
})
|
|
79
|
-
.readonly();
|
|
80
|
-
const resourceUsageSchema = z.union([measuredResourceUsageSchema, unmeasuredResourceUsageSchema]);
|
|
81
|
-
const timeoutSchema = z
|
|
82
|
-
.strictObject({
|
|
83
|
-
hardMilliseconds: z.optional(positiveSafeIntegerSchema),
|
|
84
|
-
softMilliseconds: z.optional(positiveSafeIntegerSchema)
|
|
85
|
-
})
|
|
86
|
-
.readonly();
|
|
87
|
-
const microtestExecutionSchema = z.discriminatedUnion('processModel', [
|
|
88
|
-
z
|
|
89
|
-
.strictObject({
|
|
90
|
-
processModel: z.literal('in-process'),
|
|
91
|
-
scheduling: z.optional(z.union([z.literal('concurrent'), z.literal('serial')]))
|
|
92
|
-
})
|
|
93
|
-
.readonly(),
|
|
94
|
-
z
|
|
95
|
-
.strictObject({
|
|
96
|
-
processModel: z.literal('supervised-process'),
|
|
97
|
-
scheduling: z.optional(z.union([z.literal('concurrent'), z.literal('serial')]))
|
|
98
|
-
})
|
|
99
|
-
.readonly()
|
|
100
|
-
]);
|
|
101
|
-
const microtestProfileSchema = z
|
|
102
|
-
.strictObject({
|
|
103
|
-
execution: z.optional(microtestExecutionSchema),
|
|
104
|
-
reporters: z.optional(z.tuple([reporterSchema]).rest(reporterSchema).readonly()),
|
|
105
|
-
resourceUsage: z.optional(resourceUsageSchema),
|
|
106
|
-
testFamily: z.literal('microtest'),
|
|
107
|
-
timeouts: z.optional(timeoutSchema)
|
|
108
|
-
})
|
|
109
|
-
.readonly();
|
|
110
|
-
const profileSchema = z.discriminatedUnion('testFamily', [
|
|
111
|
-
microtestProfileSchema
|
|
112
|
-
]);
|
|
113
|
-
const profilesSchema = z.record(z.string(), profileSchema).readonly();
|
|
114
|
-
const projectConfigSchema = z
|
|
115
|
-
.strictObject({
|
|
116
|
-
loader: z.optional(loaderSchema),
|
|
117
|
-
outputRenderer: z.optional(outputRendererSchema),
|
|
118
|
-
profiles: z.optional(profilesSchema),
|
|
119
|
-
reporters: z.optional(z.tuple([reporterSchema]).rest(reporterSchema).readonly()),
|
|
120
|
-
runtimeStateDir: z.optional(z.string().min(1))
|
|
121
|
-
})
|
|
122
|
-
.readonly();
|
|
123
48
|
export function defineConfig(config) {
|
|
124
49
|
return config;
|
|
125
50
|
}
|
package/run/run-config.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"run-config.js","sourceRoot":"","sources":["../../../../source/run/run-config.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"run-config.js","sourceRoot":"","sources":["../../../../source/run/run-config.ts"],"names":[],"mappings":"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"}
|
package/sbom.cdx.json
CHANGED
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"component": {
|
|
17
17
|
"type": "library",
|
|
18
18
|
"name": "@overkill-dev/run",
|
|
19
|
-
"version": "0.0.
|
|
20
|
-
"bom-ref": "pkg:npm/@overkill-dev/run@0.0.
|
|
21
|
-
"purl": "pkg:npm/@overkill-dev/run@0.0.
|
|
19
|
+
"version": "0.0.17",
|
|
20
|
+
"bom-ref": "pkg:npm/@overkill-dev/run@0.0.17",
|
|
21
|
+
"purl": "pkg:npm/@overkill-dev/run@0.0.17"
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
24
|
"components": [
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
"ref": "pkg:npm/@enormora/wall-clock@0.0.3"
|
|
133
133
|
},
|
|
134
134
|
{
|
|
135
|
-
"ref": "pkg:npm/@overkill-dev/run@0.0.
|
|
135
|
+
"ref": "pkg:npm/@overkill-dev/run@0.0.17",
|
|
136
136
|
"dependsOn": [
|
|
137
137
|
"pkg:npm/@enormora/wall-clock@0.0.3",
|
|
138
138
|
"pkg:npm/@schema-hub/zod-error-formatter@0.0.16",
|