mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-24 04:31:12 +00:00
* fix (Computer Use) Stabilize Codex Computer Use readiness Co-authored-by: Ben Badejo <188106718+bdjben@users.noreply.github.com> * fix (Computer Use) Stabilize Codex Computer Use readiness * fix (Computer Use) Stabilize Codex Computer Use readiness * fix (Computer Use) Stabilize Codex Computer Use readiness * fix(clawsweeper): address review for automerge-openclaw-openclaw-103331 (1) * fix (Computer Use) Stabilize Codex Computer Use readiness --------- Co-authored-by: clawsweeper <274271284+clawsweeper[bot]@users.noreply.github.com> Co-authored-by: Ben Badejo <188106718+bdjben@users.noreply.github.com>
129 lines
3.9 KiB
TypeScript
129 lines
3.9 KiB
TypeScript
/**
|
|
* Shared Codex app-server test helpers for model fixtures and in-memory client
|
|
* transports.
|
|
*/
|
|
import { EventEmitter } from "node:events";
|
|
import fs from "node:fs";
|
|
import path from "node:path";
|
|
import { PassThrough, Writable } from "node:stream";
|
|
import type { Model } from "openclaw/plugin-sdk/llm";
|
|
import { resolvePreferredOpenClawTmpDir } from "openclaw/plugin-sdk/temp-path";
|
|
import { vi } from "vitest";
|
|
import { CodexAppServerClient } from "./client.js";
|
|
import type { CodexAppServerClientFactory, CodexAppServerClientOptions } from "./shared-client.js";
|
|
|
|
/** Creates temp directories that are removed by the supplied test cleanup hook. */
|
|
export function useAutoCleanupTempDirTracker(registerCleanup: (cleanup: () => void) => unknown) {
|
|
const dirs = new Set<string>();
|
|
registerCleanup(() => {
|
|
for (const dir of dirs) {
|
|
fs.rmSync(dir, { recursive: true, force: true, maxRetries: 5, retryDelay: 20 });
|
|
}
|
|
dirs.clear();
|
|
});
|
|
return {
|
|
dirs,
|
|
make(prefix: string): string {
|
|
const dir = fs.mkdtempSync(path.join(resolvePreferredOpenClawTmpDir(), prefix));
|
|
dirs.add(dir);
|
|
return dir;
|
|
},
|
|
};
|
|
}
|
|
|
|
/** Positional naked-client injection contract confined to tests. */
|
|
export type CodexTestAppServerClientFactory = (
|
|
startOptions?: CodexAppServerClientOptions["startOptions"],
|
|
authProfileId?: string,
|
|
agentDir?: string,
|
|
config?: CodexAppServerClientOptions["config"],
|
|
options?: CodexAppServerClientOptions,
|
|
) => Promise<CodexAppServerClient>;
|
|
|
|
/** Adapts a positional test factory to the production options-object contract. */
|
|
export function adaptCodexTestClientFactory(
|
|
factory: CodexTestAppServerClientFactory,
|
|
): CodexAppServerClientFactory {
|
|
return (options) =>
|
|
factory(
|
|
options?.startOptions,
|
|
options?.authProfileId ?? undefined,
|
|
options?.agentDir,
|
|
options?.config,
|
|
options,
|
|
);
|
|
}
|
|
|
|
/** Builds a representative Codex-capable model fixture for app-server tests. */
|
|
export function createCodexTestModel(provider = "openai", input = ["text"]): Model {
|
|
return {
|
|
id: "gpt-5.4-codex",
|
|
name: "gpt-5.4-codex",
|
|
provider,
|
|
api: "openai-chatgpt-responses",
|
|
input,
|
|
reasoning: true,
|
|
cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },
|
|
contextWindow: 128_000,
|
|
maxTokens: 8_000,
|
|
} as Model;
|
|
}
|
|
|
|
/** Creates an in-memory Codex app-server client harness with writable stdout frames. */
|
|
export function createClientHarness() {
|
|
const stdout = new PassThrough();
|
|
const writes: string[] = [];
|
|
let stdinDestroyed = false;
|
|
let exitEmitted = false;
|
|
let emitProcessExit: () => void = () => undefined;
|
|
type HarnessProcess = EventEmitter & {
|
|
stdin: Writable;
|
|
stdout: PassThrough;
|
|
stderr: PassThrough;
|
|
killed: boolean;
|
|
kill: (signal?: NodeJS.Signals) => unknown;
|
|
};
|
|
const stdin = new Writable({
|
|
write(chunk, _encoding, callback) {
|
|
writes.push(chunk.toString());
|
|
callback();
|
|
},
|
|
});
|
|
const destroyStdin = stdin.destroy.bind(stdin);
|
|
stdin.destroy = ((error?: Error) => {
|
|
stdinDestroyed = true;
|
|
const result = destroyStdin(error);
|
|
if (!exitEmitted) {
|
|
exitEmitted = true;
|
|
// Let stdin surface pipe errors before the harness emits the fake child exit.
|
|
// Otherwise close-reason tests can race EPIPE against a synthetic clean exit.
|
|
setImmediate(emitProcessExit);
|
|
}
|
|
return result;
|
|
}) as typeof stdin.destroy;
|
|
const process: HarnessProcess = Object.assign(new EventEmitter(), {
|
|
stdin,
|
|
stdout,
|
|
stderr: new PassThrough(),
|
|
killed: false,
|
|
kill: vi.fn((_signal?: NodeJS.Signals) => {
|
|
process.killed = true;
|
|
}),
|
|
});
|
|
emitProcessExit = () => {
|
|
process.emit("exit", 0, null);
|
|
};
|
|
const client = CodexAppServerClient.fromTransportForTests(process);
|
|
return {
|
|
client,
|
|
process,
|
|
writes,
|
|
get stdinDestroyed() {
|
|
return stdinDestroyed;
|
|
},
|
|
send(message: unknown) {
|
|
stdout.write(`${JSON.stringify(message)}\n`);
|
|
},
|
|
};
|
|
}
|