Files
OmniRoute/tests/unit/web-fetch-dispatch.test.ts
Diego Rodrigues de Sa e Souza 93265eede3 test(infra): retry recursive temp-dir removal on main (main twin of #11968) (#12246)
* test(infra): retry recursive temp-dir removal on main (main twin of #11968)

`main` has been red since b342c1a361 on the vitest and integration gates:

  ✖ tests/unit/autoCombo/provider-family-combos.test.ts > auto/<family>
  ✖ chat pipeline applies Codex OAuth fingerprint and priority tier inside combos

Both call resetStorage() from beforeEach, which does an fs.rmSync(TEST_DATA_DIR,
{recursive: true, force: true}) with no retry, and intermittently loses the race
with a not-yet-released SQLite handle (ENOTEMPTY).

release/v3.8.51 fixed this in #11968 with a mechanical codemod adding
maxRetries/retryDelay to every recursive rm/rmSync/rmdirSync under tests/, but
that PR landed only on the release branch. Because main only receives work at
the release squash, it stayed broken for the whole cycle — and repo-wide gates
then turn every open PR into main red on checks unrelated to their diff.

This is the --base main twin: re-runs the same codemod that already shipped on
the release branch (scripts/ad-hoc/codemod-rm-maxretries.mjs), so the two
branches converge on identical test-teardown semantics. Test-only; no product
logic is touched.

The remaining three failures reported on #12133 (unit full suite exceeding its
4800s ceiling, package-artifact exceeding 1200s, and the boot-smoke that is
skipped as a consequence) are runner-contention timeouts, not code defects —
validate-release-green.mjs runs those heavy gates concurrently on one shared
hosted runner. There is no fix to port for those.

* chore(scripts): carry the rm-maxretries codemod onto main alongside its output

The codemod that generated the previous commit lives in the repo on
release/v3.8.51 (added by #11968) but was never on main. Bringing it over keeps
the tool next to the change it produced, so the transformation stays
reproducible and auditable from either branch.
2026-09-01 01:48:00 -03:00

179 lines
5.1 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";
// #7339 — proves the synthetic omniroute_web_fetch tool call (emitted by
// webFetchInterception.ts, Phase 3-4 of #3384) is routed through the same
// generic dispatch path already proven for omniroute_web_search
// (handleToolCallExecution -> builtinSkills.web_fetch), including the
// error/abort-not-swallowed case (Hard Rule #6).
const TEST_DATA_DIR = fs.mkdtempSync(path.join(os.tmpdir(), "omniroute-web-fetch-dispatch-"));
process.env.DATA_DIR = TEST_DATA_DIR;
const coreDb = await import("../../src/lib/db/core.ts");
const { skillRegistry } = await import("../../src/lib/skills/registry.ts");
const { skillExecutor } = await import("../../src/lib/skills/executor.ts");
const { handleToolCallExecution } = await import("../../src/lib/skills/interception.ts");
const { builtinSkills } = await import("../../src/lib/skills/builtins.ts");
const { OMNIROUTE_WEB_FETCH_FALLBACK_TOOL_NAME } = await import(
"../../open-sse/services/webFetchInterception.ts"
);
const originalWebFetchHandler = builtinSkills.web_fetch;
function resetRuntime() {
skillRegistry["registeredSkills"].clear();
skillRegistry["versionCache"].clear();
skillExecutor["handlers"].clear();
skillExecutor.setTimeout(50);
}
test.beforeEach(() => {
resetRuntime();
coreDb.resetDbInstance();
fs.rmSync(TEST_DATA_DIR, { recursive: true, force: true, maxRetries: 5, retryDelay: 100 });
fs.mkdirSync(TEST_DATA_DIR, { recursive: true });
});
test.after(() => {
builtinSkills.web_fetch = originalWebFetchHandler;
resetRuntime();
coreDb.resetDbInstance();
fs.rmSync(TEST_DATA_DIR, { recursive: true, force: true, maxRetries: 5, retryDelay: 100 });
});
const contextWithFetchBuiltin = {
apiKeyId: "key-a",
sessionId: "session-1",
requestId: "request-1",
builtinToolNames: [OMNIROUTE_WEB_FETCH_FALLBACK_TOOL_NAME],
provider: "openai",
model: "gpt-5",
};
test("handleToolCallExecution routes omniroute_web_fetch to the web_fetch builtin handler and returns the tool-result envelope", async () => {
let receivedInput: unknown;
let receivedContext: unknown;
builtinSkills.web_fetch = async (input, context) => {
receivedInput = input;
receivedContext = context;
return {
success: true,
provider: "firecrawl",
url: input.url,
content: "fetched content",
links: [],
metadata: null,
screenshot_url: null,
};
};
const result = await handleToolCallExecution(
{
choices: [
{
message: {
tool_calls: [
{
id: "call-fetch-1",
function: {
name: OMNIROUTE_WEB_FETCH_FALLBACK_TOOL_NAME,
arguments: '{"url":"https://example.com"}',
},
},
],
},
},
],
},
"gpt-5",
contextWithFetchBuiltin
);
assert.deepEqual(result.tool_results, [
{
tool_call_id: "call-fetch-1",
output: JSON.stringify({
success: true,
provider: "firecrawl",
url: "https://example.com",
content: "fetched content",
links: [],
metadata: null,
screenshot_url: null,
}),
},
]);
assert.deepEqual(receivedInput, { url: "https://example.com" });
assert.equal((receivedContext as { provider?: string }).provider, "openai");
assert.equal((receivedContext as { model?: string }).model, "gpt-5");
});
test("an unknown tool name is left untouched when builtinToolNames does not include it (#2815 no-alias-no-dispatch)", async () => {
const original = {
choices: [
{
message: {
tool_calls: [
{
id: "call-fetch-2",
function: {
name: OMNIROUTE_WEB_FETCH_FALLBACK_TOOL_NAME,
arguments: '{"url":"https://example.com"}',
},
},
],
},
},
],
};
const result = await handleToolCallExecution(original, "gpt-5", {
apiKeyId: "key-a",
sessionId: "session-1",
requestId: "request-1",
builtinToolNames: [],
});
assert.equal(result, original);
});
test("an error thrown mid-fetch (e.g. an aborted request) is surfaced, not silently dropped (Hard Rule #6)", async () => {
builtinSkills.web_fetch = async () => {
const abortError = new Error("The operation was aborted");
abortError.name = "AbortError";
throw abortError;
};
const result = await handleToolCallExecution(
{
choices: [
{
message: {
tool_calls: [
{
id: "call-fetch-abort",
function: {
name: OMNIROUTE_WEB_FETCH_FALLBACK_TOOL_NAME,
arguments: '{"url":"https://example.com"}',
},
},
],
},
},
],
},
"gpt-5",
contextWithFetchBuiltin
);
assert.deepEqual(result.tool_results, [
{
tool_call_id: "call-fetch-abort",
output: JSON.stringify({ error: "The operation was aborted" }),
},
]);
});