Some checks failed
Update All Top Ranking Issues / update_top_ranking_issues (push) Has been cancelled
Triage Project Sync (#84) / Sync triage project (push) Has been cancelled
release_nightly / notify_on_failure (push) Has been cancelled
release_nightly / check_style (push) Has been cancelled
release_nightly / run_tests_windows (push) Has been cancelled
release_nightly / clippy_windows (push) Has been cancelled
release_nightly / bundle_linux_aarch64 (push) Has been cancelled
release_nightly / bundle_linux_x86_64 (push) Has been cancelled
release_nightly / bundle_mac_aarch64 (push) Has been cancelled
release_nightly / bundle_mac_x86_64 (push) Has been cancelled
release_nightly / bundle_windows_aarch64 (push) Has been cancelled
release_nightly / bundle_windows_x86_64 (push) Has been cancelled
release_nightly / build_nix_linux_x86_64 (push) Has been cancelled
release_nightly / build_nix_mac_aarch64 (push) Has been cancelled
release_nightly / update_nightly_tag (push) Has been cancelled
Hotfix Review Monitor / check-hotfix-reviews (push) Has been cancelled
Stale PR Review Reminder / check-stale-prs (push) Has been cancelled
Update Weekly Top Ranking Issues / update_top_ranking_issues (push) Has been cancelled
Bump collab-staging Tag / update-collab-staging-tag (push) Has been cancelled
compliance_check / scheduled_compliance_check (push) Has been cancelled
Single-commit orphan branch: full zed-industries/zed @ 8c74db0 source tree with a 3-file patch applied (no upstream history). Patch (crates/gpui_linux/src/linux/wayland/): - serial.rs: add SerialKind::KeyboardEnter - client.rs: store wl_keyboard.enter serial; add latest_serial_of() - window.rs: activate() uses keyboard-enter serial (Mutter focus gate) Mutter honors window activation only when the token carries the keyboard- focus serial from wl_keyboard.enter; GPUI used a stale mouse-press serial. See docs/tray-window-focus-wayland.md in logiguard. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
136 lines
3.7 KiB
JavaScript
Executable File
136 lines
3.7 KiB
JavaScript
Executable File
#!/usr/bin/env node --redirect-warnings=/dev/null
|
|
|
|
const fs = require("fs");
|
|
const path = require("path");
|
|
const { spawnSync } = require("child_process");
|
|
|
|
const FAILING_SEED_REGEX = /failing seed: (\d+)/gi;
|
|
const CARGO_TEST_ARGS = ["--release", "--lib", "--package", "collab"];
|
|
|
|
if (require.main === module) {
|
|
if (process.argv.length < 4) {
|
|
process.stderr.write(
|
|
"usage: script/randomized-test-minimize <input-plan> <output-plan> [start-index]\n",
|
|
);
|
|
process.exit(1);
|
|
}
|
|
|
|
minimizeTestPlan(
|
|
process.argv[2],
|
|
process.argv[3],
|
|
parseInt(process.argv[4]) || 0,
|
|
);
|
|
}
|
|
|
|
function minimizeTestPlan(inputPlanPath, outputPlanPath, startIndex = 0) {
|
|
const tempPlanPath = inputPlanPath + ".try";
|
|
|
|
fs.copyFileSync(inputPlanPath, outputPlanPath);
|
|
let testPlan = JSON.parse(fs.readFileSync(outputPlanPath, "utf8"));
|
|
|
|
process.stderr.write("minimizing failing test plan...\n");
|
|
for (let ix = startIndex; ix < testPlan.length; ix++) {
|
|
// Skip 'MutateClients' entries, since they themselves are not single operations.
|
|
if (testPlan[ix].MutateClients) {
|
|
continue;
|
|
}
|
|
|
|
// Remove a row from the test plan
|
|
const newTestPlan = testPlan.slice();
|
|
newTestPlan.splice(ix, 1);
|
|
fs.writeFileSync(tempPlanPath, serializeTestPlan(newTestPlan), "utf8");
|
|
|
|
process.stderr.write(
|
|
`${ix}/${testPlan.length}: ${JSON.stringify(testPlan[ix])}`,
|
|
);
|
|
const failingSeed = runTests({
|
|
SEED: "0",
|
|
LOAD_PLAN: tempPlanPath,
|
|
SAVE_PLAN: tempPlanPath,
|
|
ITERATIONS: "500",
|
|
});
|
|
|
|
// If the test failed, keep the test plan with the removed row. Reload the test
|
|
// plan from the JSON file, since the test itself will remove any operations
|
|
// which are no longer valid before saving the test plan.
|
|
if (failingSeed != null) {
|
|
process.stderr.write(` - remove. failing seed: ${failingSeed}.\n`);
|
|
fs.copyFileSync(tempPlanPath, outputPlanPath);
|
|
testPlan = JSON.parse(fs.readFileSync(outputPlanPath, "utf8"));
|
|
ix--;
|
|
} else {
|
|
process.stderr.write(` - keep.\n`);
|
|
}
|
|
}
|
|
|
|
fs.unlinkSync(tempPlanPath);
|
|
|
|
// Re-run the final minimized plan to get the correct failing seed.
|
|
// This is a workaround for the fact that the execution order can
|
|
// slightly change when replaying a test plan after it has been
|
|
// saved and loaded.
|
|
const failingSeed = runTests({
|
|
SEED: "0",
|
|
ITERATIONS: "5000",
|
|
LOAD_PLAN: outputPlanPath,
|
|
});
|
|
|
|
process.stderr.write(`final test plan: ${outputPlanPath}\n`);
|
|
process.stderr.write(`final seed: ${failingSeed}\n`);
|
|
return failingSeed;
|
|
}
|
|
|
|
function buildTests() {
|
|
const { status } = spawnSync(
|
|
"cargo",
|
|
["test", "--no-run", ...CARGO_TEST_ARGS],
|
|
{
|
|
stdio: "inherit",
|
|
encoding: "utf8",
|
|
env: {
|
|
...process.env,
|
|
},
|
|
},
|
|
);
|
|
if (status !== 0) {
|
|
throw new Error("build failed");
|
|
}
|
|
}
|
|
|
|
function runTests(env) {
|
|
const { status, stdout } = spawnSync(
|
|
"cargo",
|
|
["test", ...CARGO_TEST_ARGS, "random_project_collaboration"],
|
|
{
|
|
stdio: "pipe",
|
|
encoding: "utf8",
|
|
env: {
|
|
...process.env,
|
|
...env,
|
|
},
|
|
},
|
|
);
|
|
|
|
if (status !== 0) {
|
|
FAILING_SEED_REGEX.lastIndex = 0;
|
|
const match = FAILING_SEED_REGEX.exec(stdout);
|
|
if (!match) {
|
|
process.stderr.write("test failed, but no failing seed found:\n");
|
|
process.stderr.write(stdout);
|
|
process.stderr.write("\n");
|
|
process.exit(1);
|
|
}
|
|
return match[1];
|
|
} else {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
function serializeTestPlan(plan) {
|
|
return "[\n" + plan.map((row) => JSON.stringify(row)).join(",\n") + "\n]\n";
|
|
}
|
|
|
|
exports.buildTests = buildTests;
|
|
exports.runTests = runTests;
|
|
exports.minimizeTestPlan = minimizeTestPlan;
|