d68f003000
CI / Change detection (push) Has been cancelled
CI / Version drift (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / Workflow RLM cache (push) Has been cancelled
CI / Test (macos-latest) (push) Has been cancelled
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / npm wrapper smoke (push) Has been cancelled
CI / Mobile runtime smoke (push) Has been cancelled
CI / Workflow lint (push) Has been cancelled
CI / Documentation (push) Has been cancelled
Web Frontend / Lint & Type Check (push) Failing after 1s
Auto-close harvested PRs / close (push) Failing after 1s
cargo-deny / cargo-deny (bans licenses sources) (push) Failing after 1s
Security audit / cargo-audit (push) Failing after 1s
Sync to CNB / sync (push) Failing after 1s
cargo-deny / cargo-deny (advisories) (push) Failing after 3s
Web Frontend / Deploy to Cloudflare (push) Has been cancelled
62 lines
1.8 KiB
JavaScript
62 lines
1.8 KiB
JavaScript
const assert = require("node:assert/strict");
|
|
const test = require("node:test");
|
|
|
|
const { run, _internal } = require("../scripts/run");
|
|
|
|
test("version fallback handles only version flags", () => {
|
|
assert.equal(_internal.isVersionFlag(["--version"]), true);
|
|
assert.equal(_internal.isVersionFlag(["-V"]), true);
|
|
assert.equal(_internal.isVersionFlag(["-v"]), false);
|
|
assert.equal(_internal.isVersionFlag(["--verbose"]), false);
|
|
});
|
|
|
|
test("version flags prefer the installed binary over package metadata", async () => {
|
|
let spawned = false;
|
|
const exits = [];
|
|
|
|
await run("codewhale", {
|
|
args: ["--version"],
|
|
getBinaryPath: async () => "/tmp/codewhale-test-binary",
|
|
spawnSync: (binary, args, options) => {
|
|
spawned = true;
|
|
assert.equal(binary, "/tmp/codewhale-test-binary");
|
|
assert.deepEqual(args, ["--version"]);
|
|
assert.deepEqual(options, { stdio: "inherit" });
|
|
return { status: 0 };
|
|
},
|
|
exit: (status) => {
|
|
exits.push(status);
|
|
},
|
|
});
|
|
|
|
assert.equal(spawned, true);
|
|
assert.deepEqual(exits, [0]);
|
|
});
|
|
|
|
test("version flags fall back to package metadata when the binary is unavailable", async () => {
|
|
const originalLog = console.log;
|
|
const lines = [];
|
|
const exits = [];
|
|
console.log = (line) => lines.push(line);
|
|
try {
|
|
await run("codewhale", {
|
|
args: ["--version"],
|
|
getBinaryPath: async () => {
|
|
throw new Error("download unavailable");
|
|
},
|
|
spawnSync: () => {
|
|
throw new Error("spawn should not run without a binary");
|
|
},
|
|
exit: (status) => {
|
|
exits.push(status);
|
|
},
|
|
});
|
|
} finally {
|
|
console.log = originalLog;
|
|
}
|
|
|
|
assert.deepEqual(exits, [0]);
|
|
assert.match(lines.join("\n"), /codewhale \(npm wrapper\) v/);
|
|
assert.match(lines.join("\n"), /binary version: v/);
|
|
});
|