Initial codex-flows monorepo

This commit is contained in:
matamune 2026-05-12 15:15:09 +00:00
commit 3c446b11a4
642 changed files with 19676 additions and 0 deletions

View file

@ -0,0 +1,55 @@
import { expect, test } from "bun:test";
import { parseArgs } from "../src/args.ts";
test("parses a direct action call with params JSON", () => {
expect(parseArgs(["thread/list", "{\"limit\":10}"], {})).toEqual({
type: "call",
action: "thread/list",
paramsText: "{\"limit\":10}",
url: "ws://127.0.0.1:3585",
timeoutMs: 90_000,
pretty: true,
});
});
test("parses call alias, url, timeout, and compact output", () => {
expect(
parseArgs(
[
"--url",
"ws://localhost:4000",
"--timeout-ms=1234",
"--compact",
"call",
"account/read",
],
{},
),
).toEqual({
type: "call",
action: "account/read",
paramsText: undefined,
url: "ws://localhost:4000",
timeoutMs: 1234,
pretty: false,
});
});
test("uses environment URL default", () => {
const parsed = parseArgs(["account/read"], {
CODEX_WORKSPACE_APP_SERVER_WS_URL: "ws://127.0.0.1:9999",
});
expect(parsed).toMatchObject({
type: "call",
url: "ws://127.0.0.1:9999",
});
});
test("rejects unknown actions before connecting", () => {
expect(() => parseArgs(["not-a-method"], {})).toThrow("Unknown action");
});
test("completion command is not supported", () => {
expect(() => parseArgs(["completion", "zsh"], {})).toThrow("Unknown action");
});