Files
openclaw/test/helpers/openclaw-test-instance.test.ts
2026-05-27 22:29:36 +02:00

86 lines
2.7 KiB
TypeScript

import fs from "node:fs/promises";
import path from "node:path";
import { describe, expect, it } from "vitest";
import { createOpenClawTestInstance, testing } from "./openclaw-test-instance.js";
async function expectPathMissing(targetPath: string): Promise<void> {
try {
await fs.stat(targetPath);
} catch (error) {
expect((error as NodeJS.ErrnoException).code).toBe("ENOENT");
return;
}
throw new Error(`Expected missing path: ${targetPath}`);
}
describe("openclaw test instance", () => {
it("keeps only bounded child output tails in helper logs", () => {
const stdout = testing.createBoundedStringLog();
const stderr = testing.createBoundedStringLog();
testing.appendLogChunk(stdout, `old stdout ${"x".repeat(64)}\n`, 32);
testing.appendLogChunk(stdout, "recent stdout\n", 32);
testing.appendLogChunk(stderr, `old stderr ${"y".repeat(64)}\n`, 32);
testing.appendLogChunk(stderr, "recent stderr\n", 32);
const logs = testing.formatLogs(stdout, stderr);
expect(logs).toContain("[output truncated to last");
expect(logs).toContain("recent stdout");
expect(logs).toContain("recent stderr");
expect(logs).not.toContain("old stdout");
expect(logs).not.toContain("old stderr");
});
it("creates isolated config and spawn env without mutating process env", async () => {
const previousHome = process.env.HOME;
const inst = await createOpenClawTestInstance({
name: "instance-unit",
gatewayToken: "gateway-token",
hookToken: "hook-token",
config: {
gateway: {
bind: "loopback",
},
},
env: {
OPENCLAW_SKIP_CRON: "0",
},
});
try {
expect(process.env.HOME).toBe(previousHome);
expect(inst.homeDir).toBe(path.join(inst.state.root, "home"));
expect(inst.stateDir).toBe(path.join(inst.homeDir, ".openclaw"));
expect(inst.configPath).toBe(path.join(inst.stateDir, "openclaw.json"));
expect(inst.env.HOME).toBe(inst.homeDir);
expect(inst.env.OPENCLAW_STATE_DIR).toBe(inst.stateDir);
expect(inst.env.OPENCLAW_CONFIG_PATH).toBe(inst.configPath);
expect(inst.env.OPENCLAW_SKIP_CRON).toBe("0");
const config = JSON.parse(await fs.readFile(inst.configPath, "utf8"));
expect(config).toStrictEqual({
gateway: {
bind: "loopback",
port: inst.port,
auth: {
mode: "token",
token: "gateway-token",
},
controlUi: {
enabled: false,
},
},
hooks: {
enabled: true,
token: "hook-token",
path: "/hooks",
},
});
} finally {
await inst.cleanup();
}
await expectPathMissing(inst.state.root);
});
});