mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-05-24 05:44:13 +00:00
* chore: add GPT-5.5 Instant and support Node 26 (#1977) chore: add GPT-5.5 Instant model to Codex registry + Node 26 support with CI + improved native SQLite error handling. Integrated into release/v3.7.9 * feat: enhance cost formatting and add Codex GPT-5.5 pricing support * fix formatting --------- Co-authored-by: backryun <bakryun0718@proton.me> Co-authored-by: Jan Leon <jan.gaschler@gmail.com> Co-authored-by: 05dunski <05dunski-kredo@icloud.com>
80 lines
2.9 KiB
TypeScript
80 lines
2.9 KiB
TypeScript
import test from "node:test";
|
|
import assert from "node:assert/strict";
|
|
|
|
import {
|
|
SUPPORTED_NODE_RANGE,
|
|
getNodeRuntimeSupport,
|
|
getNodeRuntimeWarning,
|
|
parseNodeVersion,
|
|
} from "../../src/shared/utils/nodeRuntimeSupport.ts";
|
|
import {
|
|
getNodeRuntimeSupport as getCliNodeRuntimeSupport,
|
|
getNodeRuntimeWarning as getCliNodeRuntimeWarning,
|
|
} from "../../bin/nodeRuntimeSupport.mjs";
|
|
|
|
test("parseNodeVersion normalizes v-prefixed versions", () => {
|
|
assert.deepEqual(parseNodeVersion("v22.22.2"), {
|
|
raw: "v22.22.2",
|
|
normalized: "22.22.2",
|
|
major: 22,
|
|
minor: 22,
|
|
patch: 2,
|
|
});
|
|
});
|
|
|
|
test("getNodeRuntimeSupport accepts patched Node 24, 22 and 20 LTS lines", () => {
|
|
assert.deepEqual(getNodeRuntimeSupport("22.22.2"), {
|
|
nodeVersion: "v22.22.2",
|
|
nodeCompatible: true,
|
|
reason: "supported",
|
|
supportedRange: SUPPORTED_NODE_RANGE,
|
|
supportedDisplay:
|
|
"Node.js 20.20.2+ (20.x LTS), 22.22.2+ (22.x LTS), 24.0.0+ (24.x LTS), 25.0.0+ (25.x), or 26.0.0+ (26.x)",
|
|
recommendedVersion: "v24.14.1",
|
|
minimumSecureVersion: "v22.22.2",
|
|
});
|
|
|
|
assert.equal(getNodeRuntimeSupport("20.20.2").nodeCompatible, true);
|
|
assert.equal(getNodeRuntimeSupport("26.0.0").nodeCompatible, true);
|
|
assert.deepEqual(getNodeRuntimeSupport("24.1.0"), {
|
|
nodeVersion: "v24.1.0",
|
|
nodeCompatible: true,
|
|
reason: "supported",
|
|
supportedRange: SUPPORTED_NODE_RANGE,
|
|
supportedDisplay:
|
|
"Node.js 20.20.2+ (20.x LTS), 22.22.2+ (22.x LTS), 24.0.0+ (24.x LTS), 25.0.0+ (25.x), or 26.0.0+ (26.x)",
|
|
recommendedVersion: "v24.14.1",
|
|
minimumSecureVersion: "v24.0.0",
|
|
});
|
|
});
|
|
|
|
test("getNodeRuntimeSupport rejects versions below the secure floor in a supported line", () => {
|
|
const support = getNodeRuntimeSupport("22.22.1");
|
|
|
|
assert.equal(support.nodeCompatible, false);
|
|
assert.equal(support.reason, "below-security-floor");
|
|
assert.equal(support.minimumSecureVersion, "v22.22.2");
|
|
assert.match(getNodeRuntimeWarning("22.22.1") || "", /below the patched minimum v22\.22\.2/i);
|
|
});
|
|
|
|
test("getNodeRuntimeSupport rejects unsupported major lines", () => {
|
|
const node18 = getNodeRuntimeSupport("18.20.8");
|
|
const node27 = getNodeRuntimeSupport("27.1.0");
|
|
|
|
assert.equal(node18.nodeCompatible, false);
|
|
assert.equal(node18.reason, "unsupported-major");
|
|
assert.match(getNodeRuntimeWarning("18.20.8") || "", /outside OmniRoute's approved secure/i);
|
|
|
|
assert.equal(node27.nodeCompatible, false);
|
|
assert.equal(node27.reason, "unreleased-major");
|
|
assert.match(
|
|
getNodeRuntimeWarning("27.1.0") || "",
|
|
/currently supports Node\.js 20\.x, 22\.x, 24\.x, 25\.x, and 26\.x/i
|
|
);
|
|
});
|
|
|
|
test("CLI runtime support stays aligned with the shared runtime policy", () => {
|
|
assert.deepEqual(getCliNodeRuntimeSupport("24.1.0"), getNodeRuntimeSupport("24.1.0"));
|
|
assert.deepEqual(getCliNodeRuntimeSupport("22.22.2"), getNodeRuntimeSupport("22.22.2"));
|
|
assert.equal(getCliNodeRuntimeWarning("27.1.0"), getNodeRuntimeWarning("27.1.0"));
|
|
});
|