+21

![opencode-agent[bot] <219766164+opencode-agent[bot]@users.noreply.github.com>](/assets/img/avatar_default.png)



![opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>](/assets/img/avatar_default.png)



James Long
Brendan Allan
Kit Langton
opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com>
Affan Ali
affanali2k3
Frank
opencode-agent[bot] <219766164+opencode-agent[bot]@users.noreply.github.com>
𝓛𝓲𝓽𝓽𝓵𝓮 𝓕𝓻𝓪𝓷𝓴
Aiden Cline
Jay V
Dax Raad
Aarav Sareen
OpeOginni
Luke Parker
Ben Guthrie
Dax
Filip
Max Anderson
Brendan Allan
Jack
Shoubhit Dash
Dustin Deus
starptech
Aiden Cline
usrnk1
Jay
runvip
opencode
Julian Coy
Vladimir Glafirov
8c94e9005f
Co-authored-by: Brendan Allan <14191578+Brendonovich@users.noreply.github.com> Co-authored-by: Kit Langton <kit.langton@gmail.com> Co-authored-by: opencode-agent[bot] <opencode-agent[bot]@users.noreply.github.com> Co-authored-by: Affan Ali <93028901+affanali2k3@users.noreply.github.com> Co-authored-by: affanali2k3 <affanalikhanxx@gmail.com> Co-authored-by: Frank <frank@anoma.ly> Co-authored-by: opencode-agent[bot] <219766164+opencode-agent[bot]@users.noreply.github.com> Co-authored-by: 𝓛𝓲𝓽𝓽𝓵𝓮 𝓕𝓻𝓪𝓷𝓴 <little-frank@opencord.local> Co-authored-by: Aiden Cline <63023139+rekram1-node@users.noreply.github.com> Co-authored-by: Jay V <air@live.ca> Co-authored-by: Dax Raad <d@ironbay.co> Co-authored-by: Aarav Sareen <96787824+arvsrn@users.noreply.github.com> Co-authored-by: OpeOginni <107570612+OpeOginni@users.noreply.github.com> Co-authored-by: Luke Parker <10430890+Hona@users.noreply.github.com> Co-authored-by: Ben Guthrie <benjee.012@gmail.com> Co-authored-by: Dax <mail@thdxr.com> Co-authored-by: Filip <34747899+neriousy@users.noreply.github.com> Co-authored-by: Max Anderson <max.a.anderson95@gmail.com> Co-authored-by: Brendan Allan <git@brendonovich.dev> Co-authored-by: Jack <jack@anoma.ly> Co-authored-by: Shoubhit Dash <shoubhit2005@gmail.com> Co-authored-by: Dustin Deus <deusdustin@gmail.com> Co-authored-by: starptech <starptech@starptechs-MBP.fritz.box> Co-authored-by: Aiden Cline <aidenpcline@gmail.com> Co-authored-by: usrnk1 <7547651+usrnk1@users.noreply.github.com> Co-authored-by: Jay <53023+jayair@users.noreply.github.com> Co-authored-by: runvip <164729189+runvip@users.noreply.github.com> Co-authored-by: opencode <opencode@sst.dev> Co-authored-by: Julian Coy <julian@ex-machina.co> Co-authored-by: Vladimir Glafirov <vglafirov@gitlab.com>
317 lines
11 KiB
TypeScript
317 lines
11 KiB
TypeScript
import { beforeEach, describe, expect, test } from "bun:test"
|
|
import { Effect, Layer, Schema } from "effect"
|
|
import { HttpClient, HttpClientResponse } from "effect/unstable/http"
|
|
import { AppNodeBuilder } from "@opencode-ai/core/effect/app-node-builder"
|
|
import { LayerNode } from "@opencode-ai/core/effect/layer-node"
|
|
import { LayerNodePlatform } from "@opencode-ai/core/effect/app-node-platform"
|
|
import { PermissionV2 } from "@opencode-ai/core/permission"
|
|
import { SessionV2 } from "@opencode-ai/core/session"
|
|
import { ToolRegistry } from "@opencode-ai/core/tool/registry"
|
|
import { WebSearchTool } from "@opencode-ai/core/tool/websearch"
|
|
import { ToolOutputStore } from "@opencode-ai/core/tool-output-store"
|
|
import { testEffect } from "./lib/effect"
|
|
import { toolIdentity, executeTool, settleTool, toolDefinitions } from "./lib/tool"
|
|
|
|
const sessionID = SessionV2.ID.make("ses_websearch_test")
|
|
const payload = (text: string) =>
|
|
JSON.stringify({
|
|
jsonrpc: "2.0",
|
|
id: 1,
|
|
result: { content: [{ type: "text", text }] },
|
|
})
|
|
|
|
describe("WebSearchTool provider selection", () => {
|
|
test("rejects out-of-range numeric controls", () => {
|
|
const decode = Schema.decodeUnknownSync(WebSearchTool.Input)
|
|
expect(() => decode({ query: "x", numResults: 0 })).toThrow()
|
|
expect(() => decode({ query: "x", numResults: WebSearchTool.MAX_NUM_RESULTS + 1 })).toThrow()
|
|
expect(() => decode({ query: "x", contextMaxCharacters: WebSearchTool.MAX_CONTEXT_CHARACTERS + 1 })).toThrow()
|
|
})
|
|
test("selects a stable provider per session", () => {
|
|
expect(WebSearchTool.selectProvider(sessionID)).toBe(WebSearchTool.selectProvider(sessionID))
|
|
})
|
|
|
|
test("supports an explicit operational override", () => {
|
|
expect(WebSearchTool.selectProvider(sessionID, { enableExa: false, enableParallel: false }, "parallel")).toBe(
|
|
"parallel",
|
|
)
|
|
expect(WebSearchTool.selectProvider(sessionID, { enableExa: false, enableParallel: false }, "exa")).toBe("exa")
|
|
})
|
|
|
|
test("prefers Parallel when both explicit flags are enabled", () => {
|
|
expect(WebSearchTool.selectProvider(sessionID, { enableExa: true, enableParallel: true })).toBe("parallel")
|
|
})
|
|
|
|
test("prefers Exa when only its explicit flag is enabled", () => {
|
|
expect(WebSearchTool.selectProvider(sessionID, { enableExa: true, enableParallel: false })).toBe("exa")
|
|
})
|
|
})
|
|
|
|
describe("WebSearchTool MCP response parser", () => {
|
|
test("parses plain JSON-RPC responses", async () => {
|
|
expect(await Effect.runPromise(WebSearchTool.parseResponse(payload("search results")))).toBe("search results")
|
|
})
|
|
|
|
test("parses SSE JSON-RPC responses and ignores non-JSON frames", async () => {
|
|
expect(
|
|
await Effect.runPromise(
|
|
WebSearchTool.parseResponse(`data: [DONE]\nevent: message\ndata: ${payload("search results")}\n\n`),
|
|
),
|
|
).toBe("search results")
|
|
})
|
|
})
|
|
|
|
interface Request {
|
|
readonly url: string
|
|
readonly headers: Record<string, string>
|
|
readonly body: unknown
|
|
}
|
|
|
|
const requests: Request[] = []
|
|
const assertions: PermissionV2.AssertInput[] = []
|
|
let responseBody = payload("search results")
|
|
let makeResponse = () => new Response(responseBody, { status: 200 })
|
|
let config: WebSearchTool.Config = { enableExa: false, enableParallel: false }
|
|
|
|
beforeEach(() => {
|
|
responseBody = payload("search results")
|
|
makeResponse = () => new Response(responseBody, { status: 200 })
|
|
})
|
|
|
|
const http = Layer.succeed(
|
|
HttpClient.HttpClient,
|
|
HttpClient.make((request) =>
|
|
Effect.sync(() => {
|
|
if (request.body._tag !== "Uint8Array") throw new Error(`Unexpected request body: ${request.body._tag}`)
|
|
requests.push({
|
|
url: request.url,
|
|
headers: request.headers,
|
|
body: JSON.parse(new TextDecoder().decode(request.body.body)),
|
|
})
|
|
return HttpClientResponse.fromWeb(request, makeResponse())
|
|
}),
|
|
),
|
|
)
|
|
const permission = Layer.succeed(
|
|
PermissionV2.Service,
|
|
PermissionV2.Service.of({
|
|
assert: (input) => Effect.sync(() => assertions.push(input)),
|
|
ask: () => Effect.die("unused"),
|
|
reply: () => Effect.die("unused"),
|
|
get: () => Effect.die("unused"),
|
|
forSession: () => Effect.die("unused"),
|
|
list: () => Effect.die("unused"),
|
|
}),
|
|
)
|
|
const websearchConfig = Layer.succeed(
|
|
WebSearchTool.ConfigService,
|
|
WebSearchTool.ConfigService.of({
|
|
get provider() {
|
|
return config.provider
|
|
},
|
|
get enableExa() {
|
|
return config.enableExa
|
|
},
|
|
get enableParallel() {
|
|
return config.enableParallel
|
|
},
|
|
get exaApiKey() {
|
|
return config.exaApiKey
|
|
},
|
|
get parallelApiKey() {
|
|
return config.parallelApiKey
|
|
},
|
|
}),
|
|
)
|
|
const it = testEffect(
|
|
AppNodeBuilder.build(
|
|
LayerNode.group([ToolRegistry.node, ToolRegistry.toolsNode, WebSearchTool.configNode, WebSearchTool.node]),
|
|
[
|
|
[PermissionV2.node, permission],
|
|
[LayerNodePlatform.httpClient, http],
|
|
[WebSearchTool.configNode, websearchConfig],
|
|
[ToolOutputStore.node, ToolOutputStore.nodeWithoutConfig],
|
|
],
|
|
),
|
|
)
|
|
|
|
describe("WebSearchTool registration", () => {
|
|
it.effect("registers websearch, asserts query permission, and calls Exa", () =>
|
|
Effect.gen(function* () {
|
|
requests.length = 0
|
|
assertions.length = 0
|
|
responseBody = payload("exa results")
|
|
config = { provider: "exa", enableExa: false, enableParallel: false }
|
|
const registry = yield* ToolRegistry.Service
|
|
|
|
expect((yield* toolDefinitions(registry)).map((tool) => tool.name)).toEqual(["websearch"])
|
|
expect(
|
|
yield* executeTool(registry, {
|
|
sessionID,
|
|
...toolIdentity,
|
|
call: {
|
|
type: "tool-call",
|
|
id: "call-exa",
|
|
name: "websearch",
|
|
input: {
|
|
query: "effect typescript",
|
|
numResults: 3,
|
|
livecrawl: "preferred",
|
|
type: "fast",
|
|
contextMaxCharacters: 2500,
|
|
},
|
|
},
|
|
}),
|
|
).toEqual({ type: "text", value: "exa results" })
|
|
expect(assertions).toMatchObject([
|
|
{
|
|
sessionID,
|
|
action: "websearch",
|
|
resources: ["effect typescript"],
|
|
save: ["*"],
|
|
metadata: {
|
|
query: "effect typescript",
|
|
numResults: 3,
|
|
livecrawl: "preferred",
|
|
type: "fast",
|
|
contextMaxCharacters: 2500,
|
|
provider: "exa",
|
|
},
|
|
},
|
|
])
|
|
expect(requests).toEqual([
|
|
{
|
|
url: WebSearchTool.EXA_URL,
|
|
headers: expect.any(Object),
|
|
body: {
|
|
jsonrpc: "2.0",
|
|
id: 1,
|
|
method: "tools/call",
|
|
params: {
|
|
name: "web_search_exa",
|
|
arguments: {
|
|
query: "effect typescript",
|
|
type: "fast",
|
|
numResults: 3,
|
|
livecrawl: "preferred",
|
|
contextMaxCharacters: 2500,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
])
|
|
}),
|
|
)
|
|
|
|
it.effect("calls Parallel with session ID and keeps bearer credentials out of output", () =>
|
|
Effect.gen(function* () {
|
|
requests.length = 0
|
|
assertions.length = 0
|
|
responseBody = payload("parallel results")
|
|
config = { provider: "parallel", enableExa: false, enableParallel: false, parallelApiKey: "parallel-secret" }
|
|
const registry = yield* ToolRegistry.Service
|
|
|
|
const settled = yield* settleTool(registry, {
|
|
sessionID,
|
|
...toolIdentity,
|
|
call: { type: "tool-call", id: "call-parallel", name: "websearch", input: { query: "effect layers" } },
|
|
})
|
|
|
|
expect(requests[0]).toMatchObject({
|
|
url: WebSearchTool.PARALLEL_URL,
|
|
headers: { authorization: "Bearer parallel-secret" },
|
|
body: {
|
|
jsonrpc: "2.0",
|
|
id: 1,
|
|
method: "tools/call",
|
|
params: {
|
|
name: "web_search",
|
|
arguments: { objective: "effect layers", search_queries: ["effect layers"], session_id: sessionID },
|
|
},
|
|
},
|
|
})
|
|
expect(requests[0]?.body).not.toHaveProperty("params.arguments.model_name")
|
|
expect(settled).toEqual({
|
|
result: { type: "text", value: "parallel results" },
|
|
output: {
|
|
structured: { provider: "parallel", text: "parallel results" },
|
|
content: [{ type: "text", text: "parallel results" }],
|
|
},
|
|
})
|
|
expect(JSON.stringify(settled)).not.toContain("parallel-secret")
|
|
}),
|
|
)
|
|
|
|
it.effect("keeps an Exa credential in the transport URL and out of model output", () =>
|
|
Effect.gen(function* () {
|
|
requests.length = 0
|
|
assertions.length = 0
|
|
responseBody = payload("credentialed exa results")
|
|
config = { provider: "exa", enableExa: false, enableParallel: false, exaApiKey: "exa secret" }
|
|
const registry = yield* ToolRegistry.Service
|
|
|
|
const settled = yield* settleTool(registry, {
|
|
sessionID,
|
|
...toolIdentity,
|
|
call: { type: "tool-call", id: "call-exa-key", name: "websearch", input: { query: "effect schema" } },
|
|
})
|
|
|
|
expect(requests[0]?.url).toBe(`${WebSearchTool.EXA_URL}?exaApiKey=exa+secret`)
|
|
expect(JSON.stringify(settled)).not.toContain("exa secret")
|
|
}),
|
|
)
|
|
|
|
it.effect("returns the legacy no-results fallback as concise model text", () =>
|
|
Effect.gen(function* () {
|
|
requests.length = 0
|
|
assertions.length = 0
|
|
responseBody = ""
|
|
config = { provider: "exa", enableExa: false, enableParallel: false }
|
|
const registry = yield* ToolRegistry.Service
|
|
|
|
expect(
|
|
yield* executeTool(registry, {
|
|
sessionID,
|
|
...toolIdentity,
|
|
call: { type: "tool-call", id: "call-empty", name: "websearch", input: { query: "nothing" } },
|
|
}),
|
|
).toEqual({ type: "text", value: WebSearchTool.NO_RESULTS })
|
|
}),
|
|
)
|
|
|
|
it.effect("rejects oversized MCP response bodies", () =>
|
|
Effect.gen(function* () {
|
|
requests.length = 0
|
|
assertions.length = 0
|
|
let chunksRead = 0
|
|
let cancelled = false
|
|
makeResponse = () =>
|
|
new Response(
|
|
new ReadableStream({
|
|
pull(controller) {
|
|
chunksRead++
|
|
if (chunksRead === 10) throw new Error("response was not stopped at the byte limit")
|
|
controller.enqueue(new Uint8Array(64 * 1024))
|
|
},
|
|
cancel() {
|
|
cancelled = true
|
|
},
|
|
}),
|
|
{ status: 200 },
|
|
)
|
|
config = { provider: "exa", enableExa: false, enableParallel: false }
|
|
const registry = yield* ToolRegistry.Service
|
|
|
|
expect(
|
|
yield* executeTool(registry, {
|
|
sessionID,
|
|
...toolIdentity,
|
|
call: { type: "tool-call", id: "call-large-response", name: "websearch", input: { query: "too much" } },
|
|
}),
|
|
).toEqual({ type: "error", value: "Unable to search the web for too much" })
|
|
expect(chunksRead).toBeLessThan(10)
|
|
expect(cancelled).toBe(true)
|
|
}),
|
|
)
|
|
})
|