Files
OmniRoute/tests/unit/skills-injection.test.ts
Diego Rodrigues de Sa e Souza 3d4f3e4960 test(infra): retry recursive temp-dir removal instead of failing a shard on ENOTEMPTY (#11966) (#11968)
* test(infra): retry recursive temp-dir removal instead of failing a shard on ENOTEMPTY (#11966)

Two shards on release/v3.8.51 went red in one day with the same signature —
"ENOTEMPTY, Directory not empty: /tmp/omniroute-<test>-XXXXXX" — from
combo-same-provider-cascade (Unit Tests fast-path 4/4, on a PR that touches only
.github/) and auth-policy-embeddings-webfetch-7785 (the 20k-test TIA step). Both pass
alone and on re-run: the cleanup races something still writing into the directory
(SQLite WAL/-shm checkpoint, a worker, the backup) and under a loaded hosted runner
the window opens. 1154 test files do their own cleanup with
fs.rmSync(dir, { recursive: true, force: true }); 57 already asked for retries.

One-shot codemod (scripts/ad-hoc/codemod-rm-maxretries.mjs, kept for the record):
every rm / rmSync / rmdirSync option object with `recursive: true` and no
`maxRetries` gains `maxRetries: 5, retryDelay: 100` — Node itself then retries
ENOTEMPTY/EBUSY/EPERM for up to ~0.5 s before giving up. 2243 call sites in 1292
files under tests/, the shared tests/_setup/isolateDataDir.ts exit hook included.
Only the option object changes: no call site, assertion or import is touched.

Validation: prettier and ESLint (with the frozen suppressions) clean on all 1292
files; a random 20-file sample runs green (quota-redis-store hangs identically on
the untouched tree — it needs a Redis on localhost, an environment matter). The
four unit shards on this PR are the full run.

* fix(quality): let check-forgotten-sibling-tests read a 1,000-file diff

The gate shells out to `git diff` through execFileSync with Node's default 1 MB
maxBuffer; the 1,292-file codemod in this PR is the first diff large enough to
overflow it, and the gate died with `spawnSync git ENOBUFS` before comparing
anything. 64 MB is far above any real PR and costs nothing when unused.
2026-08-29 01:17:40 -03:00

398 lines
13 KiB
TypeScript

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 TEST_DATA_DIR = fs.mkdtempSync(path.join(os.tmpdir(), "omniroute-skills-injection-"));
process.env.DATA_DIR = TEST_DATA_DIR;
const coreDb = await import("../../src/lib/db/core.ts");
const { GLOBAL_SKILL_OWNER_ID, skillRegistry } = await import("../../src/lib/skills/registry.ts");
const { injectSkills, injectSkillTools, detectProvider, decodeSkillToolName } =
await import("../../src/lib/skills/injection.ts");
// Since #9058, identifiers that violate the provider tool-name pattern
// (^[a-zA-Z0-9_-]+$ — every name@version here, because of "@" and ".") are
// encoded as omr_skill_<base64url(name@version)>, and bare property-map
// schemas are normalized to { type: "object", properties: {...} }.
function encodedName(identifier: string): string {
return `omr_skill_${Buffer.from(identifier, "utf8").toString("base64url")}`;
}
function resetRegistryState() {
skillRegistry["registeredSkills"].clear();
skillRegistry["versionCache"].clear();
}
async function resetStorage() {
resetRegistryState();
coreDb.resetDbInstance();
fs.rmSync(TEST_DATA_DIR, { recursive: true, force: true, maxRetries: 5, retryDelay: 100 });
fs.mkdirSync(TEST_DATA_DIR, { recursive: true });
}
async function registerSkills() {
await skillRegistry.register({
name: "search",
version: "1.0.0",
description: "search the web",
schema: { input: { query: "string" }, output: { results: [] } },
handler: "search-handler",
enabled: true,
apiKeyId: "key-a",
});
await skillRegistry.register({
name: "disabled",
version: "1.0.0",
description: "should not be exposed",
schema: { input: {}, output: {} },
handler: "disabled-handler",
enabled: false,
apiKeyId: "key-a",
});
}
test.beforeEach(async () => {
await resetStorage();
});
test.after(() => {
resetRegistryState();
coreDb.resetDbInstance();
fs.rmSync(TEST_DATA_DIR, { recursive: true, force: true, maxRetries: 5, retryDelay: 100 });
});
test("injectSkills renders enabled tools in provider-specific shapes", async () => {
await registerSkills();
const openaiTools = injectSkills({
provider: "openai",
existingTools: [{ name: "existing-tool" }],
apiKeyId: "key-a",
});
const claudeTools = injectSkills({ provider: "anthropic", apiKeyId: "key-a" });
const geminiTools = injectSkills({ provider: "google", apiKeyId: "key-a" });
const fallbackTools = injectSkills({ provider: "other", apiKeyId: "key-a" });
assert.equal(openaiTools.length, 2);
assert.deepEqual(openaiTools[0], {
type: "function",
function: {
name: "omr_skill_c2VhcmNoQDEuMC4w", // encodedName("search@1.0.0")
description: "search the web",
parameters: { type: "object", properties: { query: { type: "string" } } },
},
});
assert.equal(decodeSkillToolName("omr_skill_c2VhcmNoQDEuMC4w"), "search@1.0.0");
assert.deepEqual(openaiTools[1], { name: "existing-tool" });
assert.deepEqual(claudeTools, [
{
name: "omr_skill_c2VhcmNoQDEuMC4w",
description: "search the web",
input_schema: { type: "object", properties: { query: { type: "string" } } },
},
]);
assert.deepEqual(geminiTools, [
{
name: "omr_skill_c2VhcmNoQDEuMC4w",
description: "search the web",
parameters: { type: "object", properties: { query: { type: "string" } } },
},
]);
assert.deepEqual(fallbackTools, [openaiTools[0]]);
});
test("injectSkills includes global skills without leaking another API key's skills", async () => {
await skillRegistry.register({
name: "releaseNotes",
version: "1.0.0",
description: "draft release notes",
schema: { input: {}, output: {} },
handler: "release-notes-handler",
enabled: true,
apiKeyId: GLOBAL_SKILL_OWNER_ID,
});
await skillRegistry.register({
name: "privateSkill",
version: "1.0.0",
description: "private skill",
schema: { input: {}, output: {} },
handler: "private-handler",
enabled: true,
apiKeyId: "key-b",
});
const tools = injectSkills({ provider: "openai", apiKeyId: "key-a" });
assert.equal(tools.length, 1);
assert.equal(
decodeSkillToolName((tools[0] as { function: { name: string } }).function.name),
"releaseNotes@1.0.0"
);
});
test("injectSkillTools only injects into the last user message without tools", async () => {
await registerSkills();
const injected = injectSkillTools(
[
{ role: "system", content: "be helpful" },
{ role: "user", content: "search docs" },
],
"openai",
"key-a"
);
assert.equal(injected.length, 2);
assert.equal(injected[1].role, "user");
assert.equal(Array.isArray(injected[1].tools), true);
const unchangedWhenToolsExist = injectSkillTools(
[{ role: "user", content: "already has tools", tools: [{ name: "existing" }] }],
"openai",
"key-a"
);
const unchangedAssistant = injectSkillTools(
[{ role: "assistant", content: "no user tail" }],
"openai",
"key-a"
);
const unchangedWithoutSkills = injectSkillTools(
[{ role: "user", content: "nothing to inject" }],
"openai",
"missing-key"
);
assert.deepEqual(unchangedWhenToolsExist, [
{ role: "user", content: "already has tools", tools: [{ name: "existing" }] },
]);
assert.deepEqual(unchangedAssistant, [{ role: "assistant", content: "no user tail" }]);
assert.deepEqual(unchangedWithoutSkills, [{ role: "user", content: "nothing to inject" }]);
});
test("detectProvider maps known model families and falls back to other", () => {
assert.equal(detectProvider("gpt-4.1"), "openai");
assert.equal(detectProvider("claude-sonnet-4"), "anthropic");
assert.equal(detectProvider("gemini-2.5-pro"), "google");
assert.equal(detectProvider("custom-router-model"), "other");
});
test("injectSkills auto mode matches message/context semantics and applies score threshold", async () => {
await skillRegistry.register({
name: "issueSearch",
version: "1.0.0",
description: "search github issues and pull requests",
schema: { input: { query: "string" }, output: { results: [] } },
handler: "search-handler",
enabled: true,
mode: "auto",
tags: ["github", "issues", "search"],
installCount: 42,
apiKeyId: "key-auto",
});
await skillRegistry.register({
name: "calendarPlanner",
version: "1.0.0",
description: "manage calendar scheduling",
schema: { input: {}, output: {} },
handler: "calendar-handler",
enabled: true,
mode: "auto",
tags: ["calendar", "meeting"],
installCount: 99,
apiKeyId: "key-auto",
});
const tools = injectSkills({
provider: "openai",
apiKeyId: "key-auto",
messages: [{ role: "user", content: "Please search github issues for flaky tests" }],
existingTools: [],
});
assert.equal(Array.isArray(tools), true);
assert.equal(tools.length, 1);
assert.deepEqual(tools[0], {
type: "function",
function: {
name: encodedName("issueSearch@1.0.0"),
description: "search github issues and pull requests",
parameters: { type: "object", properties: { query: { type: "string" } } },
},
});
});
test("injectSkills auto mode only scores name tokens with at least three characters", async () => {
for (const name of ["aiSearch", "apiSearch"]) {
await skillRegistry.register({
name,
version: "1.0.0",
description: "find",
schema: { input: {}, output: {} },
handler: `${name}-handler`,
enabled: true,
mode: "auto",
apiKeyId: "key-token-length",
});
}
const tools = injectSkills({
provider: "other",
apiKeyId: "key-token-length",
messages: [{ role: "user", content: "ai api find" }],
});
assert.deepEqual(
tools.map((tool) =>
decodeSkillToolName((tool as { function: { name: string } }).function.name)
),
["apiSearch@1.0.0"]
);
});
test("injectSkills auto mode prefers provider-matching tagged skills", async () => {
await skillRegistry.register({
name: "openaiDocTool",
version: "1.0.0",
description: "openai docs lookup",
schema: { input: {}, output: {} },
handler: "openai-docs",
enabled: true,
mode: "auto",
tags: ["openai", "docs", "lookup"],
apiKeyId: "key-provider",
});
await skillRegistry.register({
name: "claudeDocTool",
version: "1.0.0",
description: "anthropic docs lookup",
schema: { input: {}, output: {} },
handler: "claude-docs",
enabled: true,
mode: "auto",
tags: ["anthropic", "docs", "lookup"],
apiKeyId: "key-provider",
});
const tools = injectSkills({
provider: "openai",
apiKeyId: "key-provider",
existingTools: [{ type: "function", function: { name: "docs_lookup" } }],
messages: [{ role: "user", content: "lookup docs" }],
});
// Provider match is a ranking signal, not a hard exclusion rule.
// Ensure openai-tagged skill is prioritized first.
assert.equal(tools.length, 3);
const injectedNames = tools
.filter(
(tool): tool is { function: { name: string } } =>
!!tool && typeof tool === "object" && "function" in tool
)
.map((tool) => decodeSkillToolName(tool.function.name));
assert.equal(injectedNames[0], "openaiDocTool@1.0.0");
assert.equal(injectedNames.includes("claudeDocTool@1.0.0"), true);
});
test("injectSkills auto mode limits selected auto skills and keeps on-mode skills", async () => {
await skillRegistry.register({
name: "alwaysOnUtility",
version: "1.0.0",
description: "always available utility",
schema: { input: {}, output: {} },
handler: "always-on",
enabled: true,
mode: "on",
apiKeyId: "key-limit",
});
for (let i = 0; i < 7; i++) {
await skillRegistry.register({
name: `searchSkill${i}`,
version: "1.0.0",
description: "search docs and files",
schema: { input: {}, output: {} },
handler: `search-${i}`,
enabled: true,
mode: "auto",
tags: ["search", "docs"],
installCount: i,
apiKeyId: "key-limit",
});
}
const tools = injectSkills({
provider: "openai",
apiKeyId: "key-limit",
messages: [{ role: "user", content: "search docs and files quickly" }],
});
// 1 always-on + max 5 auto
assert.equal(tools.length, 6);
const names = tools.map((tool) =>
decodeSkillToolName((tool as { function: { name: string } }).function.name)
);
assert.equal(names.includes("alwaysOnUtility@1.0.0"), true);
assert.equal(names.filter((name) => name.startsWith("searchSkill")).length, 5);
});
/**
* Regression for #11856 — injected skill tools carried a malformed JSON Schema.
*
* Skills may declare their input in shorthand (`{ "content": "string" }`).
* normalizeInputSchema() wrapped that bare property map as
* `{ type: "object", properties: { content: "string" } }` without expanding the
* shorthand values — and `"string"` is not a JSON Schema object. Zhipu GLM
* behind the Console Go tier validates tool schemas strictly and rejected the
* whole request with `[1210] Invalid API parameter`, giving a 100% failure rate
* on that provider regardless of request content or credentials. Most other
* providers tolerate the malformed schema, which is why it surfaced late.
*
* SkillSchema is `z.record(z.string(), z.unknown())`, so shorthand values pass
* validation from every skill source — the skills API, the GitHub collector and
* the skillssh marketplace alike.
*/
test("#11856 injectSkills expands shorthand property types into valid JSON Schema", async () => {
await skillRegistry.register({
name: "generation",
version: "1.0.0",
description: "generate content",
schema: {
input: {
content: "string",
count: "number",
// already-expanded entries must survive untouched
options: { type: "object", properties: { tone: { type: "string" } } },
},
output: { result: "string" },
},
handler: "generation-handler",
enabled: true,
apiKeyId: "key-11856",
});
const expected = {
type: "object",
properties: {
content: { type: "string" },
count: { type: "number" },
options: { type: "object", properties: { tone: { type: "string" } } },
},
};
const openaiTools = injectSkills({ provider: "openai", apiKeyId: "key-11856" });
assert.deepEqual(
(openaiTools[0] as { function: { parameters: unknown } }).function.parameters,
expected
);
const claudeTools = injectSkills({ provider: "anthropic", apiKeyId: "key-11856" });
assert.deepEqual((claudeTools[0] as { input_schema: unknown }).input_schema, expected);
const geminiTools = injectSkills({ provider: "google", apiKeyId: "key-11856" });
assert.deepEqual((geminiTools[0] as { parameters: unknown }).parameters, expected);
});