chatccc 0.2.252 → 0.2.253
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/bin/cccagent.mjs +12 -3
- package/bin/chatccc.mjs +15 -6
- package/deepccc-agent/os-prompts/darwin.md +8 -8
- package/deepccc-agent/os-prompts/linux.md +8 -8
- package/deepccc-agent/os-prompts/win32.md +11 -11
- package/deepccc-agent/package.json +65 -65
- package/dist/deepccc-agent/src/cli.js +634 -0
- package/dist/deepccc-agent/src/config.js +76 -0
- package/dist/deepccc-agent/src/context.js +348 -0
- package/dist/deepccc-agent/src/file-log.js +34 -0
- package/dist/deepccc-agent/src/file-tools.js +1208 -0
- package/dist/deepccc-agent/src/index.js +571 -0
- package/dist/deepccc-agent/src/permissions.js +170 -0
- package/dist/deepccc-agent/src/privacy.js +124 -0
- package/dist/deepccc-agent/src/proc-tree-kill.js +60 -0
- package/dist/deepccc-agent/src/progress/cards-helpers.js +70 -0
- package/dist/deepccc-agent/src/progress/reducer.js +102 -0
- package/dist/deepccc-agent/src/progress/terminal-renderer.js +264 -0
- package/dist/deepccc-agent/src/progress/view.js +30 -0
- package/dist/deepccc-agent/src/raw-stream-log.js +106 -0
- package/dist/deepccc-agent/src/session-search.js +276 -0
- package/dist/deepccc-agent/src/session-select.js +23 -0
- package/dist/deepccc-agent/src/sigint.js +26 -0
- package/dist/deepccc-agent/src/skills.js +178 -0
- package/dist/deepccc-agent/src/web-tools.js +246 -0
- package/dist/src/adapters/adapter-interface.js +19 -0
- package/dist/src/adapters/ccc-adapter.js +112 -0
- package/dist/src/adapters/claude-adapter.js +497 -0
- package/dist/src/adapters/claude-session-meta-store.js +92 -0
- package/dist/src/adapters/codex-adapter.js +279 -0
- package/dist/src/adapters/codex-session-meta-store.js +94 -0
- package/dist/src/adapters/cursor-adapter.js +491 -0
- package/dist/src/adapters/cursor-session-meta-store.js +116 -0
- package/dist/src/adapters/jsonl-stream.js +104 -0
- package/{src/adapters/proc-tree-kill.ts → dist/src/adapters/proc-tree-kill.js} +94 -97
- package/dist/src/adapters/raw-stream-log.js +106 -0
- package/dist/src/adapters/resource-monitor.js +113 -0
- package/dist/src/agent-activity.js +133 -0
- package/dist/src/agent-delegate-task-rpc.js +129 -0
- package/dist/src/agent-delegate-task.js +48 -0
- package/dist/src/agent-file-rpc.js +152 -0
- package/dist/src/agent-image-rpc.js +148 -0
- package/dist/src/agent-platform-routing.js +13 -0
- package/dist/src/agent-reload-config-rpc.js +23 -0
- package/dist/src/agent-rpc-body.js +87 -0
- package/dist/src/agent-stop-stuck.js +110 -0
- package/dist/src/card-action-routing.js +7 -0
- package/dist/src/card-plain-text.js +101 -0
- package/dist/src/cardkit.js +158 -0
- package/dist/src/cards.js +573 -0
- package/dist/src/chatgpt-subscription-rpc.js +18 -0
- package/dist/src/chatgpt-subscription.js +199 -0
- package/dist/src/chrome-devtools-guard.js +238 -0
- package/dist/src/claude-sdk-installer.js +249 -0
- package/dist/src/codex-reset-actions.js +143 -0
- package/dist/src/config-utils.js +149 -0
- package/dist/src/config.js +804 -0
- package/dist/src/cursor-usage.js +77 -0
- package/dist/src/exit-banner.js +28 -0
- package/dist/src/feishu-api.js +1404 -0
- package/dist/src/feishu-message-ingress.js +137 -0
- package/dist/src/feishu-platform.js +97 -0
- package/dist/src/format-message.js +252 -0
- package/dist/src/git-command.js +155 -0
- package/dist/src/im-skills.js +121 -0
- package/dist/src/index.js +833 -0
- package/dist/src/litellm-proxy.js +300 -0
- package/dist/src/orchestrator.js +2078 -0
- package/dist/src/package-root.js +26 -0
- package/dist/src/platform-adapter.js +7 -0
- package/dist/src/platform-startup.js +6 -0
- package/dist/src/privacy.js +100 -0
- package/dist/src/progress/reducer.js +102 -0
- package/dist/src/progress/terminal-renderer.js +264 -0
- package/dist/src/progress/view.js +30 -0
- package/dist/src/response-stall.js +14 -0
- package/dist/src/runtime-entry.js +13 -0
- package/dist/src/runtime-reload.js +19 -0
- package/dist/src/session-chat-binding.js +183 -0
- package/dist/src/session-name.js +7 -0
- package/dist/src/session.js +2144 -0
- package/dist/src/shared-prefix.js +16 -0
- package/dist/src/shared.js +493 -0
- package/dist/src/sim-agent.js +105 -0
- package/dist/src/sim-platform.js +142 -0
- package/dist/src/sim-store.js +231 -0
- package/dist/src/simplify.js +99 -0
- package/dist/src/startup-lifecycle.js +209 -0
- package/dist/src/stream-state.js +141 -0
- package/dist/src/terminal-error.js +100 -0
- package/dist/src/trace.js +50 -0
- package/dist/src/turn-cards.js +92 -0
- package/dist/src/update-command-guard.js +114 -0
- package/{src/web-ui.ts → dist/src/web-ui.js} +749 -823
- package/dist/src/wechat-platform.js +545 -0
- package/package.json +76 -74
- package/deepccc-agent/LICENSE +0 -201
- package/deepccc-agent/bin/deepccc.mjs +0 -26
- package/deepccc-agent/docs/cache-hit-rate-1.jpg +0 -0
- package/deepccc-agent/docs/cache-hit-rate-2.jpg +0 -0
- package/deepccc-agent/package-lock.json +0 -2027
- package/deepccc-agent/src/__tests__/chat-session.test.ts +0 -877
- package/deepccc-agent/src/__tests__/cli-json.test.ts +0 -49
- package/deepccc-agent/src/__tests__/config.test.ts +0 -34
- package/deepccc-agent/src/__tests__/context.test.ts +0 -341
- package/deepccc-agent/src/__tests__/file-tools.test.ts +0 -240
- package/deepccc-agent/src/__tests__/permissions.test.ts +0 -199
- package/deepccc-agent/src/__tests__/privacy.test.ts +0 -318
- package/deepccc-agent/src/__tests__/progress-reducer.test.ts +0 -121
- package/deepccc-agent/src/__tests__/session-search.test.ts +0 -262
- package/deepccc-agent/src/__tests__/session-select.test.ts +0 -116
- package/deepccc-agent/src/__tests__/sigint.test.ts +0 -56
- package/deepccc-agent/src/__tests__/skills.test.ts +0 -284
- package/deepccc-agent/src/__tests__/terminal-renderer.test.ts +0 -247
- package/deepccc-agent/src/__tests__/web-tools.test.ts +0 -220
- package/deepccc-agent/src/cli.ts +0 -682
- package/deepccc-agent/src/config.ts +0 -101
- package/deepccc-agent/src/context.ts +0 -465
- package/deepccc-agent/src/file-log.ts +0 -38
- package/deepccc-agent/src/file-tools.ts +0 -1493
- package/deepccc-agent/src/index.ts +0 -710
- package/deepccc-agent/src/permissions.ts +0 -226
- package/deepccc-agent/src/privacy.ts +0 -141
- package/deepccc-agent/src/proc-tree-kill.ts +0 -61
- package/deepccc-agent/src/progress/cards-helpers.ts +0 -76
- package/deepccc-agent/src/progress/reducer.ts +0 -113
- package/deepccc-agent/src/progress/terminal-renderer.ts +0 -294
- package/deepccc-agent/src/progress/view.ts +0 -77
- package/deepccc-agent/src/raw-stream-log.ts +0 -124
- package/deepccc-agent/src/session-search.ts +0 -370
- package/deepccc-agent/src/session-select.ts +0 -48
- package/deepccc-agent/src/sigint.ts +0 -50
- package/deepccc-agent/src/skills.ts +0 -205
- package/deepccc-agent/src/web-tools.ts +0 -313
- package/deepccc-agent/tsconfig.build.json +0 -13
- package/deepccc-agent/tsconfig.json +0 -13
- package/deepccc-agent/vitest.config.ts +0 -7
- package/src/__tests__/adapter-interface.test.ts +0 -152
- package/src/__tests__/agent-activity.test.ts +0 -86
- package/src/__tests__/agent-delegate-task-rpc.test.ts +0 -165
- package/src/__tests__/agent-image-rpc.test.ts +0 -34
- package/src/__tests__/agent-platform-routing.test.ts +0 -26
- package/src/__tests__/agent-reload-config-rpc.test.ts +0 -99
- package/src/__tests__/agent-rpc-body.test.ts +0 -42
- package/src/__tests__/builtin-chat-session.test.ts +0 -532
- package/src/__tests__/builtin-cli-json.test.ts +0 -39
- package/src/__tests__/builtin-config.test.ts +0 -26
- package/src/__tests__/builtin-context.test.ts +0 -319
- package/src/__tests__/builtin-file-tools.test.ts +0 -240
- package/src/__tests__/builtin-permissions.test.ts +0 -219
- package/src/__tests__/builtin-session-search.test.ts +0 -262
- package/src/__tests__/builtin-session-select.test.ts +0 -116
- package/src/__tests__/builtin-sigint.test.ts +0 -56
- package/src/__tests__/builtin-skills.test.ts +0 -284
- package/src/__tests__/builtin-web-tools.test.ts +0 -220
- package/src/__tests__/card-action-routing.test.ts +0 -18
- package/src/__tests__/card-plain-text.test.ts +0 -45
- package/src/__tests__/cardkit.test.ts +0 -60
- package/src/__tests__/cards.test.ts +0 -607
- package/src/__tests__/ccc-adapter.test.ts +0 -194
- package/src/__tests__/chatgpt-subscription-rpc.test.ts +0 -89
- package/src/__tests__/chatgpt-subscription.test.ts +0 -135
- package/src/__tests__/chrome-devtools-guard.test.ts +0 -165
- package/src/__tests__/claude-adapter.test.ts +0 -614
- package/src/__tests__/claude-raw-stream-log.test.ts +0 -96
- package/src/__tests__/claude-sdk-installer.test.ts +0 -285
- package/src/__tests__/codex-adapter.test.ts +0 -331
- package/src/__tests__/codex-raw-stream-log.test.ts +0 -170
- package/src/__tests__/codex-reset-actions.test.ts +0 -146
- package/src/__tests__/config-reload.test.ts +0 -284
- package/src/__tests__/config-sample.test.ts +0 -97
- package/src/__tests__/config-utils.test.ts +0 -40
- package/src/__tests__/config.test.ts +0 -395
- package/src/__tests__/crash-logging.test.ts +0 -360
- package/src/__tests__/cursor-adapter.test.ts +0 -890
- package/src/__tests__/cursor-session-meta-store.test.ts +0 -212
- package/src/__tests__/feishu-api.test.ts +0 -60
- package/src/__tests__/feishu-avatar.test.ts +0 -504
- package/src/__tests__/feishu-message-ingress.test.ts +0 -138
- package/src/__tests__/feishu-platform.test.ts +0 -75
- package/src/__tests__/fixtures/codex_simple_text.jsonl +0 -4
- package/src/__tests__/fixtures/codex_with_tool.jsonl +0 -6
- package/src/__tests__/fixtures/cursor_partial_only.jsonl +0 -5
- package/src/__tests__/fixtures/cursor_partial_with_final.jsonl +0 -13
- package/src/__tests__/fixtures/cursor_with_tool_call.jsonl +0 -12
- package/src/__tests__/format-message.test.ts +0 -316
- package/src/__tests__/git-command.test.ts +0 -288
- package/src/__tests__/im-skills.test.ts +0 -125
- package/src/__tests__/jsonl-stream.test.ts +0 -79
- package/src/__tests__/orchestrator.test.ts +0 -1268
- package/src/__tests__/package-files.test.ts +0 -24
- package/src/__tests__/platform-startup.test.ts +0 -19
- package/src/__tests__/privacy.test.ts +0 -198
- package/src/__tests__/proc-tree-kill.test.ts +0 -108
- package/src/__tests__/progress-reducer.test.ts +0 -121
- package/src/__tests__/raw-stream-log.test.ts +0 -106
- package/src/__tests__/response-stall.test.ts +0 -49
- package/src/__tests__/restart.test.ts +0 -232
- package/src/__tests__/session-ccc-config.test.ts +0 -66
- package/src/__tests__/session.test.ts +0 -3004
- package/src/__tests__/shared-prefix.test.ts +0 -36
- package/src/__tests__/sim-agent.test.ts +0 -174
- package/src/__tests__/sim-platform.test.ts +0 -93
- package/src/__tests__/sim-store.test.ts +0 -214
- package/src/__tests__/simplify.test.ts +0 -283
- package/src/__tests__/startup-lifecycle.test.ts +0 -231
- package/src/__tests__/stop-session.test.ts +0 -162
- package/src/__tests__/stream-state.test.ts +0 -164
- package/src/__tests__/terminal-error.test.ts +0 -54
- package/src/__tests__/terminal-renderer.test.ts +0 -247
- package/src/__tests__/update-command-guard.test.ts +0 -144
- package/src/__tests__/web-ui.test.ts +0 -438
- package/src/__tests__/wechat-platform.test.ts +0 -111
- package/src/adapters/adapter-interface.ts +0 -217
- package/src/adapters/ccc-adapter.ts +0 -150
- package/src/adapters/claude-adapter.ts +0 -673
- package/src/adapters/claude-session-meta-store.ts +0 -120
- package/src/adapters/codex-adapter.ts +0 -426
- package/src/adapters/codex-session-meta-store.ts +0 -131
- package/src/adapters/cursor-adapter.ts +0 -681
- package/src/adapters/cursor-session-meta-store.ts +0 -154
- package/src/adapters/jsonl-stream.ts +0 -157
- package/src/adapters/raw-stream-log.ts +0 -124
- package/src/adapters/resource-monitor.ts +0 -141
- package/src/agent-activity.ts +0 -175
- package/src/agent-delegate-task-rpc.ts +0 -153
- package/src/agent-delegate-task.ts +0 -91
- package/src/agent-file-rpc.ts +0 -172
- package/src/agent-image-rpc.ts +0 -168
- package/src/agent-platform-routing.ts +0 -28
- package/src/agent-reload-config-rpc.ts +0 -34
- package/src/agent-rpc-body.ts +0 -92
- package/src/agent-stop-stuck.ts +0 -129
- package/src/card-action-routing.ts +0 -14
- package/src/card-plain-text.ts +0 -108
- package/src/cardkit.ts +0 -179
- package/src/cards.ts +0 -684
- package/src/chatgpt-subscription-rpc.ts +0 -27
- package/src/chatgpt-subscription.ts +0 -299
- package/src/chrome-devtools-guard.ts +0 -318
- package/src/claude-sdk-installer.ts +0 -324
- package/src/codex-reset-actions.ts +0 -184
- package/src/config-utils.ts +0 -211
- package/src/config.ts +0 -1063
- package/src/cursor-usage.ts +0 -128
- package/src/exit-banner.ts +0 -33
- package/src/feishu-api.ts +0 -1616
- package/src/feishu-message-ingress.ts +0 -195
- package/src/feishu-platform.ts +0 -159
- package/src/format-message.ts +0 -293
- package/src/git-command.ts +0 -202
- package/src/im-skills.ts +0 -149
- package/src/index.ts +0 -1089
- package/src/litellm-proxy.ts +0 -374
- package/src/orchestrator.ts +0 -2543
- package/src/platform-adapter.ts +0 -70
- package/src/platform-startup.ts +0 -16
- package/src/privacy.ts +0 -118
- package/src/progress/reducer.ts +0 -113
- package/src/progress/terminal-renderer.ts +0 -294
- package/src/progress/view.ts +0 -77
- package/src/response-stall.ts +0 -28
- package/src/runtime-reload.ts +0 -34
- package/src/session-chat-binding.ts +0 -292
- package/src/session-name.ts +0 -8
- package/src/session.ts +0 -2659
- package/src/shared-prefix.ts +0 -29
- package/src/shared.ts +0 -552
- package/src/sim-agent.ts +0 -167
- package/src/sim-platform.ts +0 -177
- package/src/sim-store.ts +0 -317
- package/src/simplify.ts +0 -120
- package/src/startup-lifecycle.ts +0 -250
- package/src/stream-state.ts +0 -177
- package/src/terminal-error.ts +0 -129
- package/src/trace.ts +0 -51
- package/src/turn-cards.ts +0 -118
- package/src/update-command-guard.ts +0 -165
- package/src/wechat-platform.ts +0 -680
|
@@ -1,220 +0,0 @@
|
|
|
1
|
-
import { describe, expect, it } from "vitest";
|
|
2
|
-
|
|
3
|
-
import {
|
|
4
|
-
decodeDdgHref,
|
|
5
|
-
extractHtmlTitle,
|
|
6
|
-
htmlToPlainText,
|
|
7
|
-
parseDuckDuckGoHtml,
|
|
8
|
-
webFetchForTool,
|
|
9
|
-
webSearchForTool,
|
|
10
|
-
type FetchLike,
|
|
11
|
-
} from "../web-tools.js";
|
|
12
|
-
|
|
13
|
-
const DDG_HTML = `<!DOCTYPE html>
|
|
14
|
-
<html>
|
|
15
|
-
<head><title>Search results</title></head>
|
|
16
|
-
<body>
|
|
17
|
-
<div class="result results_links results_links_deep web-result">
|
|
18
|
-
<h2 class="result__title">
|
|
19
|
-
<a rel="nofollow" class="result__a" href="//duckduckgo.com/l/?uddg=https%3A%2F%2Fnodejs.org%2Fen%2Fdocs&rut=abc">Node.js <b>Docs</b></a>
|
|
20
|
-
</h2>
|
|
21
|
-
<a rel="nofollow" class="result__snippet" href="//duckduckgo.com/l/?uddg=...">Official documentation for Node.js & npm.</a>
|
|
22
|
-
</div>
|
|
23
|
-
<div class="result">
|
|
24
|
-
<a rel="nofollow" class="result__a" href="https://example.com/page">Example "quoted" page</a>
|
|
25
|
-
<a rel="nofollow" class="result__snippet" href="https://example.com/page">A plain snippet without highlight.</a>
|
|
26
|
-
</div>
|
|
27
|
-
</body>
|
|
28
|
-
</html>`;
|
|
29
|
-
|
|
30
|
-
const WEB_FETCH_HTML = `<!DOCTYPE html>
|
|
31
|
-
<html><head><title>Fetch & Me</title></head>
|
|
32
|
-
<body>
|
|
33
|
-
<style>.x { color: red }</style>
|
|
34
|
-
<script>alert("x")</script>
|
|
35
|
-
<h1>Hello World</h1>
|
|
36
|
-
<p>First paragraph with & entity.</p>
|
|
37
|
-
<p>Second paragraph<br>with a break.</p>
|
|
38
|
-
<footer>bye</footer>
|
|
39
|
-
</body></html>`;
|
|
40
|
-
|
|
41
|
-
describe("parseDuckDuckGoHtml", () => {
|
|
42
|
-
it("extracts title, decoded url, and snippet per result", () => {
|
|
43
|
-
const results = parseDuckDuckGoHtml(DDG_HTML);
|
|
44
|
-
expect(results).toHaveLength(2);
|
|
45
|
-
expect(results[0]).toEqual({
|
|
46
|
-
title: "Node.js Docs",
|
|
47
|
-
url: "https://nodejs.org/en/docs",
|
|
48
|
-
snippet: "Official documentation for Node.js & npm.",
|
|
49
|
-
});
|
|
50
|
-
expect(results[1]).toEqual({
|
|
51
|
-
title: 'Example "quoted" page',
|
|
52
|
-
url: "https://example.com/page",
|
|
53
|
-
snippet: "A plain snippet without highlight.",
|
|
54
|
-
});
|
|
55
|
-
});
|
|
56
|
-
|
|
57
|
-
it("returns empty array for pages without results", () => {
|
|
58
|
-
expect(parseDuckDuckGoHtml("<html><body>no results here</body></html>")).toEqual([]);
|
|
59
|
-
});
|
|
60
|
-
});
|
|
61
|
-
|
|
62
|
-
describe("decodeDdgHref", () => {
|
|
63
|
-
it("decodes uddg redirect params and restores protocol", () => {
|
|
64
|
-
expect(
|
|
65
|
-
decodeDdgHref("//duckduckgo.com/l/?uddg=https%3A%2F%2Fnodejs.org%2Fen%2Fdocs&rut=abc"),
|
|
66
|
-
).toBe("https://nodejs.org/en/docs");
|
|
67
|
-
});
|
|
68
|
-
|
|
69
|
-
it("passes through plain urls", () => {
|
|
70
|
-
expect(decodeDdgHref("https://example.com/a?b=1")).toBe("https://example.com/a?b=1");
|
|
71
|
-
});
|
|
72
|
-
|
|
73
|
-
it("returns input untouched when unparseable", () => {
|
|
74
|
-
expect(decodeDdgHref("not a url")).toBe("not a url");
|
|
75
|
-
});
|
|
76
|
-
});
|
|
77
|
-
|
|
78
|
-
describe("htmlToPlainText", () => {
|
|
79
|
-
it("strips scripts/styles, keeps block boundaries, decodes entities, compresses whitespace", () => {
|
|
80
|
-
const text = htmlToPlainText(WEB_FETCH_HTML);
|
|
81
|
-
expect(text).not.toContain("alert");
|
|
82
|
-
expect(text).not.toContain(".x {");
|
|
83
|
-
expect(text).toContain("Hello World");
|
|
84
|
-
expect(text).toContain("First paragraph with & entity.");
|
|
85
|
-
expect(text).toContain("Second paragraph\nwith a break.");
|
|
86
|
-
expect(text).toContain("bye");
|
|
87
|
-
// 段落间允许单个空行,但不得出现连续空行
|
|
88
|
-
expect(text).not.toContain("\n\n\n");
|
|
89
|
-
});
|
|
90
|
-
});
|
|
91
|
-
|
|
92
|
-
describe("extractHtmlTitle", () => {
|
|
93
|
-
it("extracts and decodes the title", () => {
|
|
94
|
-
expect(extractHtmlTitle(WEB_FETCH_HTML)).toBe("Fetch & Me");
|
|
95
|
-
});
|
|
96
|
-
|
|
97
|
-
it("returns empty string when no title", () => {
|
|
98
|
-
expect(extractHtmlTitle("<html><body>x</body></html>")).toBe("");
|
|
99
|
-
});
|
|
100
|
-
});
|
|
101
|
-
|
|
102
|
-
describe("webSearchForTool", () => {
|
|
103
|
-
function mockFetch(html: string, status = 200): FetchLike {
|
|
104
|
-
return async () =>
|
|
105
|
-
new Response(html, {
|
|
106
|
-
status,
|
|
107
|
-
headers: { "content-type": "text/html; charset=utf-8" },
|
|
108
|
-
});
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
it("returns parsed results from the search page", async () => {
|
|
112
|
-
const output = await webSearchForTool(
|
|
113
|
-
{ query: "nodejs docs" },
|
|
114
|
-
{ fetchImpl: mockFetch(DDG_HTML) },
|
|
115
|
-
);
|
|
116
|
-
expect(output.query).toBe("nodejs docs");
|
|
117
|
-
expect(output.results).toHaveLength(2);
|
|
118
|
-
expect(output.results[0].url).toBe("https://nodejs.org/en/docs");
|
|
119
|
-
expect(output.results[0].snippet).toContain("Node.js");
|
|
120
|
-
expect(typeof output.durationMs).toBe("number");
|
|
121
|
-
});
|
|
122
|
-
|
|
123
|
-
it("respects maxResults and caps at 10", async () => {
|
|
124
|
-
const html = Array.from({ length: 12 }, (_, i) => {
|
|
125
|
-
const title = `<a rel="nofollow" class="result__a" href="https://e.com/${i}">R${i}</a>`;
|
|
126
|
-
const snippet = `<a rel="nofollow" class="result__snippet" href="https://e.com/${i}">s${i}</a>`;
|
|
127
|
-
return `<div>${title}${snippet}</div>`;
|
|
128
|
-
}).join("");
|
|
129
|
-
const output = await webSearchForTool({ query: "many" }, { fetchImpl: mockFetch(html) });
|
|
130
|
-
expect(output.results).toHaveLength(5);
|
|
131
|
-
expect(output.truncated).toBe(true);
|
|
132
|
-
|
|
133
|
-
const output2 = await webSearchForTool({ query: "many", maxResults: 20 }, { fetchImpl: mockFetch(html) });
|
|
134
|
-
expect(output2.results).toHaveLength(10);
|
|
135
|
-
});
|
|
136
|
-
|
|
137
|
-
it("returns empty results (not an error) when the page has no matches", async () => {
|
|
138
|
-
const output = await webSearchForTool(
|
|
139
|
-
{ query: "zzz-nothing" },
|
|
140
|
-
{ fetchImpl: mockFetch("<html><body>no results</body></html>") },
|
|
141
|
-
);
|
|
142
|
-
expect(output.results).toEqual([]);
|
|
143
|
-
expect(output.truncated).toBe(false);
|
|
144
|
-
});
|
|
145
|
-
|
|
146
|
-
it("throws on empty query", async () => {
|
|
147
|
-
await expect(webSearchForTool({ query: " " }, { fetchImpl: mockFetch("") })).rejects.toThrow(
|
|
148
|
-
"query is required",
|
|
149
|
-
);
|
|
150
|
-
});
|
|
151
|
-
|
|
152
|
-
it("throws on non-2xx response", async () => {
|
|
153
|
-
await expect(
|
|
154
|
-
webSearchForTool({ query: "x" }, { fetchImpl: mockFetch("blocked", 429) }),
|
|
155
|
-
).rejects.toThrow("HTTP 429");
|
|
156
|
-
});
|
|
157
|
-
});
|
|
158
|
-
|
|
159
|
-
describe("webFetchForTool", () => {
|
|
160
|
-
function mockFetch(html: string, status = 200, contentType = "text/html; charset=utf-8"): FetchLike {
|
|
161
|
-
return async () =>
|
|
162
|
-
new Response(html, {
|
|
163
|
-
status,
|
|
164
|
-
headers: { "content-type": contentType },
|
|
165
|
-
});
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
it("fetches and converts html to plain text with title", async () => {
|
|
169
|
-
const output = await webFetchForTool(
|
|
170
|
-
{ url: "https://example.com/page" },
|
|
171
|
-
{ fetchImpl: mockFetch(WEB_FETCH_HTML) },
|
|
172
|
-
);
|
|
173
|
-
expect(output.title).toBe("Fetch & Me");
|
|
174
|
-
expect(output.text).toContain("Hello World");
|
|
175
|
-
expect(output.text).toContain("Second paragraph\nwith a break.");
|
|
176
|
-
expect(output.text).not.toContain("alert");
|
|
177
|
-
expect(output.contentType).toContain("text/html");
|
|
178
|
-
expect(output.chars).toBe(output.text.length);
|
|
179
|
-
expect(output.truncated).toBe(false);
|
|
180
|
-
});
|
|
181
|
-
|
|
182
|
-
it("truncates text beyond maxChars", async () => {
|
|
183
|
-
const output = await webFetchForTool(
|
|
184
|
-
{ url: "https://example.com/long", maxChars: 10 },
|
|
185
|
-
{ fetchImpl: mockFetch("<p>hello world and more</p>") },
|
|
186
|
-
);
|
|
187
|
-
expect(output.text).toBe("hello worl");
|
|
188
|
-
expect(output.truncated).toBe(true);
|
|
189
|
-
expect(output.chars).toBe(10);
|
|
190
|
-
});
|
|
191
|
-
|
|
192
|
-
it("truncates oversized response bodies", async () => {
|
|
193
|
-
const big = `<!DOCTYPE html><html><body><p>${"a".repeat(600 * 1024)}</p></body></html>`;
|
|
194
|
-
const output = await webFetchForTool(
|
|
195
|
-
{ url: "https://example.com/big" },
|
|
196
|
-
{ fetchImpl: mockFetch(big) },
|
|
197
|
-
);
|
|
198
|
-
expect(output.truncated).toBe(true);
|
|
199
|
-
expect(output.text.length).toBeLessThan(600 * 1024);
|
|
200
|
-
});
|
|
201
|
-
|
|
202
|
-
it("rejects non-http(s) protocols", async () => {
|
|
203
|
-
await expect(
|
|
204
|
-
webFetchForTool({ url: "file:///etc/passwd" }, { fetchImpl: mockFetch("") }),
|
|
205
|
-
).rejects.toThrow("unsupported protocol");
|
|
206
|
-
});
|
|
207
|
-
|
|
208
|
-
it("rejects invalid urls", async () => {
|
|
209
|
-
await expect(
|
|
210
|
-
webFetchForTool({ url: "not a url" }, { fetchImpl: mockFetch("") }),
|
|
211
|
-
).rejects.toThrow("invalid URL");
|
|
212
|
-
});
|
|
213
|
-
|
|
214
|
-
it("throws on missing url and non-2xx", async () => {
|
|
215
|
-
await expect(webFetchForTool({ url: " " })).rejects.toThrow("url is required");
|
|
216
|
-
await expect(
|
|
217
|
-
webFetchForTool({ url: "https://example.com/404" }, { fetchImpl: mockFetch("nf", 404) }),
|
|
218
|
-
).rejects.toThrow("HTTP 404");
|
|
219
|
-
});
|
|
220
|
-
});
|