mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-25 08:52:12 +00:00
27 lines
1.1 KiB
TypeScript
27 lines
1.1 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
|
import {
|
|
isMiniMaxModelNotFoundErrorMessage,
|
|
isModelNotFoundErrorMessage,
|
|
} from "./live-model-errors.js";
|
|
|
|
describe("live model error helpers", () => {
|
|
it("detects generic model-not-found messages", () => {
|
|
expect(isModelNotFoundErrorMessage('{"code":404,"message":"model not found"}')).toBe(true);
|
|
expect(isModelNotFoundErrorMessage("model: MiniMax-M2.7-highspeed not found")).toBe(true);
|
|
expect(
|
|
isModelNotFoundErrorMessage(
|
|
"HTTP 400 not_found_error: model: claude-3-5-haiku-20241022 (request_id: req_123)",
|
|
),
|
|
).toBe(true);
|
|
expect(isModelNotFoundErrorMessage("request ended without sending any chunks")).toBe(false);
|
|
});
|
|
|
|
it("detects bare minimax 404 page-not-found responses", () => {
|
|
expect(isMiniMaxModelNotFoundErrorMessage("404 page not found")).toBe(true);
|
|
expect(isMiniMaxModelNotFoundErrorMessage("Error: 404 404 page not found")).toBe(true);
|
|
expect(isMiniMaxModelNotFoundErrorMessage("request ended without sending any chunks")).toBe(
|
|
false,
|
|
);
|
|
});
|
|
});
|