Spaces:
Runtime error
Runtime error
File size: 7,286 Bytes
cd8bd0a | 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 | import { beforeAll, describe, it, expect } from "vitest";
import { Client } from "@modelcontextprotocol/sdk/client/index.js";
import { StdioClientTransport } from "@modelcontextprotocol/sdk/client/stdio.js";
const BASE_URL = process.env.OMNIROUTE_BASE_URL || "http://localhost:20128";
const API_KEY = process.env.OMNIROUTE_API_KEY || "";
const REQUEST_TIMEOUT_MS = Number(process.env.ECOSYSTEM_REQUEST_TIMEOUT_MS || 30000);
const TEST_TIMEOUT_MS = Number(process.env.ECOSYSTEM_TEST_TIMEOUT_MS || 60000);
function headers(extra?: Record<string, string>) {
return {
"Content-Type": "application/json",
...(API_KEY ? { Authorization: `Bearer ${API_KEY}` } : {}),
...(extra || {}),
};
}
async function apiFetch(path: string, options?: RequestInit) {
return fetch(`${BASE_URL}${path}`, {
...options,
headers: {
...headers(),
...(options?.headers || {}),
},
signal: AbortSignal.timeout(REQUEST_TIMEOUT_MS),
});
}
async function callA2A(method: string, params: Record<string, unknown>, id: string) {
const response = await apiFetch("/a2a", {
method: "POST",
body: JSON.stringify({
jsonrpc: "2.0",
id,
method,
params,
}),
});
const json = await response.json().catch(() => ({}));
return { response, json };
}
async function consumeA2AStream(response: Response): Promise<{
taskId: string | null;
terminalState: string | null;
chunks: number;
}> {
if (!response.body) return { taskId: null, terminalState: null, chunks: 0 };
const reader = response.body.getReader();
const decoder = new TextDecoder();
let buffer = "";
let taskId: string | null = null;
let terminalState: string | null = null;
let chunks = 0;
while (true) {
const { value, done } = await reader.read();
if (done) break;
buffer += decoder.decode(value, { stream: true });
const events = buffer.split("\n\n");
buffer = events.pop() || "";
for (const event of events) {
if (!event.startsWith("data: ")) continue;
const payload = event.slice("data: ".length);
let parsed: any;
try {
parsed = JSON.parse(payload);
} catch {
continue;
}
const nextTaskId = parsed?.params?.task?.id;
const nextState = parsed?.params?.task?.state;
if (nextTaskId) taskId = nextTaskId;
if (parsed?.params?.chunk) chunks += 1;
if (
typeof nextState === "string" &&
["completed", "failed", "cancelled"].includes(nextState)
) {
terminalState = nextState;
}
}
}
return { taskId, terminalState, chunks };
}
describe("Protocol clients E2E", () => {
beforeAll(async () => {
const response = await apiFetch("/api/settings", {
method: "PATCH",
body: JSON.stringify({ a2aEnabled: true }),
});
expect([200, 401]).toContain(response.status);
});
it(
"connects via MCP stdio and invokes required tools",
async () => {
const transport = new StdioClientTransport({
command: process.execPath,
args: ["--import", "tsx", "open-sse/mcp-server/server.ts"],
env: {
...process.env,
OMNIROUTE_BASE_URL: BASE_URL,
OMNIROUTE_API_KEY: API_KEY,
} as Record<string, string>,
stderr: "pipe",
});
const client = new Client({ name: "protocol-e2e", version: "1.0.0" });
await client.connect(transport);
try {
const listed = await client.listTools();
const toolNames = listed.tools.map((tool) => tool.name);
expect(toolNames).toContain("omniroute_get_health");
expect(toolNames).toContain("omniroute_list_combos");
const healthResult = await client.callTool({
name: "omniroute_get_health",
arguments: {},
});
expect(Array.isArray(healthResult.content)).toBe(true);
const combosResult = await client.callTool({
name: "omniroute_list_combos",
arguments: { includeMetrics: false },
});
expect(Array.isArray(combosResult.content)).toBe(true);
} finally {
await client.close();
}
const auditRes = await apiFetch("/api/mcp/audit?limit=50&tool=omniroute_get_health");
expect([200, 401]).toContain(auditRes.status);
if (auditRes.status === 200) {
expect(auditRes.ok).toBe(true);
const auditJson = (await auditRes.json()) as any;
const entries = Array.isArray(auditJson?.entries) ? auditJson.entries : [];
expect(entries.some((entry: any) => entry.toolName === "omniroute_get_health")).toBe(true);
}
},
TEST_TIMEOUT_MS * 2
);
it(
"executes A2A discovery/send/stream/get/cancel flow",
async () => {
const cardRes = await apiFetch("/.well-known/agent.json");
expect(cardRes.ok).toBe(true);
const card = (await cardRes.json()) as any;
expect(card).toHaveProperty("name");
expect(Array.isArray(card?.skills)).toBe(true);
const send = await callA2A(
"message/send",
{
skill: "quota-management",
messages: [{ role: "user", content: "Return a short quota summary." }],
},
"protocol-send"
);
if (send.response.status === 401) {
expect(API_KEY).toBe("");
expect(send.json?.error).toBeTruthy();
return;
}
expect(send.response.ok).toBe(true);
expect(send.json?.error).toBeFalsy();
const sendTaskId: string = send.json?.result?.task?.id;
expect(typeof sendTaskId).toBe("string");
const streamRes = await apiFetch("/a2a", {
method: "POST",
body: JSON.stringify({
jsonrpc: "2.0",
id: "protocol-stream",
method: "message/stream",
params: {
skill: "quota-management",
messages: [{ role: "user", content: "Stream a short quota summary." }],
},
}),
});
expect(streamRes.ok).toBe(true);
expect(streamRes.headers.get("content-type") || "").toContain("text/event-stream");
const stream = await consumeA2AStream(streamRes);
expect(typeof stream.taskId === "string" || stream.taskId === null).toBe(true);
expect(
stream.terminalState === null ||
["completed", "failed", "cancelled"].includes(stream.terminalState)
).toBe(true);
const taskIdForGet = stream.taskId || sendTaskId;
const get = await callA2A("tasks/get", { taskId: taskIdForGet }, "protocol-get");
expect(get.response.ok).toBe(true);
expect(get.json?.result?.task?.id).toBe(taskIdForGet);
const cancelRes = await apiFetch(
`/api/a2a/tasks/${encodeURIComponent(taskIdForGet)}/cancel`,
{
method: "POST",
}
);
expect([200, 400, 401, 404]).toContain(cancelRes.status);
const tasksRes = await apiFetch("/api/a2a/tasks?limit=50");
expect([200, 401]).toContain(tasksRes.status);
if (tasksRes.status === 200) {
expect(tasksRes.ok).toBe(true);
const tasksJson = (await tasksRes.json()) as any;
const tasks = Array.isArray(tasksJson?.tasks) ? tasksJson.tasks : [];
expect(tasks.some((task: any) => task.id === sendTaskId)).toBe(true);
}
},
TEST_TIMEOUT_MS * 2
);
});
|