Files
OmniRoute/tests/unit/mimocode-executor.test.ts
PizzaV 2d9f85d587 fix(mimocode): handle 400 with cooldown + account rotation (#6648)
* fix(electron): bump electron 42→43 + build better-sqlite3 from source (ABI 148) (#6605)

fix(electron): bump electron 42→43 + rebuild better-sqlite3 from source against the Electron ABI (148).

Electron 43 raises NODE_MODULE_VERSION to 148; better-sqlite3@12.11.1 has no electron-v148 prebuild, so the packaged app died with 'Nenhum driver SQLite disponível'. prepare-electron-standalone now compiles better-sqlite3 from source against the electron headers into build/Release (where 'bindings' resolves it). Validated by Electron Package Smoke (green) + local (node_register_module_v148).

Supersedes #6378. (--admin: the only reds are SonarQube/SonarCloud failing on a coverage-report artifact digest-mismatch — a GitHub Actions infra flake, not this diff; Sonar is green on main and the diff touches only the electron build.)

* deps: bump the development group across 1 directory with 6 updates (#6588)

deps: bump the development group (6 updates). Rebased onto current main; all checks green after the electron-smoke fix (#6605).

* fix(proxy): force CONNECT tunnel for HTTP proxied requests (undici 8.7) + production deps bump (#6620)

fix(proxy): force CONNECT tunnel for HTTP proxied requests (undici 8.7) + production deps bump.

undici 8.6+ changed ProxyAgent to forward plain-HTTP via request-proxy instead of CONNECT, breaking OAuth refresh through a connection proxy (501). proxyDispatcher now passes proxyTunnel:true. Validated: Unit Tests 3/8 (the OAuth-proxy test) green, new regression test green (fails without the fix on undici 8.7), SonarQube green.

Supersedes #6380. (--admin: the only red is Electron Package Smoke failing on a next-build artifact 'digest-mismatch' — a GitHub Actions infra flake corrupting the asar ('file data stream has unexpected number of bytes'); the better-sqlite3 rebuild itself succeeded (gyp ok) and the electron path is unchanged from #6605 which passed the smoke. Not this diff.)

* fix(mimocode): handle 400 with cooldown + account rotation

Treat HTTP 400 responses the same as 429: mark the account on cooldown
and continue to the next fingerprint/proxy. Previously, 400 fell through
to markSuccess and returned immediately, so only 1 of N accounts was ever
tried per request.

Refs: #5925

* chore(mimocode): drop unrelated dependency/electron drift from PR #6648's stale fork

package.json/package-lock.json (bun/eslint-config-next/cyclonedx bumps), electron/package.json,
electron/package-lock.json, open-sse/utils/proxyDispatcher.ts, prepare-electron-standalone.mjs
and tests/unit/proxy-dispatcher-family.test.ts were already present in the contributor's single
commit but are unrelated to the mimocode 400-handling fix — restored to release/v3.8.47's
versions so the PR stays scoped to open-sse/executors/mimocode.ts.

Co-authored-by: diegosouzapw <8016841+diegosouzapw@users.noreply.github.com>

* fix(mimocode): classify 400 body before rotating — rate-limit-text 400s rotate, malformed 400s fail fast (#2101/#4976 guard)

Co-authored-by: diegosouzapw <8016841+diegosouzapw@users.noreply.github.com>

* refactor(mimocode): extract auth-retry + 429/400 gating helpers — keep execute() under the cognitive-complexity gate

Co-authored-by: diegosouzapw <8016841+diegosouzapw@users.noreply.github.com>

---------

Co-authored-by: Diego Rodrigues de Sa e Souza <8016841+diegosouzapw@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pizzav-xyz <pizzav-xyz@users.noreply.github.com>
Co-authored-by: Diego Rodrigues de Sa e Souza <diegosouza.pw@gmail.com>
2026-07-08 14:08:48 -03:00

628 lines
22 KiB
TypeScript

import { describe, it } from "node:test";
import assert from "node:assert";
import {
MimocodeExecutor,
generateFingerprint,
MIMO_SYSTEM_MARKER,
type AccountProxyConfig,
} from "../../open-sse/executors/mimocode.ts";
const executor = new MimocodeExecutor();
describe("MimocodeExecutor", () => {
it("generateFingerprint returns a 64-char hex string", () => {
const fp = generateFingerprint();
assert.match(fp, /^[0-9a-f]{64}$/);
});
it("generateFingerprint is deterministic", () => {
assert.strictEqual(generateFingerprint(), generateFingerprint());
});
it("generateFingerprint with seed is deterministic", () => {
assert.strictEqual(generateFingerprint("seed-a"), generateFingerprint("seed-a"));
});
it("generateFingerprint with different seeds differs", () => {
assert.notStrictEqual(generateFingerprint("seed-a"), generateFingerprint("seed-b"));
});
it("buildUrl returns the free-ai chat endpoint", () => {
const url = executor.buildUrl("mimo-auto", false);
assert.ok(url.includes("/api/free-ai/openai/chat"));
assert.ok(url.startsWith("https://"));
});
it("buildHeaders includes X-Mimo-Source and Content-Type", () => {
const headers = (executor as any).buildHeaders({}, true);
assert.strictEqual(headers["Content-Type"], "application/json");
assert.strictEqual(headers["X-Mimo-Source"], "mimocode-cli-free");
});
it("buildHeaders includes Accept for streaming", () => {
const headers = (executor as any).buildHeaders({}, true);
assert.ok(headers["Accept"]?.includes("text/event-stream"));
});
it("buildHeaders omits Accept for non-streaming", () => {
const headers = (executor as any).buildHeaders({}, false);
assert.ok(!headers["Accept"]?.includes("text/event-stream"));
});
it("transformRequest strips model prefix", () => {
const result = (executor as any).transformRequest(
"mcode/mimo-auto",
{ model: "mcode/mimo-auto", messages: [{ role: "user", content: "hi" }] },
false
);
assert.strictEqual(result.model, "mimo-auto");
});
it("transformRequest passes model through when no prefix", () => {
const result = (executor as any).transformRequest(
"mimo-auto",
{ model: "mimo-auto", messages: [{ role: "user", content: "hi" }] },
false
);
assert.strictEqual(result.model, "mimo-auto");
});
// The Xiaomi free endpoint rejects requests with `403 "Illegal access"` unless the
// body contains a recognized MiMoCode prompt signature inside a `system`-role message.
// The executor must inject that marker so user requests pass the upstream anti-abuse gate.
it("transformRequest injects a MiMoCode system marker when none is present", () => {
const result = (executor as any).transformRequest(
"mcode/mimo-auto",
{ model: "mcode/mimo-auto", messages: [{ role: "user", content: "write a haiku" }] },
true
);
assert.ok(Array.isArray(result.messages));
const first = result.messages[0];
assert.strictEqual(first.role, "system");
assert.ok(
typeof first.content === "string" && first.content.includes(MIMO_SYSTEM_MARKER),
"first message must be a system message containing the MiMoCode marker"
);
});
it("transformRequest preserves the original user message after injection", () => {
const result = (executor as any).transformRequest(
"mcode/mimo-auto",
{ model: "mcode/mimo-auto", messages: [{ role: "user", content: "write a haiku" }] },
true
);
const userMsg = result.messages.find((m: any) => m.role === "user");
assert.ok(userMsg);
assert.strictEqual(userMsg.content, "write a haiku");
});
it("transformRequest preserves a caller-provided system prompt alongside the marker", () => {
const result = (executor as any).transformRequest(
"mcode/mimo-auto",
{
model: "mcode/mimo-auto",
messages: [
{ role: "system", content: "You are a pirate." },
{ role: "user", content: "hi" },
],
},
true
);
const systemContents = result.messages
.filter((m: any) => m.role === "system")
.map((m: any) => m.content)
.join("\n");
assert.ok(systemContents.includes(MIMO_SYSTEM_MARKER), "marker present");
assert.ok(systemContents.includes("You are a pirate."), "caller system prompt preserved");
});
it("transformRequest does not duplicate the marker when already present", () => {
const result = (executor as any).transformRequest(
"mcode/mimo-auto",
{
model: "mcode/mimo-auto",
messages: [
{ role: "system", content: `${MIMO_SYSTEM_MARKER}\nExtra context.` },
{ role: "user", content: "hi" },
],
},
true
);
const count = result.messages.filter(
(m: any) =>
m.role === "system" &&
typeof m.content === "string" &&
m.content.includes(MIMO_SYSTEM_MARKER)
).length;
assert.strictEqual(count, 1, "marker should not be duplicated");
});
it("transformRequest leaves a body without a messages array untouched", () => {
const result = (executor as any).transformRequest(
"mcode/mimo-auto",
{ model: "mcode/mimo-auto", prompt: "legacy" },
true
);
assert.strictEqual((result as any).messages, undefined);
assert.strictEqual((result as any).model, "mimo-auto");
});
it("returns 499 on pre-aborted signal", async () => {
const controller = new AbortController();
controller.abort(new Error("cancelled"));
const result = await executor.execute({
model: "mimo-auto",
body: { messages: [{ role: "user", content: "hi" }], stream: false },
stream: false,
signal: controller.signal,
credentials: {},
log: { debug: () => {}, info: () => {}, warn: () => {}, error: () => {} },
});
assert.strictEqual((result as any).response.status, 499);
});
it("is registered in executor index", async () => {
const { getExecutor } = await import("../../open-sse/executors/index.ts");
const exec = getExecutor("mimocode");
assert.ok(exec instanceof MimocodeExecutor);
});
it("mcode alias works", async () => {
const { getExecutor } = await import("../../open-sse/executors/index.ts");
const exec = getExecutor("mcode");
assert.ok(exec instanceof MimocodeExecutor);
});
});
describe("mimocode multi-account", () => {
it("executor has at least one account", () => {
const accounts = (executor as any).accounts;
assert.ok(Array.isArray(accounts));
assert.ok(accounts.length >= 1);
});
it("each account has required fields", () => {
const accounts = (executor as any).accounts;
for (const acct of accounts) {
assert.ok(typeof acct.fingerprint === "string");
assert.ok(typeof acct.jwt === "string");
assert.ok(typeof acct.expiresAt === "number");
assert.ok(typeof acct.cooldownUntil === "number");
assert.ok(typeof acct.consecutiveFails === "number");
}
});
it("pickAccount returns an account", () => {
const acct = (executor as any).pickAccount();
assert.ok(acct);
assert.ok(typeof acct.fingerprint === "string");
});
it("markCooldown increases consecutiveFails and sets cooldownUntil", () => {
const acct = (executor as any).accounts[0];
const before = acct.consecutiveFails;
(executor as any).markCooldown(acct);
assert.strictEqual(acct.consecutiveFails, before + 1);
assert.ok(acct.cooldownUntil > Date.now());
});
it("markSuccess resets consecutiveFails", () => {
const acct = (executor as any).accounts[0];
acct.consecutiveFails = 5;
(executor as any).markSuccess(acct);
assert.strictEqual(acct.consecutiveFails, 0);
});
});
describe("mimocode provider registration", () => {
it("provider is registered in NOAUTH_PROVIDERS", async () => {
const { NOAUTH_PROVIDERS } = await import("../../src/shared/constants/providers.ts");
const provider = (NOAUTH_PROVIDERS as Record<string, any>)["mimocode"];
assert.ok(provider);
assert.strictEqual(provider.id, "mimocode");
assert.strictEqual(provider.alias, "mcode");
assert.strictEqual(provider.noAuth, true);
assert.strictEqual(provider.hasFree, true);
});
it("provider has correct service kinds", async () => {
const { NOAUTH_PROVIDERS } = await import("../../src/shared/constants/providers.ts");
const provider = (NOAUTH_PROVIDERS as Record<string, any>)["mimocode"];
assert.ok(provider.serviceKinds?.includes("llm"));
});
});
describe("mimocode providerRegistry entry", () => {
it("registry entry exists with correct executor", async () => {
const { getRegistryEntry } = await import("../../open-sse/config/providerRegistry.ts");
const entry = getRegistryEntry("mimocode");
assert.ok(entry);
assert.strictEqual(entry.executor, "mimocode");
assert.strictEqual(entry.format, "openai");
assert.strictEqual(entry.authType, "none");
});
it("registry entry has mimo-auto model", async () => {
const { getRegistryEntry } = await import("../../open-sse/config/providerRegistry.ts");
const entry = getRegistryEntry("mimocode");
const models = entry.models as Array<{ id: string }>;
const mimoAuto = models.find((m) => m.id === "mimo-auto");
assert.ok(mimoAuto);
});
});
describe("mimocode per-account proxy", () => {
const exec = new MimocodeExecutor();
it("AccountProxyConfig type has required fields", () => {
const config: AccountProxyConfig = {
fingerprint: "abc123",
proxy: { type: "http", host: "proxy.example.com", port: 8080 },
};
assert.strictEqual(config.fingerprint, "abc123");
assert.strictEqual(config.proxy?.host, "proxy.example.com");
});
it("default proxyUrlMap is empty", () => {
const testExec = new MimocodeExecutor();
const map = (testExec as any).proxyUrlMap;
assert.ok(map instanceof Map);
assert.strictEqual(map.size, 0);
});
it("syncAccountsFromCredentials populates proxyUrlMap with correct URLs", () => {
const testExec = new MimocodeExecutor();
const fp1 = "fingerprint-1";
const fp2 = "fingerprint-2";
(testExec as any).accounts = [
{ fingerprint: fp1, jwt: "", expiresAt: 0, cooldownUntil: 0, consecutiveFails: 0 },
{ fingerprint: fp2, jwt: "", expiresAt: 0, cooldownUntil: 0, consecutiveFails: 0 },
];
const credentials = {
providerSpecificData: {
accountProxies: [
{ fingerprint: fp1, proxy: { type: "http", host: "p1.example.com", port: 1080 } },
{ fingerprint: fp2, proxy: null },
],
},
};
(testExec as any).syncAccountsFromCredentials(credentials);
const map: Map<string, string> = (testExec as any).proxyUrlMap;
assert.strictEqual(map.get(fp1), "http://p1.example.com:1080");
assert.strictEqual(map.has(fp2), false);
});
it("syncAccountsFromCredentials skips when accountProxies absent", () => {
const testExec = new MimocodeExecutor();
const mapBefore = (testExec as any).proxyUrlMap.size;
(testExec as any).syncAccountsFromCredentials({ providerSpecificData: {} });
assert.strictEqual((testExec as any).proxyUrlMap.size, mapBefore);
});
it("syncAccountsFromCredentials adds proxyUrlMap entries for all valid proxy configs", () => {
const testExec = new MimocodeExecutor();
const existingFp = (testExec as any).accounts[0].fingerprint;
(testExec as any).syncAccountsFromCredentials({
providerSpecificData: {
accountProxies: [
{
fingerprint: "nonexistent-fingerprint",
proxy: { type: "socks5", host: "s5.example.com", port: 1080 },
},
],
},
});
const map: Map<string, string> = (testExec as any).proxyUrlMap;
assert.strictEqual(
map.has("nonexistent-fingerprint"),
true,
"proxyUrlMap stores all valid proxy configs"
);
assert.strictEqual(map.get("nonexistent-fingerprint"), "socks5://s5.example.com:1080");
assert.strictEqual(
map.has(existingFp),
false,
"existing fingerprint without proxy is not in map"
);
});
it("accounts with different proxies produce distinct URLs", () => {
const testExec = new MimocodeExecutor();
const fp1 = "fp-a";
const fp2 = "fp-b";
(testExec as any).accounts = [
{ fingerprint: fp1, jwt: "", expiresAt: 0, cooldownUntil: 0, consecutiveFails: 0 },
{ fingerprint: fp2, jwt: "", expiresAt: 0, cooldownUntil: 0, consecutiveFails: 0 },
];
(testExec as any).syncAccountsFromCredentials({
providerSpecificData: {
accountProxies: [
{ fingerprint: fp1, proxy: { type: "http", host: "a.com", port: 8080 } },
{ fingerprint: fp2, proxy: { type: "socks5", host: "b.com", port: 1080 } },
],
},
});
const map: Map<string, string> = (testExec as any).proxyUrlMap;
assert.strictEqual(map.get(fp1), "http://a.com:8080");
assert.strictEqual(map.get(fp2), "socks5://b.com:1080");
});
it("getProxyDispatcher returns a dispatcher for known fingerprint", () => {
const testExec = new MimocodeExecutor();
const fp = "fp-dispatcher-test";
(testExec as any).accounts = [
{ fingerprint: fp, jwt: "", expiresAt: 0, cooldownUntil: 0, consecutiveFails: 0 },
];
(testExec as any).syncAccountsFromCredentials({
providerSpecificData: {
accountProxies: [
{ fingerprint: fp, proxy: { type: "socks5", host: "s5.test", port: 1080 } },
],
},
});
const dispatcher = (testExec as any).getProxyDispatcher(fp);
assert.ok(dispatcher, "dispatcher should exist for registered fingerprint");
});
it("getProxyDispatcher returns undefined for unknown fingerprint", () => {
const testExec = new MimocodeExecutor();
const dispatcher = (testExec as any).getProxyDispatcher("unknown-fp");
assert.strictEqual(dispatcher, undefined);
});
it("fetchWithProxy falls back to plain fetch when no proxy configured", async () => {
const testExec = new MimocodeExecutor();
const fp = "fp-no-proxy";
const originalFetch = globalThis.fetch;
let fetchCalled = false;
globalThis.fetch = async () => {
fetchCalled = true;
return new Response("ok");
};
try {
const resp = await (testExec as any).fetchWithProxy("https://example.com", {}, fp);
assert.ok(fetchCalled, "plain fetch should have been called");
assert.strictEqual(resp.status, 200);
} finally {
globalThis.fetch = originalFetch;
}
});
it("authenticated proxy includes credentials in URL", () => {
const testExec = new MimocodeExecutor();
const fp = "fp-auth";
(testExec as any).accounts = [
{ fingerprint: fp, jwt: "", expiresAt: 0, cooldownUntil: 0, consecutiveFails: 0 },
];
(testExec as any).syncAccountsFromCredentials({
providerSpecificData: {
accountProxies: [
{
fingerprint: fp,
proxy: {
type: "socks5",
host: "s5.auth.com",
port: 1080,
username: "user",
password: "pass",
},
},
],
},
});
const map: Map<string, string> = (testExec as any).proxyUrlMap;
const url = map.get(fp);
assert.ok(url);
assert.ok(url.includes("user:pass@"), "URL should include encoded credentials");
});
it("default port is 1080 for socks5 when not specified", () => {
const testExec = new MimocodeExecutor();
const fp = "fp-default-port";
(testExec as any).accounts = [
{ fingerprint: fp, jwt: "", expiresAt: 0, cooldownUntil: 0, consecutiveFails: 0 },
];
(testExec as any).syncAccountsFromCredentials({
providerSpecificData: {
accountProxies: [
{ fingerprint: fp, proxy: { type: "socks5", host: "s5.test", port: undefined } },
],
},
});
const map: Map<string, string> = (testExec as any).proxyUrlMap;
assert.strictEqual(map.get(fp), "socks5://s5.test:1080");
});
it("default port is 8080 for http when not specified", () => {
const testExec = new MimocodeExecutor();
const fp = "fp-http-default";
(testExec as any).accounts = [
{ fingerprint: fp, jwt: "", expiresAt: 0, cooldownUntil: 0, consecutiveFails: 0 },
];
(testExec as any).syncAccountsFromCredentials({
providerSpecificData: {
accountProxies: [
{ fingerprint: fp, proxy: { type: "http", host: "h.test", port: undefined } },
],
},
});
const map: Map<string, string> = (testExec as any).proxyUrlMap;
assert.strictEqual(map.get(fp), "http://h.test:8080");
});
it("proxy URL map updates correctly on re-sync", () => {
const testExec = new MimocodeExecutor();
const fp = "fp-re-sync";
(testExec as any).accounts = [
{ fingerprint: fp, jwt: "", expiresAt: 0, cooldownUntil: 0, consecutiveFails: 0 },
];
(testExec as any).syncAccountsFromCredentials({
providerSpecificData: {
accountProxies: [
{ fingerprint: fp, proxy: { type: "http", host: "first.proxy", port: 8080 } },
],
},
});
assert.strictEqual((testExec as any).proxyUrlMap.get(fp), "http://first.proxy:8080");
(testExec as any).syncAccountsFromCredentials({
providerSpecificData: {
accountProxies: [
{ fingerprint: fp, proxy: { type: "socks5", host: "second.proxy", port: 1080 } },
],
},
});
assert.strictEqual((testExec as any).proxyUrlMap.get(fp), "socks5://second.proxy:1080");
});
});
// #2101/#4976 regression guard: a 400 from MiMoCode must be classified by body text
// before deciding whether to rotate accounts. A rate-limit-style 400 (throttling
// disguised as a 400, #4976) is rotation-worthy; a genuinely malformed 400 (#2101)
// must fail fast on the FIRST account instead of being retried identically on every
// account (which would waste N round-trips, cooldown every account, and hide the
// real upstream diagnostic behind a generic "all accounts exhausted" error).
interface TestAccountState {
fingerprint: string;
jwt: string;
expiresAt: number;
cooldownUntil: number;
consecutiveFails: number;
}
interface ExecutorAccountAccess {
accounts: TestAccountState[];
nextAccountIdx: number;
}
function accountAccess(exec: MimocodeExecutor): ExecutorAccountAccess {
return exec as unknown as ExecutorAccountAccess;
}
describe("mimocode 400 classification (#2101/#4976)", () => {
function makeJwt(): string {
const header = Buffer.from(JSON.stringify({ alg: "none" })).toString("base64url");
const payload = Buffer.from(
JSON.stringify({ exp: Math.floor(Date.now() / 1000) + 3600 })
).toString("base64url");
return `${header}.${payload}.sig`;
}
function twoAccountExecutor(): MimocodeExecutor {
const exec = new MimocodeExecutor();
const access = accountAccess(exec);
access.accounts = [
{ fingerprint: "acct-a", jwt: "", expiresAt: 0, cooldownUntil: 0, consecutiveFails: 0 },
{ fingerprint: "acct-b", jwt: "", expiresAt: 0, cooldownUntil: 0, consecutiveFails: 0 },
];
access.nextAccountIdx = 0;
return exec;
}
it("rotates to the next account on a rate-limit-text 400 (#4976)", async () => {
const testExec = twoAccountExecutor();
let chatCalls = 0;
const originalFetch = globalThis.fetch;
globalThis.fetch = (async (url: unknown) => {
const urlStr = String(url);
if (urlStr.includes("/api/free-ai/bootstrap")) {
return new Response(JSON.stringify({ jwt: makeJwt() }), { status: 200 });
}
if (urlStr.includes("/api/free-ai/openai/chat")) {
chatCalls++;
if (chatCalls === 1) {
// MiMoCode's non-standard rate-limit signal on a 400 status (#4976).
return new Response(
JSON.stringify({
error: { message: "Detected high-frequency non-compliant requests from you." },
}),
{ status: 400 }
);
}
return new Response(JSON.stringify({ id: "ok", choices: [] }), { status: 200 });
}
throw new Error(`unexpected fetch: ${urlStr}`);
}) as typeof fetch;
try {
const result = await testExec.execute({
model: "mimo-auto",
body: { messages: [{ role: "user", content: "hi" }], stream: false },
stream: false,
signal: null,
credentials: {},
log: { debug: () => {}, info: () => {}, warn: () => {}, error: () => {} },
});
assert.strictEqual(chatCalls, 2, "should retry on the next account after the 400");
assert.strictEqual(result.response.status, 200);
const acctA = accountAccess(testExec).accounts[0];
assert.ok(acctA.cooldownUntil > Date.now(), "first account should be in cooldown");
assert.strictEqual(acctA.consecutiveFails, 1);
} finally {
globalThis.fetch = originalFetch;
}
});
it("fails fast without rotating on a malformed/generic 400 (#2101)", async () => {
const testExec = twoAccountExecutor();
let chatCalls = 0;
const originalFetch = globalThis.fetch;
globalThis.fetch = (async (url: unknown) => {
const urlStr = String(url);
if (urlStr.includes("/api/free-ai/bootstrap")) {
return new Response(JSON.stringify({ jwt: makeJwt() }), { status: 200 });
}
if (urlStr.includes("/api/free-ai/openai/chat")) {
chatCalls++;
return new Response(
JSON.stringify({ error: { message: "Invalid field: foo is not a recognized field" } }),
{ status: 400 }
);
}
throw new Error(`unexpected fetch: ${urlStr}`);
}) as typeof fetch;
try {
const result = await testExec.execute({
model: "mimo-auto",
body: { messages: [{ role: "user", content: "hi" }], stream: false },
stream: false,
signal: null,
credentials: {},
log: { debug: () => {}, info: () => {}, warn: () => {}, error: () => {} },
});
assert.strictEqual(chatCalls, 1, "must NOT rotate to another account on a malformed 400");
const acctA = accountAccess(testExec).accounts[0];
assert.strictEqual(acctA.cooldownUntil, 0, "malformed 400 must not trigger cooldown");
assert.strictEqual(acctA.consecutiveFails, 0);
const response = result.response;
assert.strictEqual(response.status, 400);
const parsed = (await response.json()) as { error: { message: string; code?: string } };
assert.notStrictEqual(
parsed.error.code,
"NO_ACCOUNTS",
"must surface the real upstream 400, not a generic exhaustion error"
);
assert.ok(
parsed.error.message.toLowerCase().includes("invalid field"),
`expected the real upstream diagnostic in the error message, got: ${parsed.error.message}`
);
} finally {
globalThis.fetch = originalFetch;
}
});
});