mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-28 10:12:10 +00:00
85 lines
3.0 KiB
TypeScript
85 lines
3.0 KiB
TypeScript
import fs from "node:fs";
|
|
import path from "node:path";
|
|
import { afterEach, describe, expect, it } from "vitest";
|
|
import {
|
|
resolveCodexAppServerProtocolSource,
|
|
resolveCodexProtocolPnpmCommand,
|
|
} from "../../scripts/lib/codex-app-server-protocol-source.js";
|
|
import { createScriptTestHarness } from "./test-helpers.js";
|
|
|
|
const { createTempDir } = createScriptTestHarness();
|
|
const originalOpenClawCodexRepo = process.env.OPENCLAW_CODEX_REPO;
|
|
|
|
afterEach(() => {
|
|
if (originalOpenClawCodexRepo === undefined) {
|
|
delete process.env.OPENCLAW_CODEX_REPO;
|
|
} else {
|
|
process.env.OPENCLAW_CODEX_REPO = originalOpenClawCodexRepo;
|
|
}
|
|
});
|
|
|
|
describe("codex app-server protocol source resolver", () => {
|
|
it("wraps Windows pnpm formatting through cmd.exe without shell mode", () => {
|
|
expect(
|
|
resolveCodexProtocolPnpmCommand(
|
|
["exec", "oxfmt", "--write", "--threads=1", String.raw`C:\tmp\generated types`],
|
|
{
|
|
comSpec: String.raw`C:\Windows\System32\cmd.exe`,
|
|
npmExecPath: String.raw`C:\Program Files\nodejs\pnpm.cmd`,
|
|
platform: "win32",
|
|
},
|
|
),
|
|
).toEqual({
|
|
args: [
|
|
"/d",
|
|
"/s",
|
|
"/c",
|
|
String.raw`""C:\Program Files\nodejs\pnpm.cmd" exec oxfmt --write --threads=1 "C:\tmp\generated types""`,
|
|
],
|
|
command: String.raw`C:\Windows\System32\cmd.exe`,
|
|
shell: false,
|
|
windowsVerbatimArguments: true,
|
|
});
|
|
});
|
|
|
|
it("uses OPENCLAW_CODEX_REPO when provided", async () => {
|
|
const root = createTempDir("openclaw-protocol-source-root-");
|
|
const codexRepo = createTempDir("openclaw-protocol-source-codex-");
|
|
createProtocolSchema(codexRepo);
|
|
process.env.OPENCLAW_CODEX_REPO = codexRepo;
|
|
|
|
await expect(resolveCodexAppServerProtocolSource(root)).resolves.toEqual({
|
|
codexRepo,
|
|
sourceRoot: path.join(codexRepo, "codex-rs/app-server-protocol/schema"),
|
|
});
|
|
});
|
|
|
|
it("finds the primary checkout sibling from a git worktree", async () => {
|
|
const parentDir = createTempDir("openclaw-protocol-source-parent-");
|
|
const primaryOpenClaw = path.join(parentDir, "openclaw");
|
|
const codexRepo = path.join(parentDir, "codex");
|
|
const worktreeRoot = createTempDir("openclaw-protocol-source-worktree-");
|
|
fs.mkdirSync(path.join(primaryOpenClaw, ".git", "worktrees", "codex-harness"), {
|
|
recursive: true,
|
|
});
|
|
fs.mkdirSync(worktreeRoot, { recursive: true });
|
|
fs.writeFileSync(
|
|
path.join(worktreeRoot, ".git"),
|
|
`gitdir: ${path.join(primaryOpenClaw, ".git", "worktrees", "codex-harness")}\n`,
|
|
);
|
|
createProtocolSchema(codexRepo);
|
|
delete process.env.OPENCLAW_CODEX_REPO;
|
|
|
|
await expect(resolveCodexAppServerProtocolSource(worktreeRoot)).resolves.toEqual({
|
|
codexRepo,
|
|
sourceRoot: path.join(codexRepo, "codex-rs/app-server-protocol/schema"),
|
|
});
|
|
});
|
|
});
|
|
|
|
function createProtocolSchema(codexRepo: string): void {
|
|
fs.mkdirSync(path.join(codexRepo, "codex-rs/app-server-protocol/schema/typescript"), {
|
|
recursive: true,
|
|
});
|
|
}
|