Spaces:
Running
Running
File size: 9,597 Bytes
837e3ac | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 | import { afterAll, beforeAll, describe, expect, it } from "vitest";
import http from "node:http";
import type { AddressInfo } from "node:net";
import seedWorkPackages from "@/agentic_pm_demo_codex_plans/data/work-packages.seed.json";
import { parseCommand } from "@/lib/command-parser";
import { resolveChatRequestContext } from "@/lib/chat-request-context";
import type { WorkPackage } from "@/lib/work-package-types";
let server: http.Server;
let baseUrl = "";
const workPackages = seedWorkPackages as WorkPackage[];
function buildFakeLlmResponse(joinedMessages: string) {
if (joinedMessages.includes("Connection test.")) {
return "Connected to the configured model.";
}
if (joinedMessages.includes('"mode": "ask"')) {
return "Verification method explains how the requirement will be checked, such as by test, inspection, or analysis.";
}
if (joinedMessages.includes('"mode": "plan"')) {
return "Please break this package into review tasks.";
}
if (joinedMessages.includes('"mode": "change"')) {
return "Please update the objective to include cybersecurity acceptance criteria.";
}
return JSON.stringify({
choices: [
{
message: {
content: JSON.stringify({
assistantMessage: "Fallback JSON response.",
boardAction: { type: "none", workPackageId: null },
}),
},
},
],
});
}
beforeAll(async () => {
server = http.createServer((req, res) => {
let body = "";
req.on("data", (chunk) => {
body += chunk;
});
req.on("end", () => {
let payload: { messages?: Array<{ content?: string }> } = {};
try {
payload = JSON.parse(body || "{}");
} catch {
payload = {};
}
const joinedMessages = (payload.messages ?? [])
.map((message) => String(message.content ?? ""))
.join("\n\n");
res.writeHead(200, { "content-type": "text/plain" });
res.end(buildFakeLlmResponse(joinedMessages));
});
});
await new Promise<void>((resolve) => {
server.listen(0, "127.0.0.1", () => {
const address = server.address() as AddressInfo;
baseUrl = `http://127.0.0.1:${address.port}/v1`;
resolve();
});
});
});
afterAll(async () => {
await new Promise<void>((resolve, reject) => {
server.close((error) => {
if (error) {
reject(error);
return;
}
resolve();
});
});
});
describe("live model integration routes", () => {
it("verifies model settings through the connection route", async () => {
const { POST } = await import("./test-connection/route");
const response = await POST(
new Request("http://localhost/api/test-connection", {
method: "POST",
headers: { "content-type": "application/json" },
body: JSON.stringify({
llmConfig: {
apiKey: "live-key",
baseUrl,
model: "fake-model",
},
}),
}),
);
const payload = (await response.json()) as {
ok?: boolean;
status?: string;
message?: string;
};
expect(payload.ok).toBe(true);
expect(payload.status).toBe("connected");
expect(payload.message).toBe("Connected to the configured model.");
});
it("returns a human ask response without board changes when the live model replies in plain text", async () => {
const { POST } = await import("./chat/route");
const response = await POST(
new Request("http://localhost/api/chat", {
method: "POST",
headers: { "content-type": "application/json" },
body: JSON.stringify({
messages: [
{ role: "user", content: "@SRS ask What does verification method mean?" },
],
workPackages: seedWorkPackages,
selectedWorkPackageId: "wp-srs",
parsedCommand: {
referencedPackageName: "System Requirements Specification",
mode: "ask",
instruction: "What does verification method mean?",
},
llmConfig: {
apiKey: "live-key",
baseUrl,
model: "fake-model",
},
}),
}),
);
const payload = (await response.json()) as {
assistantMessage: string;
boardAction?: { type?: string; workPackageId?: string | null };
};
expect(payload.assistantMessage).toContain("Verification method explains");
expect(payload.assistantMessage).not.toContain("Network or parsing error");
expect(payload.assistantMessage.trim().startsWith("{")).toBe(false);
expect(payload.boardAction?.type).toBe("none");
expect(payload.boardAction?.workPackageId).toBeNull();
});
it("falls back to a package-scoped plan update when the live model replies in plain text", async () => {
const { POST } = await import("./chat/route");
const response = await POST(
new Request("http://localhost/api/chat", {
method: "POST",
headers: { "content-type": "application/json" },
body: JSON.stringify({
messages: [
{ role: "user", content: "@SRS plan Break this into review tasks." },
],
workPackages: seedWorkPackages,
selectedWorkPackageId: "wp-srs",
parsedCommand: {
referencedPackageName: "System Requirements Specification",
mode: "plan",
instruction: "Break this into review tasks.",
},
llmConfig: {
apiKey: "live-key",
baseUrl,
model: "fake-model",
},
}),
}),
);
const payload = (await response.json()) as {
assistantMessage: string;
boardAction?: {
type?: string;
workPackageId?: string | null;
fields?: { tasks?: unknown[]; status?: string };
};
};
expect(payload.assistantMessage).toContain("Planned next steps for SRS");
expect(payload.boardAction?.type).toBe("update");
expect(payload.boardAction?.workPackageId).toBe("wp-srs");
expect(payload.boardAction?.fields?.tasks?.length).toBeGreaterThan(0);
expect(payload.boardAction?.fields?.status).toBe("in_progress");
});
it("falls back to a package-scoped change update when the live model replies in plain text", async () => {
const { POST } = await import("./chat/route");
const response = await POST(
new Request("http://localhost/api/chat", {
method: "POST",
headers: { "content-type": "application/json" },
body: JSON.stringify({
messages: [
{
role: "user",
content: "@SRS change Add cybersecurity acceptance criteria.",
},
],
workPackages: seedWorkPackages,
selectedWorkPackageId: "wp-srs",
parsedCommand: {
referencedPackageName: "System Requirements Specification",
mode: "change",
instruction: "Add cybersecurity acceptance criteria.",
},
llmConfig: {
apiKey: "live-key",
baseUrl,
model: "fake-model",
},
}),
}),
);
const payload = (await response.json()) as {
assistantMessage: string;
boardAction?: {
type?: string;
workPackageId?: string | null;
fields?: { objective?: string; status?: string };
};
};
expect(payload.assistantMessage).toContain("Updated SRS");
expect(payload.boardAction?.type).toBe("update");
expect(payload.boardAction?.workPackageId).toBe("wp-srs");
expect(payload.boardAction?.fields?.objective).toContain(
"Add cybersecurity acceptance criteria",
);
expect(payload.boardAction?.fields?.status).toBe("in_progress");
});
it("handles slash plan commands through the same selected-package routing chain used by the client", async () => {
const parsed = parseCommand("/plan Break this into review tasks.", workPackages);
const selectedWorkPackage = workPackages.find((workPackage) => workPackage.id === "wp-srs");
const resolved = resolveChatRequestContext({
parsed: parsed.parsed,
detailOpen: false,
selectedWorkPackage,
});
expect(resolved.parsedCommand.mode).toBe("plan");
expect(resolved.parsedCommand.referencedPackageName).toBe(
selectedWorkPackage?.title,
);
const { POST } = await import("./chat/route");
const response = await POST(
new Request("http://localhost/api/chat", {
method: "POST",
headers: { "content-type": "application/json" },
body: JSON.stringify({
messages: [
{ role: "user", content: "/plan Break this into review tasks." },
],
workPackages: seedWorkPackages,
selectedWorkPackageId: "wp-srs",
parsedCommand: resolved.parsedCommand,
llmConfig: {
apiKey: "live-key",
baseUrl,
model: "fake-model",
},
}),
}),
);
const payload = (await response.json()) as {
assistantMessage: string;
boardAction?: {
type?: string;
workPackageId?: string | null;
fields?: { tasks?: unknown[]; status?: string };
};
};
expect(payload.assistantMessage).toContain("Planned next steps for SRS");
expect(payload.boardAction?.type).toBe("update");
expect(payload.boardAction?.workPackageId).toBe("wp-srs");
expect(payload.boardAction?.fields?.tasks?.length).toBeGreaterThan(0);
expect(payload.boardAction?.fields?.status).toBe("in_progress");
});
});
|