@copilotkitnext/react 0.0.3 → 0.0.4
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/package.json +3 -3
- package/.turbo/turbo-build$colon$css.log +0 -9
- package/.turbo/turbo-build.log +0 -30
- package/.turbo/turbo-check-types.log +0 -7
- package/.turbo/turbo-lint.log +0 -78
- package/.turbo/turbo-test.log +0 -79
- package/postcss.config.js +0 -7
- package/src/__tests__/setup.ts +0 -2
- package/src/components/chat/CopilotChat.tsx +0 -90
- package/src/components/chat/CopilotChatAssistantMessage.tsx +0 -478
- package/src/components/chat/CopilotChatAudioRecorder.tsx +0 -157
- package/src/components/chat/CopilotChatInput.tsx +0 -596
- package/src/components/chat/CopilotChatMessageView.tsx +0 -85
- package/src/components/chat/CopilotChatToolCallsView.tsx +0 -43
- package/src/components/chat/CopilotChatUserMessage.tsx +0 -337
- package/src/components/chat/CopilotChatView.tsx +0 -385
- package/src/components/chat/__tests__/CopilotChatAssistantMessage.test.tsx +0 -684
- package/src/components/chat/__tests__/CopilotChatInput.test.tsx +0 -531
- package/src/components/chat/__tests__/setup.ts +0 -1
- package/src/components/chat/index.ts +0 -35
- package/src/components/index.ts +0 -4
- package/src/components/ui/button.tsx +0 -123
- package/src/components/ui/dropdown-menu.tsx +0 -257
- package/src/components/ui/tooltip.tsx +0 -59
- package/src/hooks/index.ts +0 -6
- package/src/hooks/use-agent-context.tsx +0 -17
- package/src/hooks/use-agent.tsx +0 -48
- package/src/hooks/use-frontend-tool.tsx +0 -46
- package/src/hooks/use-human-in-the-loop.tsx +0 -76
- package/src/hooks/use-render-tool-call.tsx +0 -81
- package/src/index.ts +0 -4
- package/src/lib/__tests__/completePartialMarkdown.test.ts +0 -495
- package/src/lib/__tests__/renderSlot.test.tsx +0 -610
- package/src/lib/slots.tsx +0 -55
- package/src/lib/utils.ts +0 -6
- package/src/providers/CopilotChatConfigurationProvider.tsx +0 -81
- package/src/providers/CopilotKitProvider.tsx +0 -269
- package/src/providers/__tests__/CopilotKitProvider.test.tsx +0 -487
- package/src/providers/__tests__/CopilotKitProvider.wildcard.test.tsx +0 -261
- package/src/providers/index.ts +0 -14
- package/src/styles/globals.css +0 -302
- package/src/types/frontend-tool.ts +0 -8
- package/src/types/human-in-the-loop.ts +0 -33
- package/src/types/index.ts +0 -3
- package/src/types/react-tool-call-render.ts +0 -29
- package/tailwind.config.js +0 -9
- package/tsconfig.json +0 -23
- package/tsup.config.ts +0 -19
|
@@ -1,495 +0,0 @@
|
|
|
1
|
-
import { completePartialMarkdown } from "@copilotkitnext/core";
|
|
2
|
-
|
|
3
|
-
describe("completePartialMarkdown", () => {
|
|
4
|
-
describe("Common streaming cutoff scenarios", () => {
|
|
5
|
-
it("auto-closes bold text cut off mid-word", () => {
|
|
6
|
-
const input = "The **important";
|
|
7
|
-
const result = completePartialMarkdown(input);
|
|
8
|
-
expect(result).toBe("The **important**");
|
|
9
|
-
});
|
|
10
|
-
|
|
11
|
-
it("auto-closes bold text cut off mid-sentence", () => {
|
|
12
|
-
const input = "This is **really important information";
|
|
13
|
-
const result = completePartialMarkdown(input);
|
|
14
|
-
expect(result).toBe("This is **really important information**");
|
|
15
|
-
});
|
|
16
|
-
|
|
17
|
-
it("auto-closes italic text cut off mid-word", () => {
|
|
18
|
-
const input = "This is *emphasis";
|
|
19
|
-
const result = completePartialMarkdown(input);
|
|
20
|
-
expect(result).toBe("This is *emphasis*");
|
|
21
|
-
});
|
|
22
|
-
|
|
23
|
-
it("auto-closes italic with underscore cut off", () => {
|
|
24
|
-
const input = "This text is _important";
|
|
25
|
-
const result = completePartialMarkdown(input);
|
|
26
|
-
expect(result).toBe("This text is _important_");
|
|
27
|
-
});
|
|
28
|
-
|
|
29
|
-
it("auto-closes inline code cut off mid-command", () => {
|
|
30
|
-
const input = "Run `npm install";
|
|
31
|
-
const result = completePartialMarkdown(input);
|
|
32
|
-
expect(result).toBe("Run `npm install`");
|
|
33
|
-
});
|
|
34
|
-
|
|
35
|
-
it("auto-closes inline code with function call", () => {
|
|
36
|
-
const input = "Use `console.log(";
|
|
37
|
-
const result = completePartialMarkdown(input);
|
|
38
|
-
expect(result).toBe("Use `console.log(`");
|
|
39
|
-
});
|
|
40
|
-
|
|
41
|
-
it("auto-closes code block cut off mid-code", () => {
|
|
42
|
-
const input = "```javascript\nconsole.log('hello world');";
|
|
43
|
-
const result = completePartialMarkdown(input);
|
|
44
|
-
expect(result).toBe("```javascript\nconsole.log('hello world');\n```");
|
|
45
|
-
});
|
|
46
|
-
|
|
47
|
-
it("auto-closes code block with just language", () => {
|
|
48
|
-
const input = "```python";
|
|
49
|
-
const result = completePartialMarkdown(input);
|
|
50
|
-
expect(result).toBe("```python\n```");
|
|
51
|
-
});
|
|
52
|
-
|
|
53
|
-
it("auto-closes link text cutoff", () => {
|
|
54
|
-
const input = "Click [here for more info";
|
|
55
|
-
const result = completePartialMarkdown(input);
|
|
56
|
-
expect(result).toBe("Click [here for more info]");
|
|
57
|
-
});
|
|
58
|
-
|
|
59
|
-
it("auto-closes link URL cutoff (very common)", () => {
|
|
60
|
-
const input = "Visit [our website](https://example.com";
|
|
61
|
-
const result = completePartialMarkdown(input);
|
|
62
|
-
expect(result).toBe("Visit [our website](https://example.com)");
|
|
63
|
-
});
|
|
64
|
-
|
|
65
|
-
it("auto-closes link with partial path", () => {
|
|
66
|
-
const input = "See [documentation](/docs/getting-started";
|
|
67
|
-
const result = completePartialMarkdown(input);
|
|
68
|
-
expect(result).toBe("See [documentation](/docs/getting-started)");
|
|
69
|
-
});
|
|
70
|
-
});
|
|
71
|
-
|
|
72
|
-
describe("Multiple elements with last one incomplete", () => {
|
|
73
|
-
it("completes last bold when previous elements are complete", () => {
|
|
74
|
-
const input = "First **complete** and then **incomplete";
|
|
75
|
-
const result = completePartialMarkdown(input);
|
|
76
|
-
expect(result).toBe("First **complete** and then **incomplete**");
|
|
77
|
-
});
|
|
78
|
-
|
|
79
|
-
it("completes last italic when mixed with complete elements", () => {
|
|
80
|
-
const input = "Use `npm start` and then *check the logs";
|
|
81
|
-
const result = completePartialMarkdown(input);
|
|
82
|
-
expect(result).toBe("Use `npm start` and then *check the logs*");
|
|
83
|
-
});
|
|
84
|
-
|
|
85
|
-
it("completes last code when mixed with complete elements", () => {
|
|
86
|
-
const input = "Run `npm install` then `npm run";
|
|
87
|
-
const result = completePartialMarkdown(input);
|
|
88
|
-
expect(result).toBe("Run `npm install` then `npm run`");
|
|
89
|
-
});
|
|
90
|
-
|
|
91
|
-
it("handles bold and code mixed - bold incomplete", () => {
|
|
92
|
-
const input = "Install with `npm install` and **remember to";
|
|
93
|
-
const result = completePartialMarkdown(input);
|
|
94
|
-
expect(result).toBe("Install with `npm install` and **remember to**");
|
|
95
|
-
});
|
|
96
|
-
|
|
97
|
-
it("handles bold and code mixed - code incomplete", () => {
|
|
98
|
-
const input = "This is **important** when using `some-command";
|
|
99
|
-
const result = completePartialMarkdown(input);
|
|
100
|
-
expect(result).toBe("This is **important** when using `some-command`");
|
|
101
|
-
});
|
|
102
|
-
});
|
|
103
|
-
|
|
104
|
-
describe("Nested elements (realistic streaming scenarios)", () => {
|
|
105
|
-
it("auto-closes code inside bold (common in documentation)", () => {
|
|
106
|
-
const input = "The **important `config";
|
|
107
|
-
const result = completePartialMarkdown(input);
|
|
108
|
-
expect(result).toBe("The **important `config`**");
|
|
109
|
-
});
|
|
110
|
-
|
|
111
|
-
it("auto-closes bold inside link text", () => {
|
|
112
|
-
const input = "Check [**important section";
|
|
113
|
-
const result = completePartialMarkdown(input);
|
|
114
|
-
expect(result).toBe("Check [**important section**]");
|
|
115
|
-
});
|
|
116
|
-
|
|
117
|
-
it("auto-closes link inside bold text", () => {
|
|
118
|
-
const input = "This is **see [the docs";
|
|
119
|
-
const result = completePartialMarkdown(input);
|
|
120
|
-
expect(result).toBe("This is **see [the docs]**");
|
|
121
|
-
});
|
|
122
|
-
});
|
|
123
|
-
|
|
124
|
-
describe("Edge cases", () => {
|
|
125
|
-
it("handles empty input (start of stream)", () => {
|
|
126
|
-
const input = "";
|
|
127
|
-
const result = completePartialMarkdown(input);
|
|
128
|
-
expect(result).toBe("");
|
|
129
|
-
});
|
|
130
|
-
|
|
131
|
-
it("handles whitespace-only input", () => {
|
|
132
|
-
const input = " \n ";
|
|
133
|
-
const result = completePartialMarkdown(input);
|
|
134
|
-
expect(result).toBe(" \n ");
|
|
135
|
-
});
|
|
136
|
-
|
|
137
|
-
it("handles plain text with no markdown", () => {
|
|
138
|
-
const input = "Just regular text without any formatting";
|
|
139
|
-
const result = completePartialMarkdown(input);
|
|
140
|
-
expect(result).toBe("Just regular text without any formatting");
|
|
141
|
-
});
|
|
142
|
-
|
|
143
|
-
it("handles already complete markdown (no changes needed)", () => {
|
|
144
|
-
const input = "This **bold** and *italic* and `code` are complete";
|
|
145
|
-
const result = completePartialMarkdown(input);
|
|
146
|
-
expect(result).toBe("This **bold** and *italic* and `code` are complete");
|
|
147
|
-
});
|
|
148
|
-
|
|
149
|
-
it("handles single markdown character (edge case)", () => {
|
|
150
|
-
const input = "Text with *";
|
|
151
|
-
const result = completePartialMarkdown(input);
|
|
152
|
-
expect(result).toBe("Text with **");
|
|
153
|
-
});
|
|
154
|
-
|
|
155
|
-
it("handles single backtick (edge case)", () => {
|
|
156
|
-
const input = "Command: `";
|
|
157
|
-
const result = completePartialMarkdown(input);
|
|
158
|
-
expect(result).toBe("Command: ``");
|
|
159
|
-
});
|
|
160
|
-
|
|
161
|
-
it("handles unmatched parentheses (realistic in code)", () => {
|
|
162
|
-
const input = "Call function(param1, param2";
|
|
163
|
-
const result = completePartialMarkdown(input);
|
|
164
|
-
expect(result).toBe("Call function(param1, param2)");
|
|
165
|
-
});
|
|
166
|
-
|
|
167
|
-
it("handles unmatched brackets (realistic in arrays)", () => {
|
|
168
|
-
const input = "Items: [item1, item2";
|
|
169
|
-
const result = completePartialMarkdown(input);
|
|
170
|
-
expect(result).toBe("Items: [item1, item2]");
|
|
171
|
-
});
|
|
172
|
-
|
|
173
|
-
it("handles multiple unmatched parentheses", () => {
|
|
174
|
-
const input = "Nested calls: func1(func2(param";
|
|
175
|
-
const result = completePartialMarkdown(input);
|
|
176
|
-
expect(result).toBe("Nested calls: func1(func2(param))");
|
|
177
|
-
});
|
|
178
|
-
});
|
|
179
|
-
|
|
180
|
-
describe("Code block variations (common in streaming)", () => {
|
|
181
|
-
it("auto-closes code block with tildes", () => {
|
|
182
|
-
const input = "~~~bash\nnpm install";
|
|
183
|
-
const result = completePartialMarkdown(input);
|
|
184
|
-
expect(result).toBe("~~~bash\nnpm install\n~~~");
|
|
185
|
-
});
|
|
186
|
-
|
|
187
|
-
it("handles indented code block", () => {
|
|
188
|
-
const input = " ```sql\n SELECT * FROM users";
|
|
189
|
-
const result = completePartialMarkdown(input);
|
|
190
|
-
expect(result).toBe(" ```sql\n SELECT * FROM users\n ```");
|
|
191
|
-
});
|
|
192
|
-
|
|
193
|
-
it("handles longer code fence (4+ backticks)", () => {
|
|
194
|
-
const input = "````markdown\n```\ncode inside\n```";
|
|
195
|
-
const result = completePartialMarkdown(input);
|
|
196
|
-
expect(result).toBe("````markdown\n```\ncode inside\n```\n````");
|
|
197
|
-
});
|
|
198
|
-
});
|
|
199
|
-
|
|
200
|
-
describe("Emphasis variations that occur in streaming", () => {
|
|
201
|
-
it("auto-closes double underscore bold", () => {
|
|
202
|
-
const input = "This is __very important";
|
|
203
|
-
const result = completePartialMarkdown(input);
|
|
204
|
-
expect(result).toBe("This is __very important__");
|
|
205
|
-
});
|
|
206
|
-
|
|
207
|
-
it("auto-closes strikethrough (if supported)", () => {
|
|
208
|
-
const input = "This is ~~old information";
|
|
209
|
-
const result = completePartialMarkdown(input);
|
|
210
|
-
expect(result).toBe("This is ~~old information~~");
|
|
211
|
-
});
|
|
212
|
-
});
|
|
213
|
-
|
|
214
|
-
// NEW STRESS TESTS - Let's try to break this!
|
|
215
|
-
describe("Deep nesting stress tests", () => {
|
|
216
|
-
it("handles triple nested elements (realistic docs scenario)", () => {
|
|
217
|
-
const input = "See **bold with _italic and `code";
|
|
218
|
-
const result = completePartialMarkdown(input);
|
|
219
|
-
expect(result).toBe("See **bold with _italic and `code`_**");
|
|
220
|
-
});
|
|
221
|
-
|
|
222
|
-
it("handles quadruple nesting (extreme but possible)", () => {
|
|
223
|
-
const input = "Check [**bold _italic `code";
|
|
224
|
-
const result = completePartialMarkdown(input);
|
|
225
|
-
expect(result).toBe("Check [**bold _italic `code`_**]");
|
|
226
|
-
});
|
|
227
|
-
|
|
228
|
-
it("handles all emphasis types together", () => {
|
|
229
|
-
const input = "**Bold __underscore ~~strike _italic `code";
|
|
230
|
-
const result = completePartialMarkdown(input);
|
|
231
|
-
expect(result).toBe("**Bold __underscore ~~strike _italic `code`_~~__**");
|
|
232
|
-
});
|
|
233
|
-
|
|
234
|
-
it("handles deeply nested parentheses in code context", () => {
|
|
235
|
-
const input = "Use `func(param1, func2(param3, func4(";
|
|
236
|
-
const result = completePartialMarkdown(input);
|
|
237
|
-
expect(result).toBe("Use `func(param1, func2(param3, func4(`");
|
|
238
|
-
});
|
|
239
|
-
});
|
|
240
|
-
|
|
241
|
-
describe("URL and link stress tests", () => {
|
|
242
|
-
it("handles complex URLs with query parameters", () => {
|
|
243
|
-
const input =
|
|
244
|
-
"Visit [API docs](https://api.example.com/v1/docs?filter=all&sort=";
|
|
245
|
-
const result = completePartialMarkdown(input);
|
|
246
|
-
expect(result).toBe(
|
|
247
|
-
"Visit [API docs](https://api.example.com/v1/docs?filter=all&sort=)"
|
|
248
|
-
);
|
|
249
|
-
});
|
|
250
|
-
|
|
251
|
-
it("handles URLs with fragments and encoded characters", () => {
|
|
252
|
-
const input =
|
|
253
|
-
"See [section](https://example.com/page#section%20with%20spaces";
|
|
254
|
-
const result = completePartialMarkdown(input);
|
|
255
|
-
expect(result).toBe(
|
|
256
|
-
"See [section](https://example.com/page#section%20with%20spaces)"
|
|
257
|
-
);
|
|
258
|
-
});
|
|
259
|
-
|
|
260
|
-
it("handles image syntax with alt text containing emphasis", () => {
|
|
261
|
-
const input = "![**Important** image";
|
|
262
|
-
const result = completePartialMarkdown(input);
|
|
263
|
-
expect(result).toBe("![**Important** image]");
|
|
264
|
-
});
|
|
265
|
-
|
|
266
|
-
it("handles image with partial URL", () => {
|
|
267
|
-
const input = ";
|
|
269
|
-
expect(result).toBe("");
|
|
270
|
-
});
|
|
271
|
-
|
|
272
|
-
it("handles multiple links in sequence with incomplete last one", () => {
|
|
273
|
-
const input = "See [first](url1) and [second](url2) and [third";
|
|
274
|
-
const result = completePartialMarkdown(input);
|
|
275
|
-
expect(result).toBe("See [first](url1) and [second](url2) and [third]");
|
|
276
|
-
});
|
|
277
|
-
});
|
|
278
|
-
|
|
279
|
-
describe("Code block content stress tests", () => {
|
|
280
|
-
it("handles code block containing markdown-like syntax", () => {
|
|
281
|
-
const input = "```markdown\n# Header\n**Bold** text\n*italic*";
|
|
282
|
-
const result = completePartialMarkdown(input);
|
|
283
|
-
expect(result).toBe(
|
|
284
|
-
"```markdown\n# Header\n**Bold** text\n*italic*\n```"
|
|
285
|
-
);
|
|
286
|
-
});
|
|
287
|
-
|
|
288
|
-
it("handles code block with nested code fences", () => {
|
|
289
|
-
const input = "````\n```javascript\nconsole.log('nested');\n```";
|
|
290
|
-
const result = completePartialMarkdown(input);
|
|
291
|
-
expect(result).toBe(
|
|
292
|
-
"````\n```javascript\nconsole.log('nested');\n```\n````"
|
|
293
|
-
);
|
|
294
|
-
});
|
|
295
|
-
|
|
296
|
-
it("handles SQL with asterisks and underscores", () => {
|
|
297
|
-
const input = "```sql\nSELECT * FROM users_table WHERE name LIKE '%test_";
|
|
298
|
-
const result = completePartialMarkdown(input);
|
|
299
|
-
expect(result).toBe(
|
|
300
|
-
"```sql\nSELECT * FROM users_table WHERE name LIKE '%test_\n```"
|
|
301
|
-
);
|
|
302
|
-
});
|
|
303
|
-
|
|
304
|
-
it("handles regex patterns in code", () => {
|
|
305
|
-
const input = "```javascript\nconst pattern = /\\*{2,}.*_+.*`+/";
|
|
306
|
-
const result = completePartialMarkdown(input);
|
|
307
|
-
expect(result).toBe(
|
|
308
|
-
"```javascript\nconst pattern = /\\*{2,}.*_+.*`+/\n```"
|
|
309
|
-
);
|
|
310
|
-
});
|
|
311
|
-
|
|
312
|
-
it("handles bash commands with special characters", () => {
|
|
313
|
-
const input =
|
|
314
|
-
"```bash\nfind . -name '*.md' | grep -E '**bold**|_italic_|`code`";
|
|
315
|
-
const result = completePartialMarkdown(input);
|
|
316
|
-
expect(result).toBe(
|
|
317
|
-
"```bash\nfind . -name '*.md' | grep -E '**bold**|_italic_|`code`\n```"
|
|
318
|
-
);
|
|
319
|
-
});
|
|
320
|
-
});
|
|
321
|
-
|
|
322
|
-
describe("Real-world streaming patterns", () => {
|
|
323
|
-
it("handles streaming API documentation", () => {
|
|
324
|
-
const input =
|
|
325
|
-
"The `POST /api/users` endpoint accepts **required parameters**: `name` (string), `email` (string), and **optional";
|
|
326
|
-
const result = completePartialMarkdown(input);
|
|
327
|
-
expect(result).toBe(
|
|
328
|
-
"The `POST /api/users` endpoint accepts **required parameters**: `name` (string), `email` (string), and **optional**"
|
|
329
|
-
);
|
|
330
|
-
});
|
|
331
|
-
|
|
332
|
-
it("handles streaming code explanation", () => {
|
|
333
|
-
const input =
|
|
334
|
-
"This function `calculateTotal(items)` will **iterate through each item** and _sum the values_, then **return the";
|
|
335
|
-
const result = completePartialMarkdown(input);
|
|
336
|
-
expect(result).toBe(
|
|
337
|
-
"This function `calculateTotal(items)` will **iterate through each item** and _sum the values_, then **return the**"
|
|
338
|
-
);
|
|
339
|
-
});
|
|
340
|
-
|
|
341
|
-
it("handles streaming error message", () => {
|
|
342
|
-
const input =
|
|
343
|
-
"**Error**: Failed to connect to `database.example.com:5432`. Check [network settings](./troubleshooting.md#network";
|
|
344
|
-
const result = completePartialMarkdown(input);
|
|
345
|
-
expect(result).toBe(
|
|
346
|
-
"**Error**: Failed to connect to `database.example.com:5432`. Check [network settings](./troubleshooting.md#network)"
|
|
347
|
-
);
|
|
348
|
-
});
|
|
349
|
-
|
|
350
|
-
it("handles streaming configuration example", () => {
|
|
351
|
-
const input =
|
|
352
|
-
"Set the environment variable `NODE_ENV=production` and ensure **all required fields** are configured in [config.json";
|
|
353
|
-
const result = completePartialMarkdown(input);
|
|
354
|
-
expect(result).toBe(
|
|
355
|
-
"Set the environment variable `NODE_ENV=production` and ensure **all required fields** are configured in [config.json]"
|
|
356
|
-
);
|
|
357
|
-
});
|
|
358
|
-
|
|
359
|
-
it("handles streaming tutorial with mixed formatting", () => {
|
|
360
|
-
const input =
|
|
361
|
-
"1. Install dependencies with `npm install`\n2. **Configure** your `.env` file\n3. Run the [development server";
|
|
362
|
-
const result = completePartialMarkdown(input);
|
|
363
|
-
expect(result).toBe(
|
|
364
|
-
"1. Install dependencies with `npm install`\n2. **Configure** your `.env` file\n3. Run the [development server]"
|
|
365
|
-
);
|
|
366
|
-
});
|
|
367
|
-
});
|
|
368
|
-
|
|
369
|
-
describe("Special character and Unicode stress tests", () => {
|
|
370
|
-
it("handles emphasis with emoji and Unicode", () => {
|
|
371
|
-
const input = "This is **really important 🚨 información crítica";
|
|
372
|
-
const result = completePartialMarkdown(input);
|
|
373
|
-
expect(result).toBe(
|
|
374
|
-
"This is **really important 🚨 información crítica**"
|
|
375
|
-
);
|
|
376
|
-
});
|
|
377
|
-
|
|
378
|
-
it("handles code with special characters", () => {
|
|
379
|
-
const input = "Use `console.log('Hello 世界! ñáéíóú')` to **debug";
|
|
380
|
-
const result = completePartialMarkdown(input);
|
|
381
|
-
expect(result).toBe(
|
|
382
|
-
"Use `console.log('Hello 世界! ñáéíóú')` to **debug**"
|
|
383
|
-
);
|
|
384
|
-
});
|
|
385
|
-
|
|
386
|
-
it("handles links with international domains", () => {
|
|
387
|
-
const input =
|
|
388
|
-
"Visit [日本語サイト](https://example.日本/path/to/resource";
|
|
389
|
-
const result = completePartialMarkdown(input);
|
|
390
|
-
expect(result).toBe(
|
|
391
|
-
"Visit [日本語サイト](https://example.日本/path/to/resource)"
|
|
392
|
-
);
|
|
393
|
-
});
|
|
394
|
-
|
|
395
|
-
it("handles emphasis with mathematical symbols", () => {
|
|
396
|
-
const input = "The formula is **E = mc²** and the result _≈ 3.14159";
|
|
397
|
-
const result = completePartialMarkdown(input);
|
|
398
|
-
expect(result).toBe(
|
|
399
|
-
"The formula is **E = mc²** and the result _≈ 3.14159_"
|
|
400
|
-
);
|
|
401
|
-
});
|
|
402
|
-
});
|
|
403
|
-
|
|
404
|
-
describe("Performance and edge cases", () => {
|
|
405
|
-
it("handles very long strings efficiently", () => {
|
|
406
|
-
const input = "**" + "a".repeat(1000) + " and more text";
|
|
407
|
-
const result = completePartialMarkdown(input);
|
|
408
|
-
expect(result).toBe("**" + "a".repeat(1000) + " and more text**");
|
|
409
|
-
expect(result.length).toBeGreaterThan(1000);
|
|
410
|
-
});
|
|
411
|
-
|
|
412
|
-
it("handles many nested parentheses", () => {
|
|
413
|
-
const input = "Complex nesting: ((((((((((incomplete";
|
|
414
|
-
const result = completePartialMarkdown(input);
|
|
415
|
-
expect(result).toBe("Complex nesting: ((((((((((incomplete))))))))))");
|
|
416
|
-
});
|
|
417
|
-
|
|
418
|
-
it("handles alternating emphasis markers", () => {
|
|
419
|
-
const input = "*_*_*_*_*_incomplete";
|
|
420
|
-
const result = completePartialMarkdown(input);
|
|
421
|
-
expect(result).toBe("*_*_*_*_*_incomplete_*");
|
|
422
|
-
});
|
|
423
|
-
|
|
424
|
-
it("handles mixed quotes and emphasis", () => {
|
|
425
|
-
const input =
|
|
426
|
-
"He said \"this is **really important** and 'very _critical";
|
|
427
|
-
const result = completePartialMarkdown(input);
|
|
428
|
-
expect(result).toBe(
|
|
429
|
-
"He said \"this is **really important** and 'very _critical_"
|
|
430
|
-
);
|
|
431
|
-
});
|
|
432
|
-
});
|
|
433
|
-
|
|
434
|
-
describe("Malformed markdown recovery", () => {
|
|
435
|
-
it("handles unmatched emphasis in realistic context", () => {
|
|
436
|
-
const input =
|
|
437
|
-
"The **API endpoint** returns _JSON data_ but **sometimes the response";
|
|
438
|
-
const result = completePartialMarkdown(input);
|
|
439
|
-
expect(result).toBe(
|
|
440
|
-
"The **API endpoint** returns _JSON data_ but **sometimes the response**"
|
|
441
|
-
);
|
|
442
|
-
});
|
|
443
|
-
|
|
444
|
-
it("handles code fence without language but with content", () => {
|
|
445
|
-
const input = "```\nfunction test() {\n return 'hello';";
|
|
446
|
-
const result = completePartialMarkdown(input);
|
|
447
|
-
expect(result).toBe("```\nfunction test() {\n return 'hello';\n```");
|
|
448
|
-
});
|
|
449
|
-
|
|
450
|
-
it("handles strikethrough in middle of other emphasis", () => {
|
|
451
|
-
const input = "This is **bold with ~~strikethrough text";
|
|
452
|
-
const result = completePartialMarkdown(input);
|
|
453
|
-
expect(result).toBe("This is **bold with ~~strikethrough text~~**");
|
|
454
|
-
});
|
|
455
|
-
|
|
456
|
-
it("handles multiple emphasis types without proper ordering", () => {
|
|
457
|
-
const input = "_italic **bold ~~strike `code";
|
|
458
|
-
const result = completePartialMarkdown(input);
|
|
459
|
-
expect(result).toBe("_italic **bold ~~strike `code`~~**_");
|
|
460
|
-
});
|
|
461
|
-
});
|
|
462
|
-
|
|
463
|
-
describe("Streaming with realistic pauses", () => {
|
|
464
|
-
it("handles mid-word cutoff in technical terms", () => {
|
|
465
|
-
const input =
|
|
466
|
-
"Configure the `webpack.config.js` file with **optimization";
|
|
467
|
-
const result = completePartialMarkdown(input);
|
|
468
|
-
expect(result).toBe(
|
|
469
|
-
"Configure the `webpack.config.js` file with **optimization**"
|
|
470
|
-
);
|
|
471
|
-
});
|
|
472
|
-
|
|
473
|
-
it("handles cutoff after punctuation", () => {
|
|
474
|
-
const input = "First step: **install Node.js**. Second step: **configure";
|
|
475
|
-
const result = completePartialMarkdown(input);
|
|
476
|
-
expect(result).toBe(
|
|
477
|
-
"First step: **install Node.js**. Second step: **configure**"
|
|
478
|
-
);
|
|
479
|
-
});
|
|
480
|
-
|
|
481
|
-
it("handles cutoff in compound words", () => {
|
|
482
|
-
const input = "The **server-side";
|
|
483
|
-
const result = completePartialMarkdown(input);
|
|
484
|
-
expect(result).toBe("The **server-side**");
|
|
485
|
-
});
|
|
486
|
-
|
|
487
|
-
it("handles cutoff with numbers and symbols", () => {
|
|
488
|
-
const input = "Version **2.1.0** introduces **new features like auto-";
|
|
489
|
-
const result = completePartialMarkdown(input);
|
|
490
|
-
expect(result).toBe(
|
|
491
|
-
"Version **2.1.0** introduces **new features like auto-**"
|
|
492
|
-
);
|
|
493
|
-
});
|
|
494
|
-
});
|
|
495
|
-
});
|