Files
OmniRoute/tests/unit/synced-model-delete-custom-sibling.test.ts
Praveen K Palaniswamy 65e81158ab fix(ollama): route models by advertised capability (#11088)
Landed with the design call resolved per the owner's pick — **option 1**: the synced store is now endpoint-agnostic (persistDiscoveredModels and managedModelImport no longer drop non-chat models at write time), and chat selectability moved to read time (auto-pool expansion in autoStrategy applies filterChatSelectableModels; the models-route projection already had its chatOnly filter). Your discovery test now passes end-to-end (3/3): /api/show capabilities persist per connection and image/embedding requests route through the advertising host.

Reconciliation notes: conflicted areas merged onto the current tip (adobe discovery import, requestedModel preflight signature, resolvedProvider fast-path coexists with the synced-route override — explicit resolution wins); carried base-red drains (#10055 memoization, #11071 test variants) dropped as already-landed; the managed-model-import exclusion test was propagated to the new contract (image/video models persist; the read filter still hides them from chat pickers — pinned by a new assertion). Full battery: 205/206 focused (the one red is a confirmed periodic-timer timing flake on the loaded devbox — 20/20 isolated), autoCombo vitest 30/30, combo suites 46/46, gates + typecheck clean.

Thank you @yourspraveen — the capability probe + routing design was right; it just needed the store contract opened up. Fixes #11087.
2026-08-23 11:45:01 -03:00

109 lines
4.1 KiB
TypeScript

/**
* Model deletion is physical, while persistent exclusion uses isHidden.
*
* A custom and synced row can share one id. Deleting that id prefers the custom
* row and leaves its synced sibling intact. Deleting a synced-only row removes
* the current discovery result, but a later upstream sync may restore it.
*/
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";
// Hermetic DB: this test writes into the customModels and
// syncedAvailableModels namespaces.
const TEST_DATA_DIR = fs.mkdtempSync(path.join(os.tmpdir(), "omniroute-delete-sibling-"));
process.env.DATA_DIR = TEST_DATA_DIR;
// The DELETE route is auth-gated; with no INITIAL_PASSWORD and no stored
// credential, `isAuthenticated` resolves true for local management calls.
delete process.env.INITIAL_PASSWORD;
const core = await import("../../src/lib/db/core.ts");
const modelsDb = await import("../../src/lib/db/models.ts");
const providerModelsRoute = await import("../../src/app/api/provider-models/route.ts");
const PROVIDER = "deepseek";
const CONNECTION = "conn-delete-sibling";
const FLASH = "deepseek-v4-flash";
const PRO = "deepseek-v4-pro";
test.after(() => {
// Release the SQLite handle so the Node test runner can exit, then remove the
// throwaway DATA_DIR (CLAUDE.md "Database Handles in Tests").
core.resetDbInstance();
fs.rmSync(TEST_DATA_DIR, { recursive: true, force: true });
});
/** Invoke the real DELETE handler so the test tracks production behavior. */
async function deleteProviderModel(provider: string, modelId: string) {
const url =
`http://localhost/api/provider-models` +
`?provider=${encodeURIComponent(provider)}&model=${encodeURIComponent(modelId)}`;
const response = await providerModelsRoute.DELETE(new Request(url, { method: "DELETE" }));
assert.equal(response.status, 200, "DELETE /api/provider-models should succeed");
return response.json();
}
test("A: deleting a custom model leaves a same-id synced sibling re-importable", async () => {
core.resetDbInstance();
// Provider sync brings both models in; operator eye-hides one.
await modelsDb.replaceSyncedAvailableModelsForConnection(PROVIDER, CONNECTION, [
{ id: FLASH, name: FLASH },
{ id: PRO, name: PRO },
]);
modelsDb.mergeModelCompatOverride(PROVIDER, FLASH, { isHidden: true });
// Step 2 — operator manually adds a custom model with the SAME id.
await modelsDb.addCustomModel(PROVIDER, FLASH, FLASH);
// Step 3 — operator deletes the custom model they just created.
await deleteProviderModel(PROVIDER, FLASH);
// The synced sibling remains present; deleting the custom definition does not
// reinterpret the operation as a synced-model deletion.
assert.ok(
(await modelsDb.getSyncedAvailableModels(PROVIDER)).some(
(model: { id: string }) => model.id === FLASH
)
);
// The decisive assertion: a later re-sync must bring the model back.
await modelsDb.replaceSyncedAvailableModelsForConnection(PROVIDER, CONNECTION, [
{ id: FLASH, name: FLASH },
{ id: PRO, name: PRO },
]);
const ids = (await modelsDb.getSyncedAvailableModels(PROVIDER)).map((m: { id: string }) => m.id);
assert.ok(
ids.includes(FLASH),
`re-import must restore the synced model; got [${ids.join(", ")}]`
);
});
test("B: deleting a synced-only model is temporary and re-sync restores it", async () => {
core.resetDbInstance();
await modelsDb.replaceSyncedAvailableModelsForConnection(PROVIDER, CONNECTION, [
{ id: PRO, name: PRO },
]);
const result = await deleteProviderModel(PROVIDER, PRO);
assert.equal(result.removed, true);
assert.ok(
!(await modelsDb.getSyncedAvailableModels(PROVIDER)).some(
(model: { id: string }) => model.id === PRO
)
);
await modelsDb.replaceSyncedAvailableModelsForConnection(PROVIDER, CONNECTION, [
{ id: PRO, name: PRO },
]);
assert.ok(
(await modelsDb.getSyncedAvailableModels(PROVIDER)).some(
(model: { id: string }) => model.id === PRO
),
"upstream re-sync restores a physically deleted synced model"
);
});