fix(ci): stabilize windows tests

This commit is contained in:
Peter Steinberger
2026-01-08 02:44:09 +00:00
parent f3f5e49d94
commit fbeb9e6775
10 changed files with 148 additions and 62 deletions

View File

@@ -1,3 +1,4 @@
import path from "node:path";
import { afterEach, describe, expect, it, vi } from "vitest";
const fsMocks = vi.hoisted(() => ({
@@ -22,14 +23,16 @@ afterEach(() => {
describe("resolveGatewayProgramArguments", () => {
it("uses realpath-resolved dist entry when running via npx shim", async () => {
process.argv = ["node", "/tmp/.npm/_npx/63c3/node_modules/.bin/clawdbot"];
fsMocks.realpath.mockResolvedValue(
const argv1 = path.resolve(
"/tmp/.npm/_npx/63c3/node_modules/.bin/clawdbot",
);
const entryPath = path.resolve(
"/tmp/.npm/_npx/63c3/node_modules/clawdbot/dist/entry.js",
);
process.argv = ["node", argv1];
fsMocks.realpath.mockResolvedValue(entryPath);
fsMocks.access.mockImplementation(async (target: string) => {
if (
target === "/tmp/.npm/_npx/63c3/node_modules/clawdbot/dist/entry.js"
) {
if (target === entryPath) {
return;
}
throw new Error("missing");
@@ -39,7 +42,7 @@ describe("resolveGatewayProgramArguments", () => {
expect(result.programArguments).toEqual([
process.execPath,
"/tmp/.npm/_npx/63c3/node_modules/clawdbot/dist/entry.js",
entryPath,
"gateway-daemon",
"--port",
"18789",
@@ -47,12 +50,16 @@ describe("resolveGatewayProgramArguments", () => {
});
it("falls back to node_modules package dist when .bin path is not resolved", async () => {
process.argv = ["node", "/tmp/.npm/_npx/63c3/node_modules/.bin/clawdbot"];
const argv1 = path.resolve(
"/tmp/.npm/_npx/63c3/node_modules/.bin/clawdbot",
);
const indexPath = path.resolve(
"/tmp/.npm/_npx/63c3/node_modules/clawdbot/dist/index.js",
);
process.argv = ["node", argv1];
fsMocks.realpath.mockRejectedValue(new Error("no realpath"));
fsMocks.access.mockImplementation(async (target: string) => {
if (
target === "/tmp/.npm/_npx/63c3/node_modules/clawdbot/dist/index.js"
) {
if (target === indexPath) {
return;
}
throw new Error("missing");
@@ -62,7 +69,7 @@ describe("resolveGatewayProgramArguments", () => {
expect(result.programArguments).toEqual([
process.execPath,
"/tmp/.npm/_npx/63c3/node_modules/clawdbot/dist/index.js",
indexPath,
"gateway-daemon",
"--port",
"18789",