@overkill-dev/run 0.0.3 → 0.0.5

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.
Files changed (103) hide show
  1. package/assertion-protocol/assertion-evaluation.js +6 -0
  2. package/assertion-protocol/assertion-evaluation.js.map +1 -0
  3. package/assertion-protocol/assertion-node.js +33 -0
  4. package/assertion-protocol/assertion-node.js.map +1 -0
  5. package/assertion-protocol/assertion-reference.js +49 -0
  6. package/assertion-protocol/assertion-reference.js.map +1 -0
  7. package/assertion-protocol/assertions/boolean.js +12 -0
  8. package/assertion-protocol/assertions/boolean.js.map +1 -0
  9. package/assertion-protocol/assertions/collection.js +21 -0
  10. package/assertion-protocol/assertions/collection.js.map +1 -0
  11. package/assertion-protocol/assertions/dispatch.js +47 -0
  12. package/assertion-protocol/assertions/dispatch.js.map +1 -0
  13. package/assertion-protocol/assertions/equality.js +24 -0
  14. package/assertion-protocol/assertions/equality.js.map +1 -0
  15. package/assertion-protocol/assertions/fail.js +8 -0
  16. package/assertion-protocol/assertions/fail.js.map +1 -0
  17. package/assertion-protocol/assertions/numeric.js +43 -0
  18. package/assertion-protocol/assertions/numeric.js.map +1 -0
  19. package/assertion-protocol/assertions/partial.js +17 -0
  20. package/assertion-protocol/assertions/partial.js.map +1 -0
  21. package/assertion-protocol/assertions/presence.js +20 -0
  22. package/assertion-protocol/assertions/presence.js.map +1 -0
  23. package/assertion-protocol/assertions/string.js +33 -0
  24. package/assertion-protocol/assertions/string.js.map +1 -0
  25. package/assertion-protocol/assertions/type-shape.js +43 -0
  26. package/assertion-protocol/assertions/type-shape.js.map +1 -0
  27. package/assertion-protocol/collection-count.js +42 -0
  28. package/assertion-protocol/collection-count.js.map +1 -0
  29. package/assertion-protocol/evaluation.js +170 -0
  30. package/assertion-protocol/evaluation.js.map +1 -0
  31. package/assertion-protocol/partial-matching.js +13 -0
  32. package/assertion-protocol/partial-matching.js.map +1 -0
  33. package/assertion-protocol/source-location.js +76 -0
  34. package/assertion-protocol/source-location.js.map +1 -0
  35. package/assertion-protocol/thrown-error-record.js +17 -0
  36. package/assertion-protocol/thrown-error-record.js.map +1 -0
  37. package/assertion-protocol/thrown-matcher.js +201 -0
  38. package/assertion-protocol/thrown-matcher.js.map +1 -0
  39. package/compare/comparison-result.js +47 -0
  40. package/compare/comparison-result.js.map +1 -0
  41. package/compare/comparison-state.js +20 -0
  42. package/compare/comparison-state.js.map +1 -0
  43. package/compare/comparison.js +78 -0
  44. package/compare/comparison.js.map +1 -0
  45. package/compare/diff-path.js +37 -0
  46. package/compare/diff-path.js.map +1 -0
  47. package/compare/raw-comparison.js +285 -0
  48. package/compare/raw-comparison.js.map +1 -0
  49. package/compare/serialized-value-classification.js +99 -0
  50. package/compare/serialized-value-classification.js.map +1 -0
  51. package/compare/serialized-value-shape.js +12 -0
  52. package/compare/serialized-value-shape.js.map +1 -0
  53. package/compare/serialized-value-state.js +55 -0
  54. package/compare/serialized-value-state.js.map +1 -0
  55. package/compare/serialized-value.js +387 -0
  56. package/compare/serialized-value.js.map +1 -0
  57. package/compare/structured-diff.js +382 -0
  58. package/compare/structured-diff.js.map +1 -0
  59. package/compare/value-classification.js +112 -0
  60. package/compare/value-classification.js.map +1 -0
  61. package/diff/binary-diff.js +49 -0
  62. package/diff/binary-diff.js.map +1 -0
  63. package/diff/string-diff.js +22 -0
  64. package/diff/string-diff.js.map +1 -0
  65. package/engine/assertion-facade.js +361 -0
  66. package/engine/assertion-facade.js.map +1 -0
  67. package/engine/case-execution.js +408 -0
  68. package/engine/case-execution.js.map +1 -0
  69. package/engine/custom-assertion-recording.js +175 -0
  70. package/engine/custom-assertion-recording.js.map +1 -0
  71. package/engine/execution.d.ts +20 -0
  72. package/engine/execution.d.ts.map +1 -0
  73. package/engine/execution.js +323 -0
  74. package/engine/execution.js.map +1 -0
  75. package/engine/identity.js +5 -0
  76. package/engine/identity.js.map +1 -0
  77. package/engine/reporter-event-queue.js +23 -0
  78. package/engine/reporter-event-queue.js.map +1 -0
  79. package/engine/reporter.d.ts +5 -0
  80. package/engine/reporter.d.ts.map +1 -1
  81. package/engine/reporter.js +177 -0
  82. package/engine/reporter.js.map +1 -0
  83. package/engine/require-assertion-facade.js +127 -0
  84. package/engine/require-assertion-facade.js.map +1 -0
  85. package/engine/run-result.js +13 -0
  86. package/engine/run-result.js.map +1 -0
  87. package/engine/test-node.d.ts +17 -1
  88. package/engine/test-node.d.ts.map +1 -1
  89. package/engine/test-plan.d.ts +8 -2
  90. package/engine/test-plan.d.ts.map +1 -1
  91. package/package.json +8 -3
  92. package/packages/engine/assertion-protocol.entry-point.js +4 -0
  93. package/packages/engine/assertion-protocol.entry-point.js.map +1 -0
  94. package/packages/run/run.entry-point.d.ts +2 -1
  95. package/packages/run/run.entry-point.d.ts.map +1 -1
  96. package/packages/run/run.entry-point.js +1 -0
  97. package/packages/run/run.entry-point.js.map +1 -1
  98. package/readme.md +7 -2
  99. package/run/run.d.ts +87 -36
  100. package/run/run.d.ts.map +1 -1
  101. package/run/run.js +182 -8
  102. package/run/run.js.map +1 -1
  103. package/sbom.cdx.json +22 -5
package/run/run.js CHANGED
@@ -1,12 +1,186 @@
1
- function acceptRunRequestForFutureResolution(request) {
2
- return request;
1
+ import { randomBytes } from 'node:crypto';
2
+ import { createWallClock } from '@enormora/wall-clock';
3
+ import { serializeValue } from "../compare/serialized-value.js";
4
+ import { createExecute } from "../engine/execution.js";
5
+ import { createReporterDispatcher } from "../engine/reporter.js";
6
+ const minimumSeedValue = 0n;
7
+ const seedByteLength = 8;
8
+ export class RunResolutionError extends Error {
9
+ errorCode;
10
+ constructor(message, options, code) {
11
+ super(message, options);
12
+ this.name = 'RunResolutionError';
13
+ this.errorCode = code;
14
+ }
15
+ code() {
16
+ return this.errorCode;
17
+ }
3
18
  }
4
- export async function resolveRun(request) {
5
- acceptRunRequestForFutureResolution(request);
6
- throw new Error('resolveRun() is not implemented yet.');
19
+ function unsupportedRequest(message) {
20
+ throw new RunResolutionError(message, undefined, 'unsupported-request');
7
21
  }
8
- export async function run(request) {
9
- acceptRunRequestForFutureResolution(request);
10
- throw new Error('run() is not implemented yet.');
22
+ function invalidRequest(message) {
23
+ throw new RunResolutionError(message, undefined, 'invalid-request');
24
+ }
25
+ function validateRunPaths(request) {
26
+ if (request.paths.length > 0) {
27
+ unsupportedRequest('Path discovery is not implemented yet.');
28
+ }
29
+ }
30
+ function validateRunShard(request) {
31
+ if (request.shard.index !== 0 || request.shard.total !== 1) {
32
+ unsupportedRequest('Sharding is not implemented yet.');
33
+ }
34
+ }
35
+ function validateRunSeed(request) {
36
+ if (request.seed.value !== null && request.seed.value < minimumSeedValue) {
37
+ invalidRequest('Run seed must be a nonnegative bigint.');
38
+ }
39
+ }
40
+ function validateRunRequest(request) {
41
+ validateRunPaths(request);
42
+ validateRunShard(request);
43
+ validateRunSeed(request);
44
+ }
45
+ function resolvedSeed(request, dependencies) {
46
+ return request.seed.value ?? dependencies.createSeed();
47
+ }
48
+ function copyLoaderConfig(loader) {
49
+ return {
50
+ sourceMaps: loader.sourceMaps,
51
+ stripMode: loader.stripMode
52
+ };
53
+ }
54
+ function copyRunShard(shard) {
55
+ return {
56
+ index: shard.index,
57
+ total: shard.total
58
+ };
59
+ }
60
+ function copyRunRequest(request) {
61
+ return {
62
+ baselineUpdateMode: request.baselineUpdateMode,
63
+ capture: request.capture,
64
+ coverage: request.coverage,
65
+ debug: {
66
+ mode: request.debug.mode,
67
+ selectors: []
68
+ },
69
+ execution: { mode: request.execution.mode },
70
+ order: request.order,
71
+ paths: Array.from(request.paths),
72
+ profile: request.profile,
73
+ seed: { value: request.seed.value },
74
+ selection: { kind: request.selection.kind },
75
+ shard: copyRunShard(request.shard),
76
+ verbose: request.verbose
77
+ };
78
+ }
79
+ function copyRunConfig(config) {
80
+ return {
81
+ loader: copyLoaderConfig(config.loader),
82
+ reporters: Array.from(config.reporters),
83
+ runtimeStateDir: config.runtimeStateDir
84
+ };
85
+ }
86
+ function runCaseFacts(metadata, id) {
87
+ return {
88
+ id,
89
+ metadata: serializeValue(metadata)
90
+ };
91
+ }
92
+ function createRunFacts(command, request, config, dependencies) {
93
+ return {
94
+ cases: command.testPlan.cases.map(function toRunCaseFacts(testCase) {
95
+ return runCaseFacts(testCase.metadata, testCase.id);
96
+ }),
97
+ environment: {
98
+ node: {
99
+ arch: dependencies.node.arch,
100
+ platform: dependencies.node.platform,
101
+ version: dependencies.node.version
102
+ },
103
+ runtimeStateDir: config.runtimeStateDir
104
+ },
105
+ execution: {
106
+ baselineUpdateMode: request.baselineUpdateMode,
107
+ capture: request.capture,
108
+ coverage: request.coverage,
109
+ debug: request.debug,
110
+ mode: request.execution.mode,
111
+ order: request.order,
112
+ profile: request.profile,
113
+ verbose: request.verbose
114
+ },
115
+ loader: config.loader,
116
+ reproducibility: {
117
+ seed: resolvedSeed(request, dependencies).toString(),
118
+ shard: request.shard
119
+ }
120
+ };
121
+ }
122
+ function freezeValue(value) {
123
+ if (value !== null && typeof value === 'object') {
124
+ for (const propertyValue of Object.values(value)) {
125
+ freezeValue(propertyValue);
126
+ }
127
+ Object.freeze(value);
128
+ }
129
+ return value;
130
+ }
131
+ function createResolvedRun(command, dependencies) {
132
+ validateRunRequest(command.request);
133
+ const request = freezeValue(copyRunRequest(command.request));
134
+ const config = freezeValue(copyRunConfig(command.config));
135
+ const facts = freezeValue(createRunFacts(command, request, config, dependencies));
136
+ return freezeValue({
137
+ config,
138
+ facts,
139
+ reporters: config.reporters,
140
+ request,
141
+ testPlan: command.testPlan
142
+ });
143
+ }
144
+ export function createRunApi(dependencies) {
145
+ return {
146
+ async resolveRun(command) {
147
+ return createResolvedRun(command, dependencies);
148
+ },
149
+ async run(command) {
150
+ const resolvedRun = createResolvedRun(command, dependencies);
151
+ return await dependencies.execute(resolvedRun.testPlan, {
152
+ execution: { mode: 'concurrent-in-process' },
153
+ reporters: resolvedRun.reporters,
154
+ runFacts: resolvedRun.facts,
155
+ startedAt: dependencies.readStartedAt()
156
+ });
157
+ }
158
+ };
159
+ }
160
+ function createDefaultSeed() {
161
+ return randomBytes(seedByteLength).readBigUInt64BE();
162
+ }
163
+ const defaultWallClock = createWallClock();
164
+ const defaultRunApi = createRunApi({
165
+ createSeed: createDefaultSeed,
166
+ execute: createExecute({
167
+ reporterDispatcher: createReporterDispatcher({ wallClock: defaultWallClock }),
168
+ wallClock: defaultWallClock
169
+ }),
170
+ node: {
171
+ arch: process.arch,
172
+ platform: process.platform,
173
+ version: process.versions.node
174
+ },
175
+ readStartedAt() {
176
+ const startedAt = new Date(defaultWallClock.currentTimestampInMilliseconds);
177
+ return startedAt.toISOString();
178
+ }
179
+ });
180
+ export async function resolveRun(command) {
181
+ return await defaultRunApi.resolveRun(command);
182
+ }
183
+ export async function run(command) {
184
+ return await defaultRunApi.run(command);
11
185
  }
12
186
  //# sourceMappingURL=run.js.map
package/run/run.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"run.js","sourceRoot":"","sources":["../../../../source/run/run.ts"],"names":[],"mappings":"AAwEA,SAAS,mCAAmC,CAAC,OAAmB;IAC5D,OAAO,OAAO,CAAC;AACnB,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,UAAU,CAAC,OAAmB;IAChD,mCAAmC,CAAC,OAAO,CAAC,CAAC;IAE7C,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;AAC5D,CAAC;AAED,MAAM,CAAC,KAAK,UAAU,GAAG,CAAC,OAAmB;IACzC,mCAAmC,CAAC,OAAO,CAAC,CAAC;IAE7C,MAAM,IAAI,KAAK,CAAC,+BAA+B,CAAC,CAAC;AACrD,CAAC"}
1
+ {"version":3,"file":"run.js","sourceRoot":"","sources":["../../../../source/run/run.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.3",
20
- "bom-ref": "pkg:npm/@overkill-dev/run@0.0.3",
21
- "purl": "pkg:npm/@overkill-dev/run@0.0.3"
19
+ "version": "0.0.5",
20
+ "bom-ref": "pkg:npm/@overkill-dev/run@0.0.5",
21
+ "purl": "pkg:npm/@overkill-dev/run@0.0.5"
22
22
  }
23
23
  },
24
24
  "components": [
@@ -34,6 +34,19 @@
34
34
  }
35
35
  ],
36
36
  "purl": "pkg:npm/@enormora/wall-clock@0.0.3"
37
+ },
38
+ {
39
+ "type": "library",
40
+ "name": "diff",
41
+ "version": "9.0.0",
42
+ "bom-ref": "pkg:npm/diff@9.0.0",
43
+ "scope": "required",
44
+ "licenses": [
45
+ {
46
+ "expression": "BSD-3-Clause"
47
+ }
48
+ ],
49
+ "purl": "pkg:npm/diff@9.0.0"
37
50
  }
38
51
  ],
39
52
  "dependencies": [
@@ -41,10 +54,14 @@
41
54
  "ref": "pkg:npm/@enormora/wall-clock@0.0.3"
42
55
  },
43
56
  {
44
- "ref": "pkg:npm/@overkill-dev/run@0.0.3",
57
+ "ref": "pkg:npm/@overkill-dev/run@0.0.5",
45
58
  "dependsOn": [
46
- "pkg:npm/@enormora/wall-clock@0.0.3"
59
+ "pkg:npm/@enormora/wall-clock@0.0.3",
60
+ "pkg:npm/diff@9.0.0"
47
61
  ]
62
+ },
63
+ {
64
+ "ref": "pkg:npm/diff@9.0.0"
48
65
  }
49
66
  ]
50
67
  }