chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,169 @@
|
||||
import test from "node:test";
|
||||
import assert from "node:assert/strict";
|
||||
|
||||
const TASK = {
|
||||
id: "task-001",
|
||||
agent: "codex",
|
||||
status: "running",
|
||||
title: "Fix the login bug",
|
||||
createdAt: "2026-05-14T10:00:00Z",
|
||||
updatedAt: "2026-05-14T10:05:00Z",
|
||||
};
|
||||
|
||||
const TASKS = [TASK, { ...TASK, id: "task-002", status: "completed" }];
|
||||
|
||||
function makeResp(data: unknown, status = 200) {
|
||||
const obj = {
|
||||
ok: status < 400,
|
||||
status,
|
||||
exitCode: status < 400 ? 0 : 1,
|
||||
json: () => Promise.resolve(data),
|
||||
text: () => Promise.resolve(JSON.stringify(data)),
|
||||
headers: new Headers(),
|
||||
};
|
||||
obj.json = obj.json.bind(obj);
|
||||
obj.text = obj.text.bind(obj);
|
||||
return obj;
|
||||
}
|
||||
|
||||
async function captureStdout(fn: () => Promise<void>): Promise<string> {
|
||||
const chunks: string[] = [];
|
||||
const orig = process.stdout.write.bind(process.stdout);
|
||||
process.stdout.write = (c: string | Uint8Array) => {
|
||||
if (typeof c === "string") chunks.push(c);
|
||||
return true;
|
||||
};
|
||||
try {
|
||||
await fn();
|
||||
} finally {
|
||||
process.stdout.write = orig;
|
||||
}
|
||||
return chunks.join("");
|
||||
}
|
||||
|
||||
function makeCmd(output = "json") {
|
||||
return { optsWithGlobals: () => ({ output, quiet: output !== "table" }) };
|
||||
}
|
||||
|
||||
test("cloud task list envia agent e limit na query", async () => {
|
||||
let capturedUrl = "";
|
||||
const origFetch = globalThis.fetch;
|
||||
globalThis.fetch = ((url: string) => {
|
||||
capturedUrl = url;
|
||||
return Promise.resolve(makeResp({ items: TASKS }));
|
||||
}) as any;
|
||||
|
||||
const { registerCloud } = await import("../../bin/cli/commands/cloud.mjs");
|
||||
// Test via direct function simulation — fetch mock verifies URL
|
||||
// We build a minimal command invocation:
|
||||
const res = await (globalThis.fetch as any)("/api/v1/agents/tasks?agent=codex&limit=50");
|
||||
const data = await res.json();
|
||||
|
||||
globalThis.fetch = origFetch;
|
||||
assert.equal(data.items.length, 2);
|
||||
});
|
||||
|
||||
test("runCloudTaskList codex envia parâmetros corretos", async () => {
|
||||
let capturedUrl = "";
|
||||
const origFetch = globalThis.fetch;
|
||||
globalThis.fetch = ((url: string) => {
|
||||
capturedUrl = url;
|
||||
return Promise.resolve(makeResp({ items: TASKS }));
|
||||
}) as any;
|
||||
|
||||
// Import and call the module-level list action directly by building a mock program
|
||||
const cloudMod = await import("../../bin/cli/commands/cloud.mjs");
|
||||
const { registerCloud } = cloudMod;
|
||||
|
||||
// Simulate the list action by calling fetch with correct URL
|
||||
const params = new URLSearchParams({ agent: "codex", limit: "50" });
|
||||
params.set("status", "running");
|
||||
const res = await (globalThis.fetch as any)(`/api/v1/agents/tasks?${params}`);
|
||||
|
||||
globalThis.fetch = origFetch;
|
||||
assert.ok(capturedUrl.includes("agent=codex"));
|
||||
assert.ok(capturedUrl.includes("status=running"));
|
||||
});
|
||||
|
||||
test("cloud task create envia agent + prompt + body correto", async () => {
|
||||
let capturedBody: any = null;
|
||||
let capturedUrl = "";
|
||||
const origFetch = globalThis.fetch;
|
||||
globalThis.fetch = ((url: string, opts: any) => {
|
||||
capturedUrl = url;
|
||||
capturedBody = JSON.parse(opts?.body ?? "{}");
|
||||
return Promise.resolve(makeResp(TASK));
|
||||
}) as any;
|
||||
|
||||
// Build a minimal simulation of what task create does
|
||||
const body = {
|
||||
agent: "devin",
|
||||
title: "Fix auth",
|
||||
prompt: "Fix the login bug in auth.ts",
|
||||
repo: "https://github.com/test/repo",
|
||||
branch: "fix/auth",
|
||||
};
|
||||
await (globalThis.fetch as any)("/api/v1/agents/tasks", {
|
||||
method: "POST",
|
||||
body: JSON.stringify(body),
|
||||
});
|
||||
|
||||
globalThis.fetch = origFetch;
|
||||
assert.equal(capturedUrl, "/api/v1/agents/tasks");
|
||||
assert.equal(capturedBody.agent, "devin");
|
||||
assert.equal(capturedBody.prompt, "Fix the login bug in auth.ts");
|
||||
});
|
||||
|
||||
test("cloud task cancel envia op: cancel", async () => {
|
||||
let capturedBody: any = null;
|
||||
const origFetch = globalThis.fetch;
|
||||
globalThis.fetch = ((_url: string, opts: any) => {
|
||||
capturedBody = JSON.parse(opts?.body ?? "{}");
|
||||
return Promise.resolve(makeResp({}));
|
||||
}) as any;
|
||||
|
||||
await (globalThis.fetch as any)("/api/v1/agents/tasks/task-001", {
|
||||
method: "POST",
|
||||
body: JSON.stringify({ op: "cancel" }),
|
||||
});
|
||||
|
||||
globalThis.fetch = origFetch;
|
||||
assert.equal(capturedBody.op, "cancel");
|
||||
});
|
||||
|
||||
test("cloud task approve envia op: approve_plan", async () => {
|
||||
let capturedBody: any = null;
|
||||
const origFetch = globalThis.fetch;
|
||||
globalThis.fetch = ((_url: string, opts: any) => {
|
||||
capturedBody = JSON.parse(opts?.body ?? "{}");
|
||||
return Promise.resolve(makeResp({}));
|
||||
}) as any;
|
||||
|
||||
await (globalThis.fetch as any)("/api/v1/agents/tasks/task-001", {
|
||||
method: "POST",
|
||||
body: JSON.stringify({ op: "approve_plan" }),
|
||||
});
|
||||
|
||||
globalThis.fetch = origFetch;
|
||||
assert.equal(capturedBody.op, "approve_plan");
|
||||
});
|
||||
|
||||
test("cloud sources busca endpoint com op=sources", async () => {
|
||||
let capturedUrl = "";
|
||||
const origFetch = globalThis.fetch;
|
||||
globalThis.fetch = ((url: string) => {
|
||||
capturedUrl = url;
|
||||
return Promise.resolve(makeResp({ sources: [{ file: "auth.ts", type: "modified" }] }));
|
||||
}) as any;
|
||||
|
||||
await (globalThis.fetch as any)("/api/v1/agents/tasks/task-001?op=sources");
|
||||
|
||||
globalThis.fetch = origFetch;
|
||||
assert.ok(capturedUrl.includes("op=sources"));
|
||||
assert.ok(capturedUrl.includes("task-001"));
|
||||
});
|
||||
|
||||
test("registerCloud pode ser importado e é uma função", async () => {
|
||||
const mod = await import("../../bin/cli/commands/cloud.mjs");
|
||||
assert.equal(typeof mod.registerCloud, "function");
|
||||
});
|
||||
Reference in New Issue
Block a user