-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathrenderer_test.go
More file actions
484 lines (336 loc) 路 10.4 KB
/
Copy pathrenderer_test.go
File metadata and controls
484 lines (336 loc) 路 10.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
package xlog
import (
"testing"
"github.com/emad-elsaid/xlog/markdown/ast"
"github.com/emad-elsaid/xlog/markdown/text"
)
func TestFindAllInAST_EmptyDocument(t *testing.T) {
// Parse empty markdown
md := MarkdownConverter()
doc := md.Parser().Parse(text.NewReader([]byte("")))
// Try to find paragraphs (should be none)
paragraphs := FindAllInAST[*ast.Paragraph](doc)
if len(paragraphs) != 0 {
t.Errorf("Expected 0 paragraphs in empty document, got %d", len(paragraphs))
}
}
func TestFindAllInAST_SimpleParagraphs(t *testing.T) {
// Parse markdown with multiple paragraphs
content := `First paragraph.
Second paragraph.
Third paragraph.`
md := MarkdownConverter()
doc := md.Parser().Parse(text.NewReader([]byte(content)))
paragraphs := FindAllInAST[*ast.Paragraph](doc)
if len(paragraphs) != 3 {
t.Errorf("Expected 3 paragraphs, got %d", len(paragraphs))
}
}
func TestFindAllInAST_Headings(t *testing.T) {
content := `# Heading 1
Some text.
## Heading 2
More text.
### Heading 3`
md := MarkdownConverter()
doc := md.Parser().Parse(text.NewReader([]byte(content)))
headings := FindAllInAST[*ast.Heading](doc)
if len(headings) != 3 {
t.Errorf("Expected 3 headings, got %d", len(headings))
}
// Verify heading levels
if headings[0].Level != 1 {
t.Errorf("Expected level 1, got %d", headings[0].Level)
}
if headings[1].Level != 2 {
t.Errorf("Expected level 2, got %d", headings[1].Level)
}
if headings[2].Level != 3 {
t.Errorf("Expected level 3, got %d", headings[2].Level)
}
}
func TestFindAllInAST_Links(t *testing.T) {
content := `Here is [link one](https://example.com).
And [link two](https://example.org).
And [link three](https://example.net).`
md := MarkdownConverter()
doc := md.Parser().Parse(text.NewReader([]byte(content)))
links := FindAllInAST[*ast.Link](doc)
if len(links) != 3 {
t.Errorf("Expected 3 links, got %d", len(links))
}
// Verify destinations
expectedDests := []string{
"https://example.com",
"https://example.org",
"https://example.net",
}
for i, link := range links {
dest := string(link.Destination)
if dest != expectedDests[i] {
t.Errorf("Expected destination '%s', got '%s'", expectedDests[i], dest)
}
}
}
func TestFindAllInAST_CodeBlocks(t *testing.T) {
content := "```go\nfunc main() {}\n```\n\nSome text.\n\n```python\nprint('hello')\n```"
md := MarkdownConverter()
doc := md.Parser().Parse(text.NewReader([]byte(content)))
codeBlocks := FindAllInAST[*ast.FencedCodeBlock](doc)
if len(codeBlocks) != 2 {
t.Errorf("Expected 2 code blocks, got %d", len(codeBlocks))
}
// Verify languages
if string(codeBlocks[0].Language([]byte(content))) != "go" {
t.Errorf("Expected language 'go', got '%s'", codeBlocks[0].Language([]byte(content)))
}
if string(codeBlocks[1].Language([]byte(content))) != "python" {
t.Errorf("Expected language 'python', got '%s'", codeBlocks[1].Language([]byte(content)))
}
}
func TestFindAllInAST_Lists(t *testing.T) {
content := `- Item 1
- Item 2
- Item 3
Some text.
1. Numbered 1
2. Numbered 2`
md := MarkdownConverter()
doc := md.Parser().Parse(text.NewReader([]byte(content)))
lists := FindAllInAST[*ast.List](doc)
if len(lists) != 2 {
t.Errorf("Expected 2 lists, got %d", len(lists))
}
// First should be unordered
if lists[0].IsOrdered() {
t.Error("Expected first list to be unordered")
}
// Second should be ordered
if !lists[1].IsOrdered() {
t.Error("Expected second list to be ordered")
}
}
func TestFindAllInAST_NilNode(t *testing.T) {
// Test with nil node
paragraphs := FindAllInAST[*ast.Paragraph](nil)
if paragraphs != nil {
t.Errorf("Expected nil result for nil node, got %v", paragraphs)
}
}
func TestFindAllInAST_NoMatches(t *testing.T) {
// Parse markdown with no images
content := "Just some plain text without any images."
md := MarkdownConverter()
doc := md.Parser().Parse(text.NewReader([]byte(content)))
images := FindAllInAST[*ast.Image](doc)
if len(images) != 0 {
t.Errorf("Expected 0 images, got %d", len(images))
}
}
func TestFindAllInAST_MixedContent(t *testing.T) {
content := `# Title
First paragraph with [a link](https://example.com).
Second paragraph.
- List item 1
- List item 2
Final paragraph.`
md := MarkdownConverter()
doc := md.Parser().Parse(text.NewReader([]byte(content)))
// Count all text nodes
textNodes := FindAllInAST[*ast.Text](doc)
// Should have multiple text nodes from heading, paragraphs, link, list items
if len(textNodes) < 5 {
t.Errorf("Expected at least 5 text nodes, got %d", len(textNodes))
}
}
func TestFindAllInAST_NestedStructures(t *testing.T) {
content := `- Item with **bold** text
- Item with *italic* text
- Item with [link](https://example.com)`
md := MarkdownConverter()
doc := md.Parser().Parse(text.NewReader([]byte(content)))
// Find all emphasis nodes (bold and italic)
emphasis := FindAllInAST[*ast.Emphasis](doc)
// Should find at least 2 (bold and italic)
if len(emphasis) < 2 {
t.Errorf("Expected at least 2 emphasis nodes, got %d", len(emphasis))
}
}
func TestFindAllInAST_ComplexDocument(t *testing.T) {
content := `# Main Title
## Section 1
Paragraph with [link1](https://example.com) and [link2](https://example.org).
### Subsection
More text here.
## Section 2
Final paragraph.`
md := MarkdownConverter()
doc := md.Parser().Parse(text.NewReader([]byte(content)))
// Test multiple types
headings := FindAllInAST[*ast.Heading](doc)
paragraphs := FindAllInAST[*ast.Paragraph](doc)
links := FindAllInAST[*ast.Link](doc)
if len(headings) != 4 {
t.Errorf("Expected 4 headings, got %d", len(headings))
}
if len(paragraphs) != 3 {
t.Errorf("Expected 3 paragraphs, got %d", len(paragraphs))
}
if len(links) != 2 {
t.Errorf("Expected 2 links, got %d", len(links))
}
}
func BenchmarkFindInAST_SmallDocument(b *testing.B) {
content := `# Heading
Simple paragraph with [a link](https://example.com).`
md := MarkdownConverter()
doc := md.Parser().Parse(text.NewReader([]byte(content)))
b.ResetTimer()
for i := 0; i < b.N; i++ {
_, _ = FindInAST[*ast.Link](doc)
}
}
func BenchmarkFindInAST_MediumDocument(b *testing.B) {
content := `# Main Heading
## Section 1
Paragraph with some **bold** and *italic* text.
[Link 1](https://example.com)
## Section 2
Another paragraph with [link 2](https://example.org).
- List item 1
- List item 2
- List item 3
Final paragraph.`
md := MarkdownConverter()
doc := md.Parser().Parse(text.NewReader([]byte(content)))
b.ResetTimer()
for i := 0; i < b.N; i++ {
_, _ = FindInAST[*ast.Link](doc)
}
}
func BenchmarkFindInAST_LargeDocument(b *testing.B) {
// Generate large document with many elements
content := `# Main Title
## Introduction
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Here's [link 1](https://example.com).
### Background
More text with [link 2](https://example.org) and some **bold content**.
## Methods
1. First method
2. Second method
3. Third method
Paragraph explaining the methods with [link 3](https://example.net).
### Detailed Approach
- Point one with *emphasis*
- Point two with **strong emphasis**
- Point three with [link 4](https://example.co.uk)
Code example here.
## Results
Multiple paragraphs here describing results. [Link 5](https://example.io).
Another paragraph with more details and [link 6](https://example.dev).
## Conclusion
Final thoughts with [link 7](https://example.com/conclusion).`
md := MarkdownConverter()
doc := md.Parser().Parse(text.NewReader([]byte(content)))
b.ResetTimer()
for i := 0; i < b.N; i++ {
_, _ = FindInAST[*ast.Link](doc)
}
}
func BenchmarkFindAllInAST_SmallDocument(b *testing.B) {
content := `# Heading
Paragraph with [link 1](https://example.com) and [link 2](https://example.org).`
md := MarkdownConverter()
doc := md.Parser().Parse(text.NewReader([]byte(content)))
b.ResetTimer()
for i := 0; i < b.N; i++ {
_ = FindAllInAST[*ast.Link](doc)
}
}
func BenchmarkFindAllInAST_MediumDocument(b *testing.B) {
content := `# Main Heading
## Section 1
Paragraph with [link 1](https://example.com) and [link 2](https://example.org).
## Section 2
Another paragraph with [link 3](https://example.net) and [link 4](https://example.io).
- List with [link 5](https://example.dev)
- Another item with [link 6](https://example.co.uk)
Final paragraph with [link 7](https://example.com/final).`
md := MarkdownConverter()
doc := md.Parser().Parse(text.NewReader([]byte(content)))
b.ResetTimer()
for i := 0; i < b.N; i++ {
_ = FindAllInAST[*ast.Link](doc)
}
}
func BenchmarkFindAllInAST_LargeDocument(b *testing.B) {
// Generate document with many links
content := `# Main Title
## Introduction
Lorem ipsum [link 1](https://example.com) dolor sit amet.
### Background
More text with [link 2](https://example.org) and [link 3](https://example.net).
## Methods
1. First [link 4](https://example.io)
2. Second [link 5](https://example.dev)
3. Third [link 6](https://example.co.uk)
Paragraph with [link 7](https://example.com/methods).
### Detailed Approach
- Point [link 8](https://example.com/p1)
- Point [link 9](https://example.com/p2)
- Point [link 10](https://example.com/p3)
## Results
Text with [link 11](https://example.com/r1).
More [link 12](https://example.com/r2).
And [link 13](https://example.com/r3).
## Discussion
Analysis with [link 14](https://example.com/d1).
Further [link 15](https://example.com/d2).
## Conclusion
Final [link 16](https://example.com/conclusion).`
md := MarkdownConverter()
doc := md.Parser().Parse(text.NewReader([]byte(content)))
b.ResetTimer()
for i := 0; i < b.N; i++ {
_ = FindAllInAST[*ast.Link](doc)
}
}
func BenchmarkFindAllInAST_MultipleTypes(b *testing.B) {
content := `# Main Title
## Section 1
Paragraph with [link](https://example.com) and **bold** text.
### Subsection
More text with *italic* here.
## Section 2
- List item 1
- List item 2
- List item 3
Final paragraph.`
md := MarkdownConverter()
doc := md.Parser().Parse(text.NewReader([]byte(content)))
b.Run("FindHeadings", func(b *testing.B) {
for i := 0; i < b.N; i++ {
_ = FindAllInAST[*ast.Heading](doc)
}
})
b.Run("FindParagraphs", func(b *testing.B) {
for i := 0; i < b.N; i++ {
_ = FindAllInAST[*ast.Paragraph](doc)
}
})
b.Run("FindLinks", func(b *testing.B) {
for i := 0; i < b.N; i++ {
_ = FindAllInAST[*ast.Link](doc)
}
})
b.Run("FindEmphasis", func(b *testing.B) {
for i := 0; i < b.N; i++ {
_ = FindAllInAST[*ast.Emphasis](doc)
}
})
b.Run("FindLists", func(b *testing.B) {
for i := 0; i < b.N; i++ {
_ = FindAllInAST[*ast.List](doc)
}
})
}