mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-18 05:02:15 +03:00
* feat(providers): add GPT-5.6 model family * fix(chatgpt-web): resume temporary chat handoffs * fix(codex): auto-merge discovery, filter denylist, revalidate on lifecycle Restore live/GitHub auto-merge for Codex catalogs, drop models via explicit denylist (GPT-5.4 family), and run scrub+live re-sync once on first-start, app upgrade, or setup completion. Success log: kill deprecated models complete. * fix(codex): preserve live catalog reconciliation Expose remote-only Codex models without dropping user custom entries, and complete lifecycle revalidation only after a successful internal sync. Keep credentialed self-fetches pinned to the active dashboard listener. --------- Co-authored-by: backryun <backryun@daonlab.local>
57 lines
2.3 KiB
TypeScript
57 lines
2.3 KiB
TypeScript
import test from "node:test";
|
|
import assert from "node:assert/strict";
|
|
|
|
// Claude-Code identity version is hand-bumped in lockstep across several modules
|
|
// (2.1.158 → .187 → .195 → .207 …). A silent partial bump makes one surface advertise a stale
|
|
// `claude-cli/<version>` and can break Anthropic identity gating. This guard fails on drift.
|
|
// (quota-share-hardening Phase 2 — gaps v3.8.42.)
|
|
const claudeIdentity = await import("../../open-sse/executors/claudeIdentity.ts");
|
|
const ccBridge = await import("../../open-sse/services/ccBridgeTransforms.ts");
|
|
const claudeCompat = await import("../../open-sse/services/claudeCodeCompatible.ts");
|
|
const anthropicHeaders = await import("../../open-sse/config/anthropicHeaders.ts");
|
|
const glmProvider = await import("../../open-sse/config/glmProvider.ts");
|
|
|
|
const CANONICAL = claudeIdentity.CLAUDE_CODE_VERSION;
|
|
|
|
// "claude-cli/2.1.207 (external, sdk-cli)" → "2.1.207". String ops only — never a RegExp over
|
|
// the value, per the project's anti-ReDoS contract.
|
|
function versionFromUserAgent(userAgent: string): string {
|
|
const afterSlash = userAgent.split("claude-cli/")[1] ?? "";
|
|
return afterSlash.split(" ")[0];
|
|
}
|
|
|
|
test("canonical claude-cli version constant is a sane semver value", () => {
|
|
assert.match(CANONICAL, /^\d+\.\d+\.\d+$/);
|
|
});
|
|
|
|
test("all Claude-Code identity version constants are in lockstep", () => {
|
|
assert.equal(
|
|
ccBridge.DEFAULT_CLAUDE_CODE_VERSION,
|
|
CANONICAL,
|
|
"ccBridgeTransforms.DEFAULT_CLAUDE_CODE_VERSION drifted from claudeIdentity.CLAUDE_CODE_VERSION"
|
|
);
|
|
assert.equal(
|
|
claudeCompat.CLAUDE_CODE_COMPATIBLE_VERSION,
|
|
CANONICAL,
|
|
"claudeCodeCompatible.CLAUDE_CODE_COMPATIBLE_VERSION drifted from the canonical version"
|
|
);
|
|
assert.equal(
|
|
anthropicHeaders.CLAUDE_CLI_VERSION,
|
|
CANONICAL,
|
|
"anthropicHeaders.CLAUDE_CLI_VERSION drifted from the canonical version"
|
|
);
|
|
});
|
|
|
|
test("all claude-cli User-Agent strings embed the canonical version", () => {
|
|
assert.equal(
|
|
versionFromUserAgent(claudeCompat.CLAUDE_CODE_COMPATIBLE_USER_AGENT),
|
|
CANONICAL,
|
|
"claudeCodeCompatible.CLAUDE_CODE_COMPATIBLE_USER_AGENT embeds a stale version"
|
|
);
|
|
assert.equal(
|
|
versionFromUserAgent(glmProvider.GLM_CLAUDE_CODE_USER_AGENT),
|
|
CANONICAL,
|
|
"glmProvider.GLM_CLAUDE_CODE_USER_AGENT embeds a stale version"
|
|
);
|
|
});
|