mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-31 20:32:20 +03:00
* chore(release): v3.7.4 — version bump, openapi and changelog sync * fix: preserve previous_response_id and conversation_id fields on empty input array (#1729) * fix: bypass UI validation block for optional API keys and fix string fallback typing (#1721) * fix(proxy): disable HTTP keep-alive and pipelining in Undici proxy dispatcher to prevent socket hang up * feat(proxy): implement bulk proxy import via pipe-delimited parser with update-or-create logic * docs: update changelog for v3.7.4 fixes and proxy features * test: update responses store expectations for empty input arrays * feat(pwa): add fullscreen installable PWA with manifest, service worker, and cross-platform app icons. (#1728) Integrated into release/v3.7.4 * Fix image provider validation and Stability image requests (#1726) Integrated into release/v3.7.4 * docs: add PR 1726 and PR 1728 to v3.7.4 changelog * fix(security): replace insecure Math.random with crypto.getRandomValues for fallback UUID generation * fix(migrations): intercept 007 migration to use IF NOT EXISTS logic on fresh installs Fixes #1733 * test: fix typescript compilation errors in unit tests * fix(db): reconcile legacy reasoning cache migration * chore(release): bump to v3.7.4 — changelog, docs, version sync * fix(cc-compatible): preserve Claude Code system skeleton (#1740) Integrated into release/v3.7.4 * docs(changelog): update for PR #1740 merge * docs(changelog): include workflow updates * fix(db): reconcile legacy reasoning cache migration (#1734) Integrated into release/v3.7.4 * Add endpoint tunnel visibility settings (#1743) Integrated into release/v3.7.4 * Normalize max reasoning effort for Codex routing (#1744) Integrated into release/v3.7.4 * Fix Claude Code gateway config helper (#1745) Integrated into release/v3.7.4 * Refresh CLI fingerprint provider profiles (#1746) Integrated into release/v3.7.4 * Integrated into release/v3.7.4 (PR #1742) * docs(changelog): update for PRs 1742-1746 --------- Co-authored-by: diegosouzapw <diegosouzapw@users.noreply.github.com> Co-authored-by: Yash Ghule <y.ghule77@gmail.com> Co-authored-by: backryun <bakryun0718@proton.me> Co-authored-by: dhaern <manker_lol@hotmail.com> Co-authored-by: Randi <55005611+rdself@users.noreply.github.com> Co-authored-by: Duncan L <leungd@gmail.com>
123 lines
4.1 KiB
JavaScript
123 lines
4.1 KiB
JavaScript
import test from "node:test";
|
|
import assert from "node:assert/strict";
|
|
import fs from "node:fs";
|
|
import os from "node:os";
|
|
import path from "node:path";
|
|
|
|
const FALLBACK_VERSION = "3.2.14";
|
|
const Database = (await import("better-sqlite3")).default;
|
|
|
|
const { getCursorVersion, resetCursorVersionCache } =
|
|
await import("../../open-sse/utils/cursorVersionDetector.ts");
|
|
|
|
function createStateDb(dir, version) {
|
|
const dbPath = path.join(dir, "state.vscdb");
|
|
const db = new Database(dbPath);
|
|
db.exec("CREATE TABLE itemTable (key TEXT PRIMARY KEY, value TEXT)");
|
|
if (version) {
|
|
db.prepare("INSERT INTO itemTable (key, value) VALUES (?, ?)").run(
|
|
"cursorupdate.lastUpdatedAndShown.version",
|
|
version
|
|
);
|
|
}
|
|
db.close();
|
|
return dbPath;
|
|
}
|
|
|
|
test("getCursorVersion reads version from state.vscdb", () => {
|
|
const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), "cursor-ver-"));
|
|
const dbPath = createStateDb(tmpDir, "99.0.1");
|
|
const origEnv = process.env.CURSOR_STATE_DB_PATH;
|
|
process.env.CURSOR_STATE_DB_PATH = dbPath;
|
|
|
|
try {
|
|
resetCursorVersionCache();
|
|
assert.equal(getCursorVersion(), "99.0.1");
|
|
} finally {
|
|
if (origEnv === undefined) delete process.env.CURSOR_STATE_DB_PATH;
|
|
else process.env.CURSOR_STATE_DB_PATH = origEnv;
|
|
fs.rmSync(tmpDir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
test("getCursorVersion returns fallback when DB does not exist", () => {
|
|
const origEnv = process.env.CURSOR_STATE_DB_PATH;
|
|
process.env.CURSOR_STATE_DB_PATH = "/nonexistent/path/state.vscdb";
|
|
|
|
try {
|
|
resetCursorVersionCache();
|
|
assert.equal(getCursorVersion(), FALLBACK_VERSION);
|
|
} finally {
|
|
if (origEnv === undefined) delete process.env.CURSOR_STATE_DB_PATH;
|
|
else process.env.CURSOR_STATE_DB_PATH = origEnv;
|
|
}
|
|
});
|
|
|
|
test("getCursorVersion returns fallback when DB has no version key", () => {
|
|
const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), "cursor-ver-nokey-"));
|
|
const dbPath = createStateDb(tmpDir, null);
|
|
const origEnv = process.env.CURSOR_STATE_DB_PATH;
|
|
process.env.CURSOR_STATE_DB_PATH = dbPath;
|
|
|
|
try {
|
|
resetCursorVersionCache();
|
|
assert.equal(getCursorVersion(), FALLBACK_VERSION);
|
|
} finally {
|
|
if (origEnv === undefined) delete process.env.CURSOR_STATE_DB_PATH;
|
|
else process.env.CURSOR_STATE_DB_PATH = origEnv;
|
|
fs.rmSync(tmpDir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
test("getCursorVersion caches the result across calls", () => {
|
|
const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), "cursor-ver-cache-"));
|
|
const dbPath = createStateDb(tmpDir, "10.0.0");
|
|
const origEnv = process.env.CURSOR_STATE_DB_PATH;
|
|
process.env.CURSOR_STATE_DB_PATH = dbPath;
|
|
|
|
try {
|
|
resetCursorVersionCache();
|
|
assert.equal(getCursorVersion(), "10.0.0");
|
|
|
|
// Update the DB — cache should still return old value
|
|
const db = new Database(dbPath);
|
|
db.prepare("UPDATE itemTable SET value = ? WHERE key = ?").run(
|
|
"20.0.0",
|
|
"cursorupdate.lastUpdatedAndShown.version"
|
|
);
|
|
db.close();
|
|
|
|
assert.equal(getCursorVersion(), "10.0.0", "cached value should be returned");
|
|
} finally {
|
|
if (origEnv === undefined) delete process.env.CURSOR_STATE_DB_PATH;
|
|
else process.env.CURSOR_STATE_DB_PATH = origEnv;
|
|
fs.rmSync(tmpDir, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
test("resetCursorVersionCache forces re-read from DB", () => {
|
|
const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), "cursor-ver-reset-"));
|
|
const dbPath = createStateDb(tmpDir, "5.0.0");
|
|
const origEnv = process.env.CURSOR_STATE_DB_PATH;
|
|
process.env.CURSOR_STATE_DB_PATH = dbPath;
|
|
|
|
try {
|
|
resetCursorVersionCache();
|
|
assert.equal(getCursorVersion(), "5.0.0");
|
|
|
|
const db = new Database(dbPath);
|
|
db.prepare("UPDATE itemTable SET value = ? WHERE key = ?").run(
|
|
"6.0.0",
|
|
"cursorupdate.lastUpdatedAndShown.version"
|
|
);
|
|
db.close();
|
|
|
|
resetCursorVersionCache();
|
|
assert.equal(getCursorVersion(), "6.0.0", "should re-read after cache reset");
|
|
} finally {
|
|
if (origEnv === undefined) delete process.env.CURSOR_STATE_DB_PATH;
|
|
else process.env.CURSOR_STATE_DB_PATH = origEnv;
|
|
fs.rmSync(tmpDir, { recursive: true, force: true });
|
|
}
|
|
});
|