mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-02 11:21:34 +00:00
* fix(qa): repair verified end-to-end and channel regressions * fix(gateway): make interrupted restart recovery lifecycle-safe * test(heartbeat): target the canonical recovery session store * fix(gateway): prioritize durable restart recovery before heartbeat * fix(qa): preserve safe restart recovery and channel expiry * fix(qa): fail closed and fence restart recovery * test(agents): isolate restart recovery timing * test(agents): prove actual restart retry timing * fix(qa): report incompatible profile scenarios * fix(scripts): resolve symlinked docker scheduler entrypoints * fix(qa): require fresh native test evidence * fix(heartbeat): fence active restart recovery delivery * fix(gateway): consume untargeted restart acknowledgements * fix(qa): satisfy exhaustive hosted validation gates * fix(agents): fence stopped restart recovery dispatch * style(agents): format restart recovery lifecycle regression * test(gateway): isolate context prewarm sidecar lifecycle * test(qa): make scenario process timeout cleanup deterministic * fix(qa): stamp synthetic gateway configs with current version * fix(openai): preserve vision capabilities in stale model catalogs * test(qa): align profile channel rejection with current main * fix(openai): forward supported moderation for image edits * fix: restore latest-main CI and image edit documentation * fix(qa): retain relocated code-mode evidence validation * fix(openai): expose GPT-5.4 vision in static catalog * fix(pricing): honor explicit model cost overrides * test(pricing): keep isolated provider regressions deterministic * fix(openai): inherit transport for discovered static models * fix(gateway): honor agent-owned static image capabilities * test(gateway): preserve prepared-snapshot attachment races * test(gateway): isolate subagent persistence failure injection * test(gateway): exercise concurrent voice replay admission * fix(gateway): restore stale model image capabilities * fix(agents): publish configured model vision capabilities * fix(agents): isolate detached media transcript ownership * test(agents): preserve generic transcript lock regression * fix(gateway): require proven static model route identity * fix(qa): accept bounded full-size generated image attachments * fix(qa): require fresh script producer evidence * test(qa): prove native E2E scenario execution
440 lines
13 KiB
TypeScript
440 lines
13 KiB
TypeScript
// Qa Lab tests cover bus server plugin behavior.
|
|
import { Agent, createServer, request } from "node:http";
|
|
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
|
|
import { closeQaHttpServer, handleQaBusRequest, startQaBusServer } from "./bus-server.js";
|
|
import { createQaBusState } from "./bus-state.js";
|
|
import type { QaBusPollResult } from "./runtime-api.js";
|
|
|
|
async function listenOnLoopback(server: ReturnType<typeof createServer>): Promise<number> {
|
|
await new Promise<void>((resolve, reject) => {
|
|
server.once("error", reject);
|
|
server.listen(0, "127.0.0.1", () => resolve());
|
|
});
|
|
const address = server.address();
|
|
if (!address || typeof address === "string") {
|
|
throw new Error("expected server to bind a TCP port");
|
|
}
|
|
return address.port;
|
|
}
|
|
|
|
async function requestOnce(params: { port: number; agent: Agent }): Promise<void> {
|
|
await new Promise<void>((resolve, reject) => {
|
|
const req = request(
|
|
{
|
|
host: "127.0.0.1",
|
|
port: params.port,
|
|
path: "/",
|
|
agent: params.agent,
|
|
},
|
|
(res) => {
|
|
res.resume();
|
|
res.on("end", resolve);
|
|
res.on("error", reject);
|
|
},
|
|
);
|
|
req.on("error", reject);
|
|
req.end();
|
|
});
|
|
}
|
|
|
|
async function pollQaBus(params: {
|
|
baseUrl: string;
|
|
accountId: string;
|
|
cursor: number;
|
|
timeoutMs: number;
|
|
}): Promise<QaBusPollResult> {
|
|
const response = await fetch(`${params.baseUrl}/v1/poll`, {
|
|
method: "POST",
|
|
headers: {
|
|
"content-type": "application/json",
|
|
},
|
|
body: JSON.stringify({
|
|
accountId: params.accountId,
|
|
cursor: params.cursor,
|
|
timeoutMs: params.timeoutMs,
|
|
}),
|
|
});
|
|
if (!response.ok) {
|
|
throw new Error(`qa-bus request failed: ${response.status}`);
|
|
}
|
|
return (await response.json()) as QaBusPollResult;
|
|
}
|
|
|
|
async function postQaBusJson(baseUrl: string, path: string, body: unknown) {
|
|
return await postQaBusRawJson(baseUrl, path, JSON.stringify(body));
|
|
}
|
|
|
|
async function postQaBusRawJson(baseUrl: string, path: string, body: string) {
|
|
return await fetch(`${baseUrl}${path}`, {
|
|
method: "POST",
|
|
headers: {
|
|
"content-type": "application/json",
|
|
},
|
|
body,
|
|
});
|
|
}
|
|
|
|
describe("closeQaHttpServer", () => {
|
|
it("closes idle keep-alive sockets so suite processes can exit", async () => {
|
|
const server = createServer((_req, res) => {
|
|
res.writeHead(200, {
|
|
"content-type": "text/plain",
|
|
connection: "keep-alive",
|
|
});
|
|
res.end("ok");
|
|
});
|
|
const agent = new Agent({ keepAlive: true });
|
|
const port = await listenOnLoopback(server);
|
|
|
|
try {
|
|
await requestOnce({ port, agent });
|
|
const startedAt = Date.now();
|
|
await closeQaHttpServer(server);
|
|
expect(Date.now() - startedAt).toBeLessThan(1_000);
|
|
} finally {
|
|
agent.destroy();
|
|
server.closeAllConnections?.();
|
|
}
|
|
});
|
|
});
|
|
|
|
describe("qa-bus server", () => {
|
|
const stops: Array<() => Promise<void>> = [];
|
|
|
|
beforeEach(() => {
|
|
vi.useRealTimers();
|
|
});
|
|
|
|
afterEach(async () => {
|
|
await Promise.all(stops.splice(0).map((stop) => stop()));
|
|
});
|
|
|
|
it("wakes stale-cursor long polls as soon as matching account traffic arrives", async () => {
|
|
const state = createQaBusState();
|
|
const bus = await startQaBusServer({ state });
|
|
stops.push(bus["stop"]);
|
|
|
|
const pending = pollQaBus({
|
|
baseUrl: bus.baseUrl,
|
|
accountId: "acct-a",
|
|
cursor: 999,
|
|
timeoutMs: 500,
|
|
});
|
|
|
|
state.addInboundMessage({
|
|
accountId: "acct-a",
|
|
conversation: { id: "target", kind: "direct" },
|
|
senderId: "acct-a-user",
|
|
text: "fresh event",
|
|
});
|
|
|
|
const result = await pending;
|
|
expect(result.events).toHaveLength(1);
|
|
expect(result.events[0]).toMatchObject({
|
|
accountId: "acct-a",
|
|
cursor: 1,
|
|
kind: "inbound-message",
|
|
});
|
|
});
|
|
|
|
it("resumes an account after its last acknowledged cursor when the client restarts", async () => {
|
|
const state = createQaBusState();
|
|
const bus = await startQaBusServer({ state });
|
|
stops.push(bus["stop"]);
|
|
|
|
const consumed = state.addInboundMessage({
|
|
accountId: "acct-a",
|
|
conversation: { id: "first", kind: "direct" },
|
|
senderId: "acct-a-user",
|
|
text: "consumed before restart",
|
|
});
|
|
const firstPoll = await pollQaBus({
|
|
baseUrl: bus.baseUrl,
|
|
accountId: "acct-a",
|
|
cursor: 0,
|
|
timeoutMs: 0,
|
|
});
|
|
expect(firstPoll.events.map((event) => event.cursor)).toEqual([1]);
|
|
|
|
await pollQaBus({
|
|
baseUrl: bus.baseUrl,
|
|
accountId: "acct-a",
|
|
cursor: firstPoll.cursor,
|
|
timeoutMs: 0,
|
|
});
|
|
expect(state.getAcknowledgedPollCursor("acct-a")).toBe(firstPoll.cursor);
|
|
const queuedDuringRestart = state.addInboundMessage({
|
|
accountId: "acct-a",
|
|
conversation: { id: "second", kind: "direct" },
|
|
senderId: "acct-a-user",
|
|
text: "queued during restart",
|
|
});
|
|
|
|
const restartedPoll = await pollQaBus({
|
|
baseUrl: bus.baseUrl,
|
|
accountId: "acct-a",
|
|
cursor: 0,
|
|
timeoutMs: 0,
|
|
});
|
|
const restartedMessageIds = restartedPoll.events.flatMap((event) =>
|
|
"message" in event ? [event.message.id] : [],
|
|
);
|
|
expect(restartedMessageIds).toEqual([queuedDuringRestart.id]);
|
|
expect(restartedMessageIds).not.toContain(consumed.id);
|
|
|
|
state.reset();
|
|
const queuedAfterReset = state.addInboundMessage({
|
|
accountId: "acct-a",
|
|
conversation: { id: "third", kind: "direct" },
|
|
senderId: "acct-a-user",
|
|
text: "queued after bus reset",
|
|
});
|
|
const resetPoll = await pollQaBus({
|
|
baseUrl: bus.baseUrl,
|
|
accountId: "acct-a",
|
|
cursor: 0,
|
|
timeoutMs: 0,
|
|
});
|
|
expect(
|
|
resetPoll.events.flatMap((event) => ("message" in event ? [event.message.id] : [])),
|
|
).toEqual([queuedAfterReset.id]);
|
|
});
|
|
|
|
it("paginates a burst without advancing past events omitted by the poll limit", async () => {
|
|
const state = createQaBusState();
|
|
const bus = await startQaBusServer({ state });
|
|
stops.push(bus["stop"]);
|
|
|
|
for (let index = 1; index <= 101; index += 1) {
|
|
state.addInboundMessage({
|
|
accountId: "acct-a",
|
|
conversation: { id: "burst", kind: "direct" },
|
|
senderId: "acct-a-user",
|
|
text: `burst event ${index}`,
|
|
});
|
|
}
|
|
|
|
const firstPage = await pollQaBus({
|
|
baseUrl: bus.baseUrl,
|
|
accountId: "acct-a",
|
|
cursor: 0,
|
|
timeoutMs: 0,
|
|
});
|
|
expect(firstPage.events).toHaveLength(100);
|
|
expect(firstPage.cursor).toBe(100);
|
|
|
|
const secondPage = await pollQaBus({
|
|
baseUrl: bus.baseUrl,
|
|
accountId: "acct-a",
|
|
cursor: firstPage.cursor,
|
|
timeoutMs: 0,
|
|
});
|
|
expect(secondPage.events).toHaveLength(1);
|
|
expect(secondPage.events[0]?.cursor).toBe(101);
|
|
expect(secondPage.cursor).toBe(101);
|
|
});
|
|
|
|
it("rejects malformed poll numeric fields before long-polling", async () => {
|
|
const state = createQaBusState();
|
|
const bus = await startQaBusServer({ state });
|
|
stops.push(bus["stop"]);
|
|
|
|
const startedAt = Date.now();
|
|
const response = await postQaBusJson(bus.baseUrl, "/v1/poll", {
|
|
accountId: "acct-a",
|
|
cursor: "999",
|
|
timeoutMs: 500,
|
|
});
|
|
|
|
expect(Date.now() - startedAt).toBeLessThan(300);
|
|
expect(response.status).toBe(400);
|
|
await expect(response.json()).resolves.toEqual({
|
|
error: "poll cursor must be an integer at least 0.",
|
|
});
|
|
});
|
|
|
|
it("rejects malformed search limits before querying state", async () => {
|
|
const state = createQaBusState();
|
|
const bus = await startQaBusServer({ state });
|
|
stops.push(bus["stop"]);
|
|
|
|
const response = await postQaBusJson(bus.baseUrl, "/v1/actions/search", {
|
|
limit: "all",
|
|
query: "anything",
|
|
});
|
|
|
|
expect(response.status).toBe(400);
|
|
await expect(response.json()).resolves.toEqual({
|
|
error: "search limit must be an integer at least 1.",
|
|
});
|
|
});
|
|
|
|
it.each(["inbound", "outbound"] as const)(
|
|
"accepts a generated-media payload larger than 1 MiB on the %s message route",
|
|
async (direction) => {
|
|
const state = createQaBusState();
|
|
const bus = await startQaBusServer({ state });
|
|
stops.push(bus["stop"]);
|
|
|
|
const generatedImage = Buffer.alloc(1_600_000, 0x71);
|
|
const attachment = {
|
|
id: "qa-lighthouse-image",
|
|
kind: "image",
|
|
mimeType: "image/png",
|
|
fileName: "qa-lighthouse.png",
|
|
contentBase64: generatedImage.toString("base64"),
|
|
};
|
|
const response = await postQaBusJson(bus.baseUrl, `/v1/${direction}/message`, {
|
|
accountId: "acct-a",
|
|
text: "QA lighthouse",
|
|
attachments: [attachment],
|
|
...(direction === "inbound"
|
|
? {
|
|
conversation: { id: "qa-operator", kind: "direct" },
|
|
senderId: "qa-operator",
|
|
}
|
|
: { to: "dm:qa-operator" }),
|
|
});
|
|
|
|
expect(response.status).toBe(200);
|
|
await expect(response.json()).resolves.toMatchObject({
|
|
message: { direction, attachments: [attachment] },
|
|
});
|
|
|
|
const snapshot = state.getSnapshot();
|
|
expect(snapshot.messages).toHaveLength(1);
|
|
expect(snapshot.events).toHaveLength(1);
|
|
const storedAttachment = snapshot.messages[0]?.attachments?.[0];
|
|
expect(storedAttachment).toEqual(attachment);
|
|
expect(Buffer.from(storedAttachment?.contentBase64 ?? "", "base64")).toEqual(generatedImage);
|
|
},
|
|
);
|
|
|
|
it("returns a controlled error when a v1 POST body contains malformed JSON", async () => {
|
|
const state = createQaBusState();
|
|
const bus = await startQaBusServer({ state });
|
|
stops.push(bus["stop"]);
|
|
|
|
const response = await postQaBusRawJson(bus.baseUrl, "/v1/reset", "{");
|
|
|
|
expect(response.status).toBe(400);
|
|
await expect(response.json()).resolves.toEqual({
|
|
error: "Malformed JSON body",
|
|
});
|
|
});
|
|
|
|
it("keeps oversized numeric poll and search fields bounded", async () => {
|
|
const state = createQaBusState();
|
|
const bus = await startQaBusServer({ state });
|
|
stops.push(bus["stop"]);
|
|
|
|
const message = state.addInboundMessage({
|
|
accountId: "acct-a",
|
|
conversation: { id: "target", kind: "direct" },
|
|
senderId: "acct-a-user",
|
|
text: "bounded numeric fields",
|
|
});
|
|
|
|
const pollResponse = await postQaBusJson(bus.baseUrl, "/v1/poll", {
|
|
accountId: "acct-a",
|
|
cursor: 0,
|
|
limit: 10_000,
|
|
timeoutMs: 60_000,
|
|
});
|
|
expect(pollResponse.status).toBe(200);
|
|
await expect(pollResponse.json()).resolves.toMatchObject({
|
|
events: [{ message: { id: message.id } }],
|
|
});
|
|
|
|
const searchResponse = await postQaBusJson(bus.baseUrl, "/v1/actions/search", {
|
|
accountId: "acct-a",
|
|
limit: 10_000,
|
|
query: "bounded",
|
|
});
|
|
expect(searchResponse.status).toBe(200);
|
|
await expect(searchResponse.json()).resolves.toMatchObject({
|
|
messages: [{ id: message.id }],
|
|
});
|
|
|
|
const extremeSearchResponse = await postQaBusRawJson(
|
|
bus.baseUrl,
|
|
"/v1/actions/search",
|
|
`{"accountId":"acct-a","limit":1e309,"query":"bounded"}`,
|
|
);
|
|
expect(extremeSearchResponse.status).toBe(200);
|
|
await expect(extremeSearchResponse.json()).resolves.toMatchObject({
|
|
messages: [{ id: message.id }],
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("handleQaBusRequest", () => {
|
|
it.each(["/v1/inbound/message", "/v1/outbound/message"] as const)(
|
|
"returns a controlled error when the %s body exceeds the media limit",
|
|
async (pathname) => {
|
|
const req = {
|
|
method: "POST",
|
|
url: pathname,
|
|
headers: { "content-length": String(16 * 1024 * 1024 + 1) },
|
|
destroyed: false,
|
|
destroy() {
|
|
this.destroyed = true;
|
|
},
|
|
};
|
|
const res = {
|
|
statusCode: 0,
|
|
body: "",
|
|
writeHead(statusCode: number) {
|
|
this.statusCode = statusCode;
|
|
},
|
|
end(payload: string) {
|
|
this.body = payload;
|
|
},
|
|
};
|
|
|
|
const handled = await handleQaBusRequest({
|
|
req: req as never,
|
|
res: res as never,
|
|
state: createQaBusState(),
|
|
});
|
|
|
|
expect(handled).toBe(true);
|
|
expect(req.destroyed).toBe(true);
|
|
expect(res.statusCode).toBe(413);
|
|
expect(JSON.parse(res.body)).toEqual({ error: "Payload too large" });
|
|
},
|
|
);
|
|
|
|
it("returns a controlled error when a v1 POST body exceeds the limit", async () => {
|
|
const req = {
|
|
method: "POST",
|
|
url: "/v1/reset",
|
|
headers: { "content-length": String(1024 * 1024 + 1) },
|
|
destroyed: false,
|
|
destroy() {
|
|
this.destroyed = true;
|
|
},
|
|
};
|
|
const res = {
|
|
statusCode: 0,
|
|
body: "",
|
|
writeHead(statusCode: number) {
|
|
this.statusCode = statusCode;
|
|
},
|
|
end(payload: string) {
|
|
this.body = payload;
|
|
},
|
|
};
|
|
|
|
const handled = await handleQaBusRequest({
|
|
req: req as never,
|
|
res: res as never,
|
|
state: createQaBusState(),
|
|
});
|
|
|
|
expect(handled).toBe(true);
|
|
expect(res.statusCode).toBe(413);
|
|
expect(JSON.parse(res.body)).toEqual({ error: "Payload too large" });
|
|
});
|
|
});
|