Spaces:
Runtime error
Runtime error
File size: 12,117 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 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 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 | /**
* E2E Test Suite β OmniRoute Ecosystem
*
* 6 scenarios covering MCP, A2A, Auto-Combo, Extension, Stress, and Security.
* Run with: npm run test:ecosystem
*/
import { describe, it, expect, beforeAll } from "vitest";
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 || 30000);
const STRESS_TIMEOUT_MS = Number(process.env.ECOSYSTEM_STRESS_TIMEOUT_MS || 45000);
function itCase(name: string, fn: () => Promise<void> | void) {
return it(name, fn, TEST_TIMEOUT_MS);
}
function itStress(name: string, fn: () => Promise<void> | void) {
return it(name, fn, STRESS_TIMEOUT_MS);
}
async function apiFetch(path: string, options?: RequestInit) {
return fetch(`${BASE_URL}${path}`, {
...options,
headers: {
"Content-Type": "application/json",
...(API_KEY ? { Authorization: `Bearer ${API_KEY}` } : {}),
...(options?.headers || {}),
},
signal: AbortSignal.timeout(REQUEST_TIMEOUT_MS),
});
}
// βββ Scenario 1: MCP Server Complete βββββββββββββββββββββββββββββ
describe("E2E: MCP Server (16 tools)", () => {
itCase("should respond to health check", async () => {
const res = await apiFetch("/api/monitoring/health");
expect(res.ok).toBe(true);
const data = (await res.json()) as any;
expect(data).toHaveProperty("status");
});
itCase("should list combos", async () => {
const res = await apiFetch("/api/combos");
expect(res.ok).toBe(true);
const data = (await res.json()) as any;
expect(Array.isArray(data?.combos)).toBe(true);
});
itCase("should return quota data", async () => {
const res = await apiFetch("/api/usage/quota");
expect(res.ok).toBe(true);
const data = (await res.json()) as any;
expect(Array.isArray(data?.providers)).toBe(true);
expect(data).toHaveProperty("meta");
});
itCase("should return usage analytics", async () => {
const res = await apiFetch("/api/usage/analytics?period=session");
expect(res.ok).toBe(true);
});
itCase("should return model catalog", async () => {
const res = await apiFetch("/api/models");
expect(res.ok).toBe(true);
});
});
// βββ Scenario 1B: Quota Contract βββββββββββββββββββββββββββββ
describe("E2E: Quota Contract (/api/usage/quota)", () => {
itCase("should return normalized quota response shape", async () => {
const res = await apiFetch("/api/usage/quota");
expect(res.ok).toBe(true);
const data = (await res.json()) as any;
expect(Array.isArray(data.providers)).toBe(true);
expect(data).toHaveProperty("meta");
expect(typeof data.meta.generatedAt).toBe("string");
expect(typeof data.meta.totalProviders).toBe("number");
if (data.providers.length > 0) {
const p = data.providers[0];
expect(typeof p.name).toBe("string");
expect(typeof p.provider).toBe("string");
expect(typeof p.connectionId).toBe("string");
expect(typeof p.quotaUsed).toBe("number");
expect(typeof p.percentRemaining).toBe("number");
expect(p.percentRemaining).toBeGreaterThanOrEqual(0);
expect(p.percentRemaining).toBeLessThanOrEqual(100);
expect(["valid", "expiring", "expired", "refreshing"]).toContain(p.tokenStatus);
}
});
itCase("should filter quota by provider", async () => {
const allRes = await apiFetch("/api/usage/quota");
expect(allRes.ok).toBe(true);
const allData = (await allRes.json()) as any;
if (!Array.isArray(allData.providers) || allData.providers.length === 0) return;
const provider = allData.providers[0].provider;
const filteredRes = await apiFetch(`/api/usage/quota?provider=${encodeURIComponent(provider)}`);
expect(filteredRes.ok).toBe(true);
const filteredData = (await filteredRes.json()) as any;
expect(filteredData.meta.filters.provider).toBe(provider);
expect(Array.isArray(filteredData.providers)).toBe(true);
expect(filteredData.providers.every((p: any) => p.provider === provider)).toBe(true);
});
itCase("should filter quota by connectionId", async () => {
const allRes = await apiFetch("/api/usage/quota");
expect(allRes.ok).toBe(true);
const allData = (await allRes.json()) as any;
if (!Array.isArray(allData.providers) || allData.providers.length === 0) return;
const connectionId = allData.providers[0].connectionId;
const filteredRes = await apiFetch(
`/api/usage/quota?connectionId=${encodeURIComponent(connectionId)}`
);
expect(filteredRes.ok).toBe(true);
const filteredData = (await filteredRes.json()) as any;
expect(filteredData.meta.filters.connectionId).toBe(connectionId);
expect(Array.isArray(filteredData.providers)).toBe(true);
expect(filteredData.providers.every((p: any) => p.connectionId === connectionId)).toBe(true);
});
});
// βββ Scenario 2: A2A Server Complete βββββββββββββββββββββββββββββ
describe("E2E: A2A Server (lifecycle)", () => {
beforeAll(async () => {
await apiFetch("/api/settings", {
method: "PATCH",
body: JSON.stringify({ a2aEnabled: true }),
});
});
itCase("should serve Agent Card", async () => {
const res = await apiFetch("/.well-known/agent.json");
expect(res.ok).toBe(true);
const card = (await res.json()) as any;
expect(card).toHaveProperty("name");
expect(card).toHaveProperty("skills");
expect(card).toHaveProperty("version");
expect(card.capabilities).toHaveProperty("streaming");
});
itCase("should accept message/send via JSON-RPC", async () => {
const res = await apiFetch("/a2a", {
method: "POST",
body: JSON.stringify({
jsonrpc: "2.0",
id: "e2e-1",
method: "message/send",
params: {
skill: "quota-management",
messages: [{ role: "user", content: "show quota ranking" }],
},
}),
});
expect(res.ok).toBe(true);
const data = (await res.json()) as any;
expect(data).toHaveProperty("result");
expect(data.result.task).toHaveProperty("id");
expect(data.result.task).toHaveProperty("state");
});
itCase("should reject invalid JSON-RPC method", async () => {
const res = await apiFetch("/a2a", {
method: "POST",
body: JSON.stringify({
jsonrpc: "2.0",
id: "e2e-2",
method: "invalid/method",
params: {},
}),
});
const data = (await res.json()) as any;
expect(data).toHaveProperty("error");
expect(data.error.code).toBe(-32601);
});
});
// βββ Scenario 3: Auto-Combo βββββββββββββββββββββββββββββββββββββ
describe("E2E: Auto-Combo (routing + self-healing)", () => {
itCase("should create auto-combo", async () => {
const res = await apiFetch("/api/combos", {
method: "POST",
body: JSON.stringify({
name: `e2e-auto-test-${Date.now()}`,
strategy: "auto",
models: [{ model: "gpt-4" }],
config: {
candidatePool: ["anthropic", "google"],
modePack: "ship-fast",
},
}),
});
if (!res.ok) console.error("POST /api/combos failed:", await res.text());
expect(res.ok).toBe(true);
});
itCase("should list auto-combos", async () => {
const res = await apiFetch("/api/combos");
if (!res.ok) console.error("GET /api/combos failed:", await res.text());
expect(res.ok).toBe(true);
const data = (await res.json()) as any;
expect(Array.isArray(data?.combos)).toBe(true);
const autoCombos = data.combos.filter((c: any) => c.strategy === "auto");
expect(autoCombos.length).toBeGreaterThanOrEqual(0);
});
});
// βββ Scenario 4: OpenClaw Integration ββββββββββββββββββββββββββββ
describe("E2E: OpenClaw Integration", () => {
itCase("should return dynamic provider.order", async () => {
const res = await apiFetch("/api/cli-tools/openclaw/auto-order");
expect(res.ok).toBe(true);
const data = (await res.json()) as any;
expect(data).toHaveProperty("provider");
expect(data.provider).toHaveProperty("order");
expect(Array.isArray(data.provider.order)).toBe(true);
expect(data.provider).toHaveProperty("allow_fallbacks");
expect(data).toHaveProperty("source");
});
});
// βββ Scenario 5: Stress Test βββββββββββββββββββββββββββββββββββββ
describe("E2E: Stress (100 parallel requests)", () => {
itStress("should handle 100 health checks in <10s", async () => {
const start = Date.now();
const promises = Array.from({ length: 100 }, (_, i) =>
apiFetch("/api/monitoring/health").then((r) => ({
ok: r.ok,
index: i,
}))
);
const results = await Promise.allSettled(promises);
const elapsed = Date.now() - start;
const successful = results.filter((r) => r.status === "fulfilled" && r.value.ok).length;
expect(successful).toBeGreaterThanOrEqual(90); // allow 10% failure
expect(elapsed).toBeLessThan(10_000);
});
itStress("should handle 50 parallel quota checks", async () => {
const promises = Array.from({ length: 50 }, () =>
apiFetch("/api/usage/quota").then((r) => r.ok)
);
const results = await Promise.allSettled(promises);
const successful = results.filter((r) => r.status === "fulfilled" && r.value).length;
expect(successful).toBeGreaterThanOrEqual(40);
});
});
// βββ Scenario 6: Security ββββββββββββββββββββββββββββββββββββββββ
describe("E2E: Security", () => {
itCase("should handle missing A2A auth according to server configuration", async () => {
const res = await fetch(`${BASE_URL}/a2a`, {
method: "POST",
headers: { "Content-Type": "application/json" },
// Intentionally no Authorization header
body: JSON.stringify({
jsonrpc: "2.0",
id: "sec-1",
method: "message/send",
params: { skill: "quota-management", messages: [] },
}),
});
if (API_KEY) {
expect(res.status).toBeGreaterThanOrEqual(401);
return;
}
if (res.status !== 200) {
console.log("SEC-1 FAILED STATUS:", res.status, "BODY:", await res.text());
}
expect(res.status).toBe(200);
});
itCase("should handle invalid API keys according to server configuration", async () => {
const res = await fetch(`${BASE_URL}/a2a`, {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer invalid-key-12345",
},
body: JSON.stringify({
jsonrpc: "2.0",
id: "sec-2",
method: "message/send",
params: { skill: "quota-management", messages: [] },
}),
});
if (API_KEY) {
expect(res.status).toBeGreaterThanOrEqual(401);
return;
}
if (res.status !== 200) {
console.log("SEC-2 FAILED STATUS:", res.status, "BODY:", await res.text());
}
expect(res.status).toBe(200);
});
itCase("should not expose internal errors in API responses", async () => {
const res = await apiFetch("/api/monitoring/health", {
method: "PATCH",
});
// Should return method error without leaking server internals
expect(res.status).toBe(405);
const body = await res.text();
expect(body.includes("Error:")).toBe(false);
});
itCase("should validate JSON-RPC request format", async () => {
const res = await apiFetch("/a2a", {
method: "POST",
body: "not-json",
});
const data = (await res.json()) as any;
if (data.error) {
expect(data.error.code).toBe(-32700); // Parse error
}
});
});
|