-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlist_test.go
More file actions
376 lines (348 loc) · 9.75 KB
/
Copy pathlist_test.go
File metadata and controls
376 lines (348 loc) · 9.75 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
package herald
import (
"strings"
"testing"
)
func TestItem(t *testing.T) {
li := Item("hello")
if li.Text != "hello" {
t.Errorf("expected %q, got %q", "hello", li.Text)
}
if len(li.Children) != 0 {
t.Errorf("expected no children, got %d", len(li.Children))
}
}
func TestItems(t *testing.T) {
items := Items("a", "b", "c")
if len(items) != 3 {
t.Fatalf("expected 3 items, got %d", len(items))
}
for i, text := range []string{"a", "b", "c"} {
if items[i].Text != text {
t.Errorf("items[%d]: expected %q, got %q", i, text, items[i].Text)
}
}
}
func TestItemWithChildren(t *testing.T) {
li := ItemWithChildren("parent", Item("child1"), Item("child2"))
if li.Text != "parent" {
t.Errorf("expected %q, got %q", "parent", li.Text)
}
if len(li.Children) != 2 {
t.Errorf("expected 2 children, got %d", len(li.Children))
}
if li.Kind != Unordered {
t.Errorf("expected Unordered, got %d", li.Kind)
}
}
func TestItemWithOLChildren(t *testing.T) {
li := ItemWithOLChildren("parent", Item("child1"))
if li.Kind != Ordered {
t.Errorf("expected Ordered, got %d", li.Kind)
}
}
func TestNestUL(t *testing.T) {
ty := New()
t.Run("empty", func(t *testing.T) {
result := ty.NestUL()
if result != "" {
t.Errorf("expected empty string, got %q", result)
}
})
t.Run("flat items", func(t *testing.T) {
result := stripANSI(ty.NestUL(Item("a"), Item("b")))
lines := strings.Split(result, "\n")
if len(lines) != 2 {
t.Fatalf("expected 2 lines, got %d: %q", len(lines), result)
}
// First level uses first bullet char
if !strings.Contains(lines[0], "a") {
t.Errorf("expected line to contain %q, got %q", "a", lines[0])
}
})
t.Run("nested items", func(t *testing.T) {
result := stripANSI(ty.NestUL(
Item("top"),
ItemWithChildren("parent",
Item("child1"),
Item("child2"),
),
))
lines := strings.Split(result, "\n")
if len(lines) != 4 {
t.Fatalf("expected 4 lines, got %d: %q", len(lines), result)
}
// Children should be indented
if !strings.HasPrefix(lines[2], " ") {
t.Errorf("expected child line to be indented, got %q", lines[2])
}
})
t.Run("bullet cycling", func(t *testing.T) {
// Build 3 levels deep
result := stripANSI(ty.NestUL(
ItemWithChildren("l0",
ItemWithChildren("l1",
Item("l2"),
),
),
))
lines := strings.Split(result, "\n")
if len(lines) != 3 {
t.Fatalf("expected 3 lines, got %d: %q", len(lines), result)
}
// Default bullets: "•", "◦", "▪", "▹"
bullets := DefaultNestedBulletChars()
if !strings.Contains(lines[0], bullets[0]) {
t.Errorf("depth 0: expected bullet %q in %q", bullets[0], lines[0])
}
if !strings.Contains(lines[1], bullets[1]) {
t.Errorf("depth 1: expected bullet %q in %q", bullets[1], lines[1])
}
if !strings.Contains(lines[2], bullets[2]) {
t.Errorf("depth 2: expected bullet %q in %q", bullets[2], lines[2])
}
})
}
func TestNestOL(t *testing.T) {
ty := New()
t.Run("empty", func(t *testing.T) {
result := ty.NestOL()
if result != "" {
t.Errorf("expected empty string, got %q", result)
}
})
t.Run("flat items", func(t *testing.T) {
result := stripANSI(ty.NestOL(Item("a"), Item("b"), Item("c")))
lines := strings.Split(result, "\n")
if len(lines) != 3 {
t.Fatalf("expected 3 lines, got %d", len(lines))
}
if !strings.Contains(lines[0], "1.") {
t.Errorf("expected %q in %q", "1.", lines[0])
}
if !strings.Contains(lines[2], "3.") {
t.Errorf("expected %q in %q", "3.", lines[2])
}
})
t.Run("nested numbering resets", func(t *testing.T) {
result := stripANSI(ty.NestOL(
ItemWithOLChildren("parent",
Item("child1"),
Item("child2"),
),
Item("second"),
))
lines := strings.Split(result, "\n")
if len(lines) != 4 {
t.Fatalf("expected 4 lines, got %d: %q", len(lines), result)
}
// Parent is 1., second is 2.
if !strings.Contains(lines[0], "1.") {
t.Errorf("expected parent to be 1., got %q", lines[0])
}
if !strings.Contains(lines[3], "2.") {
t.Errorf("expected second to be 2., got %q", lines[3])
}
// Children restart at 1.
if !strings.Contains(lines[1], "1.") {
t.Errorf("expected child1 to be 1., got %q", lines[1])
}
if !strings.Contains(lines[2], "2.") {
t.Errorf("expected child2 to be 2., got %q", lines[2])
}
})
}
func TestMixedNesting(t *testing.T) {
ty := New()
t.Run("OL children inside UL", func(t *testing.T) {
result := stripANSI(ty.NestUL(
ItemWithOLChildren("parent",
Item("first"),
Item("second"),
),
))
lines := strings.Split(result, "\n")
if len(lines) != 3 {
t.Fatalf("expected 3 lines, got %d: %q", len(lines), result)
}
// Children should have numbered markers
if !strings.Contains(lines[1], "1.") {
t.Errorf("expected numbered child, got %q", lines[1])
}
})
t.Run("UL children inside OL", func(t *testing.T) {
result := stripANSI(ty.NestOL(
ItemWithChildren("parent",
Item("bullet1"),
Item("bullet2"),
),
))
lines := strings.Split(result, "\n")
if len(lines) != 3 {
t.Fatalf("expected 3 lines, got %d: %q", len(lines), result)
}
// Parent should be numbered
if !strings.Contains(lines[0], "1.") {
t.Errorf("expected numbered parent, got %q", lines[0])
}
// Children should have bullet chars
if !strings.Contains(lines[1], DefaultNestedBulletChars()[1]) {
t.Errorf("expected bullet child, got %q", lines[1])
}
})
}
func TestNestULCustomIndent(t *testing.T) {
ty := New(WithListIndent(4))
result := stripANSI(ty.NestUL(
ItemWithChildren("parent",
Item("child"),
),
))
lines := strings.Split(result, "\n")
if len(lines) != 2 {
t.Fatalf("expected 2 lines, got %d", len(lines))
}
// Child should be indented by 4 spaces
if !strings.HasPrefix(lines[1], " ") {
t.Errorf("expected 4-space indent, got %q", lines[1])
}
}
func TestNestULCustomBullets(t *testing.T) {
ty := New(WithNestedBulletChars([]string{"*", "o", "-", ">"}))
result := stripANSI(ty.NestUL(
ItemWithChildren("l0",
ItemWithChildren("l1",
Item("l2"),
),
),
))
lines := strings.Split(result, "\n")
if len(lines) != 3 {
t.Fatalf("expected 3 lines, got %d", len(lines))
}
if !strings.Contains(lines[0], "*") {
t.Errorf("depth 0: expected *, got %q", lines[0])
}
if !strings.Contains(lines[1], "o") {
t.Errorf("depth 1: expected o, got %q", lines[1])
}
if !strings.Contains(lines[2], "-") {
t.Errorf("depth 2: expected -, got %q", lines[2])
}
}
func TestNestULEmptyBulletChars(t *testing.T) {
ty := New()
// Directly set to nil to trigger the len(chars) == 0 fallback
// in renderNestedList (WithNestedBulletChars guards against empty slices)
ty.theme.NestedBulletChars = nil
result := stripANSI(ty.NestUL(Item("fallback")))
if !strings.Contains(result, "•") {
t.Errorf("expected fallback bullet •, got %q", result)
}
}
func TestNestULDepthLimit(t *testing.T) {
// Build a deeply nested list that exceeds maxNestedListDepth (64).
// renderNestedList starts at depth 0, so we need 65+ levels of nesting
// to trigger the depth > 64 guard.
item := Item("leaf")
for range 66 {
item = ItemWithChildren("level", item)
}
ty := New()
result := ty.NestUL(item)
// Should not panic; the deepest child should be silently dropped
if result == "" {
t.Error("expected non-empty result for deep nesting")
}
// Verify that "leaf" does NOT appear (it's beyond the depth limit)
if strings.Contains(stripANSI(result), "leaf") {
t.Error("expected leaf to be dropped due to depth limit")
}
}
func TestHierarchicalNumbers(t *testing.T) {
ty := New(WithHierarchicalNumbers(true))
t.Run("nested OL uses parent prefix", func(t *testing.T) {
result := stripANSI(ty.NestOL(
Item("Introduction"),
ItemWithOLChildren("Main Topics",
Item("Architecture"),
Item("Design"),
),
Item("Conclusion"),
))
lines := strings.Split(result, "\n")
if len(lines) != 5 {
t.Fatalf("expected 5 lines, got %d: %q", len(lines), result)
}
// Parent items: 1., 2., 3.
if !strings.Contains(lines[0], "1.") {
t.Errorf("expected 1. in %q", lines[0])
}
if !strings.Contains(lines[1], "2.") {
t.Errorf("expected 2. in %q", lines[1])
}
// Children: 2.1., 2.2.
if !strings.Contains(lines[2], "2.1.") {
t.Errorf("expected 2.1. in %q", lines[2])
}
if !strings.Contains(lines[3], "2.2.") {
t.Errorf("expected 2.2. in %q", lines[3])
}
if !strings.Contains(lines[4], "3.") {
t.Errorf("expected 3. in %q", lines[4])
}
})
t.Run("three levels deep", func(t *testing.T) {
result := stripANSI(ty.NestOL(
ItemWithOLChildren("A",
ItemWithOLChildren("B",
Item("C"),
),
),
))
lines := strings.Split(result, "\n")
if len(lines) != 3 {
t.Fatalf("expected 3 lines, got %d: %q", len(lines), result)
}
if !strings.Contains(lines[0], "1.") {
t.Errorf("expected 1. in %q", lines[0])
}
if !strings.Contains(lines[1], "1.1.") {
t.Errorf("expected 1.1. in %q", lines[1])
}
if !strings.Contains(lines[2], "1.1.1.") {
t.Errorf("expected 1.1.1. in %q", lines[2])
}
})
t.Run("disabled by default", func(t *testing.T) {
tyDefault := New()
result := stripANSI(tyDefault.NestOL(
ItemWithOLChildren("A",
Item("B"),
),
))
lines := strings.Split(result, "\n")
if len(lines) != 2 {
t.Fatalf("expected 2 lines, got %d", len(lines))
}
// Child should be "1." not "1.1."
if strings.Contains(lines[1], "1.1.") {
t.Errorf("hierarchical numbering should be off by default, got %q", lines[1])
}
})
t.Run("mixed UL children skip prefix", func(t *testing.T) {
result := stripANSI(ty.NestOL(
ItemWithChildren("A",
Item("bullet"),
),
))
lines := strings.Split(result, "\n")
if len(lines) != 2 {
t.Fatalf("expected 2 lines, got %d", len(lines))
}
// UL child should use a bullet, not a number
if strings.Contains(lines[1], "1.1.") {
t.Errorf("UL children should not use hierarchical numbers, got %q", lines[1])
}
})
}