chatccc 0.2.243 → 0.2.245
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 +6 -6
- package/bin/cccagent.mjs +17 -17
- package/deepccc-agent/README.md +14 -8
- package/deepccc-agent/bin/deepccc.mjs +26 -26
- package/deepccc-agent/os-prompts/darwin.md +8 -0
- package/deepccc-agent/os-prompts/linux.md +8 -0
- package/deepccc-agent/os-prompts/win32.md +9 -0
- package/deepccc-agent/package-lock.json +2 -2
- package/deepccc-agent/package.json +63 -62
- package/deepccc-agent/src/__tests__/chat-session.test.ts +682 -578
- package/deepccc-agent/src/__tests__/cli-json.test.ts +49 -49
- package/deepccc-agent/src/__tests__/config.test.ts +26 -26
- package/deepccc-agent/src/__tests__/context.test.ts +319 -319
- package/deepccc-agent/src/__tests__/file-tools.test.ts +240 -240
- package/deepccc-agent/src/__tests__/permissions.test.ts +195 -195
- package/deepccc-agent/src/__tests__/privacy.test.ts +8 -5
- package/deepccc-agent/src/__tests__/progress-reducer.test.ts +121 -121
- package/deepccc-agent/src/__tests__/session-search.test.ts +262 -262
- package/deepccc-agent/src/__tests__/session-select.test.ts +116 -116
- package/deepccc-agent/src/__tests__/sigint.test.ts +56 -56
- package/deepccc-agent/src/__tests__/skills.test.ts +284 -284
- package/deepccc-agent/src/__tests__/terminal-renderer.test.ts +247 -247
- package/deepccc-agent/src/__tests__/web-tools.test.ts +220 -220
- package/deepccc-agent/src/cli.ts +7 -6
- package/deepccc-agent/src/config.ts +88 -84
- package/deepccc-agent/src/context.ts +465 -465
- package/deepccc-agent/src/file-log.ts +38 -38
- package/deepccc-agent/src/index.ts +103 -36
- package/deepccc-agent/src/proc-tree-kill.ts +61 -61
- package/deepccc-agent/src/progress/cards-helpers.ts +76 -76
- package/deepccc-agent/src/progress/reducer.ts +113 -113
- package/deepccc-agent/src/progress/terminal-renderer.ts +294 -294
- package/deepccc-agent/src/progress/view.ts +77 -77
- package/deepccc-agent/src/raw-stream-log.ts +124 -124
- package/deepccc-agent/src/session-search.ts +370 -370
- package/deepccc-agent/src/session-select.ts +48 -48
- package/deepccc-agent/src/sigint.ts +50 -50
- package/deepccc-agent/src/skills.ts +205 -205
- package/deepccc-agent/src/web-tools.ts +313 -313
- package/deepccc-agent/tsconfig.build.json +13 -13
- package/deepccc-agent/tsconfig.json +13 -13
- package/deepccc-agent/vitest.config.ts +7 -7
- package/package.json +1 -1
- package/src/__tests__/builtin-chat-session.test.ts +522 -522
- package/src/__tests__/builtin-config.test.ts +26 -26
- package/src/__tests__/builtin-context.test.ts +319 -319
- package/src/__tests__/builtin-file-tools.test.ts +240 -240
- package/src/__tests__/builtin-permissions.test.ts +211 -211
- package/src/__tests__/builtin-session-search.test.ts +262 -262
- package/src/__tests__/builtin-session-select.test.ts +116 -116
- package/src/__tests__/builtin-sigint.test.ts +56 -56
- package/src/__tests__/builtin-skills.test.ts +284 -284
- package/src/__tests__/builtin-web-tools.test.ts +220 -220
- package/src/__tests__/ccc-adapter.test.ts +15 -0
- package/src/__tests__/config.test.ts +17 -17
- package/src/__tests__/progress-reducer.test.ts +121 -121
- package/src/__tests__/session-ccc-config.test.ts +45 -45
- package/src/__tests__/session.test.ts +369 -306
- package/src/adapters/adapter-interface.ts +8 -2
- package/src/adapters/ccc-adapter.ts +149 -145
- package/src/config-utils.ts +13 -13
- package/src/config.ts +13 -13
- package/src/progress/reducer.ts +113 -113
- package/src/session-chat-binding.ts +83 -83
- package/src/session.ts +323 -320
|
@@ -1,220 +1,220 @@
|
|
|
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 "../../deepccc-agent/src/web-tools.ts";
|
|
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
|
-
});
|
|
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 "../../deepccc-agent/src/web-tools.ts";
|
|
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
|
+
});
|
|
@@ -34,6 +34,21 @@ afterEach(() => {
|
|
|
34
34
|
});
|
|
35
35
|
|
|
36
36
|
describe("createCccAdapter", () => {
|
|
37
|
+
it("disables response-stall detection when DeepCCC streaming is disabled", async () => {
|
|
38
|
+
const { config: deepCccConfig } = await import("../../deepccc-agent/src/config.ts");
|
|
39
|
+
const previousStreaming = deepCccConfig.streaming;
|
|
40
|
+
deepCccConfig.streaming = false;
|
|
41
|
+
|
|
42
|
+
try {
|
|
43
|
+
const { createCccAdapter } = await import("../adapters/ccc-adapter.ts");
|
|
44
|
+
const adapter = createCccAdapter({ apiKey: "sk-test" });
|
|
45
|
+
|
|
46
|
+
expect(adapter.responseStallDetectionEnabled).toBe(false);
|
|
47
|
+
} finally {
|
|
48
|
+
deepCccConfig.streaming = previousStreaming;
|
|
49
|
+
}
|
|
50
|
+
});
|
|
51
|
+
|
|
37
52
|
it("creates a persisted ccc session and exposes model/cwd metadata", async () => {
|
|
38
53
|
const { createCccAdapter } = await import("../adapters/ccc-adapter.ts");
|
|
39
54
|
const contextDir = await mkdtemp(join(tmpdir(), "chatccc-ccc-adapter-meta-"));
|
|
@@ -15,23 +15,23 @@ import {
|
|
|
15
15
|
autoDetectCursorPath,
|
|
16
16
|
normalizeOptionalConfigField,
|
|
17
17
|
parseGitTimeoutSeconds,
|
|
18
|
-
readToolCliPath,
|
|
19
|
-
resolveCccEnabled,
|
|
20
|
-
} from "../config-utils.ts";
|
|
21
|
-
|
|
22
|
-
describe("resolveCccEnabled", () => {
|
|
23
|
-
it("never enables CCC Agent without a ChatCCC API key", () => {
|
|
24
|
-
expect(resolveCccEnabled(true, "")).toBe(false);
|
|
25
|
-
expect(resolveCccEnabled(true, " ")).toBe(false);
|
|
26
|
-
expect(resolveCccEnabled(undefined, undefined)).toBe(false);
|
|
27
|
-
});
|
|
28
|
-
|
|
29
|
-
it("respects the explicit enabled flag when a ChatCCC API key exists", () => {
|
|
30
|
-
expect(resolveCccEnabled(undefined, "sk-chatccc")).toBe(true);
|
|
31
|
-
expect(resolveCccEnabled(true, "sk-chatccc")).toBe(true);
|
|
32
|
-
expect(resolveCccEnabled(false, "sk-chatccc")).toBe(false);
|
|
33
|
-
});
|
|
34
|
-
});
|
|
18
|
+
readToolCliPath,
|
|
19
|
+
resolveCccEnabled,
|
|
20
|
+
} from "../config-utils.ts";
|
|
21
|
+
|
|
22
|
+
describe("resolveCccEnabled", () => {
|
|
23
|
+
it("never enables CCC Agent without a ChatCCC API key", () => {
|
|
24
|
+
expect(resolveCccEnabled(true, "")).toBe(false);
|
|
25
|
+
expect(resolveCccEnabled(true, " ")).toBe(false);
|
|
26
|
+
expect(resolveCccEnabled(undefined, undefined)).toBe(false);
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
it("respects the explicit enabled flag when a ChatCCC API key exists", () => {
|
|
30
|
+
expect(resolveCccEnabled(undefined, "sk-chatccc")).toBe(true);
|
|
31
|
+
expect(resolveCccEnabled(true, "sk-chatccc")).toBe(true);
|
|
32
|
+
expect(resolveCccEnabled(false, "sk-chatccc")).toBe(false);
|
|
33
|
+
});
|
|
34
|
+
});
|
|
35
35
|
|
|
36
36
|
describe("parseGitTimeoutSeconds", () => {
|
|
37
37
|
it("returns default when raw is undefined", () => {
|