📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-07-29 07:59:17 +00:00
parent 60364c6660
commit 0c634043e3
427 changed files with 26138 additions and 2336 deletions
@@ -7,6 +7,9 @@ const {
discoverTestCommands,
isTestFile,
listFiles,
parseArgs,
shardCommands,
stableShardIndex,
} = require("./run-test-suite.js");
const TEST_ROOT = path.join("tools", "scripts", "tests");
@@ -41,10 +44,83 @@ function testNetworkTestsRemainExplicitlySeparated() {
}
}
function testDefaultAndNetworkModesRejectSharding() {
assert.deepStrictEqual(parseArgs([]), {
mode: null,
shardIndex: null,
shardCount: null,
});
assert.deepStrictEqual(parseArgs(["--network"]), {
mode: "--network",
shardIndex: null,
shardCount: null,
});
assert.throws(
() => parseArgs(["--shard-index", "0", "--shard-count", "2"]),
/only with explicit --local mode/,
);
assert.throws(
() => parseArgs(["--network", "--shard-index=0", "--shard-count=2"]),
/only with explicit --local mode/,
);
}
function testShardArgumentsFailClosed() {
assert.deepStrictEqual(
parseArgs(["--local", "--shard-index", "0", "--shard-count=3"]),
{ mode: "--local", shardIndex: 0, shardCount: 3 },
);
assert.throws(() => parseArgs(["--local", "--shard-index", "0"]), /supplied together/);
assert.throws(
() => parseArgs(["--local", "--shard-index", "3", "--shard-count", "3"]),
/zero-based/,
);
assert.throws(
() => parseArgs(["--local", "--shard-index", "0", "--shard-count", "0"]),
/at least 1/,
);
assert.throws(
() => parseArgs(["--local", "--shard-index", "x", "--shard-count", "3"]),
/must be an integer/,
);
assert.throws(() => parseArgs(["--local", "--unexpected"]), /Unknown test option/);
}
function testStableShardingPartitionsEveryLocalTestExactlyOnce() {
const { local } = discoverTestCommands();
const shardCount = 4;
const assignments = new Map();
for (let shardIndex = 0; shardIndex < shardCount; shardIndex += 1) {
for (const command of shardCommands(local, shardIndex, shardCount)) {
const testPath = commandPath(command);
assert.strictEqual(stableShardIndex(testPath, shardCount), shardIndex);
assignments.set(testPath, (assignments.get(testPath) || 0) + 1);
}
}
assert.deepStrictEqual(
[...assignments.keys()].sort(),
local.map(commandPath).sort(),
);
assert.ok([...assignments.values()].every((count) => count === 1));
const reversed = [...local].reverse();
for (let shardIndex = 0; shardIndex < shardCount; shardIndex += 1) {
assert.deepStrictEqual(
shardCommands(reversed, shardIndex, shardCount).map(commandPath).sort(),
shardCommands(local, shardIndex, shardCount).map(commandPath).sort(),
);
}
}
function main() {
testDiscoveryCoversEveryRepositoryTestFile();
testNetworkTestsRemainExplicitlySeparated();
console.log("run-test-suite discovery tests passed.");
testDefaultAndNetworkModesRejectSharding();
testShardArgumentsFailClosed();
testStableShardingPartitionsEveryLocalTestExactlyOnce();
console.log("run-test-suite discovery and sharding tests passed.");
}
main();