forked from k1LoW/deck
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslide_string_test.go
More file actions
402 lines (395 loc) · 7.73 KB
/
Copy pathslide_string_test.go
File metadata and controls
402 lines (395 loc) · 7.73 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
package deck
import (
"testing"
)
func TestBodyString(t *testing.T) {
tests := []struct {
name string
body *Body
expected string
}{
{
name: "empty body",
body: &Body{},
expected: "",
},
{
name: "single paragraph without bullet",
body: &Body{
Paragraphs: []*Paragraph{
{
Fragments: []*Fragment{
{Value: "Hello world"},
},
Bullet: BulletNone,
},
},
},
expected: "Hello world\n",
},
{
name: "single paragraph with dash bullet",
body: &Body{
Paragraphs: []*Paragraph{
{
Fragments: []*Fragment{
{Value: "First item"},
},
Bullet: BulletDash,
},
},
},
expected: "- First item\n",
},
{
name: "multiple paragraphs mixed bullets and text",
body: &Body{
Paragraphs: []*Paragraph{
{
Fragments: []*Fragment{
{Value: "Introduction text"},
},
Bullet: BulletNone,
},
{
Fragments: []*Fragment{
{Value: "First bullet point"},
},
Bullet: BulletDash,
},
{
Fragments: []*Fragment{
{Value: "Second bullet point"},
},
Bullet: BulletDash,
},
},
},
expected: "Introduction text\n\n- First bullet point\n- Second bullet point\n",
},
{
name: "multiple fragments in single paragraph",
body: &Body{
Paragraphs: []*Paragraph{
{
Fragments: []*Fragment{
{Value: "Hello "},
{Value: "beautiful "},
{Value: "world"},
},
Bullet: BulletNone,
},
},
},
expected: "Hello beautiful world\n",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := tt.body.String()
if got != tt.expected {
t.Errorf("Body.String() = %q, expected %q", got, tt.expected)
}
})
}
}
func TestParagraphString(t *testing.T) {
tests := []struct {
name string
paragraph *Paragraph
expected string
}{
{
name: "nil paragraph",
paragraph: nil,
expected: "",
},
{
name: "paragraph with no bullet and no nesting",
paragraph: &Paragraph{
Fragments: []*Fragment{
{Value: "Simple text"},
},
Bullet: BulletNone,
Nesting: 0,
},
expected: "Simple text",
},
{
name: "paragraph with dash bullet",
paragraph: &Paragraph{
Fragments: []*Fragment{
{Value: "Dash bullet item"},
},
Bullet: BulletDash,
Nesting: 0,
},
expected: "- Dash bullet item",
},
{
name: "paragraph with number bullet",
paragraph: &Paragraph{
Fragments: []*Fragment{
{Value: "Number bullet item"},
},
Bullet: BulletNumbered,
Nesting: 0,
},
expected: "1. Number bullet item",
},
{
name: "paragraph with nesting level 1",
paragraph: &Paragraph{
Fragments: []*Fragment{
{Value: "Nested item"},
},
Bullet: BulletDash,
Nesting: 1,
},
expected: " - Nested item",
},
{
name: "paragraph with nesting level 2",
paragraph: &Paragraph{
Fragments: []*Fragment{
{Value: "Double nested item"},
},
Bullet: BulletDash,
Nesting: 2,
},
expected: " - Double nested item",
},
{
name: "paragraph with multiple fragments",
paragraph: &Paragraph{
Fragments: []*Fragment{
{Value: "First "},
{Value: "second "},
{Value: "third"},
},
Bullet: BulletNone,
Nesting: 0,
},
expected: "First second third",
},
{
name: "paragraph with nil fragment",
paragraph: &Paragraph{
Fragments: []*Fragment{
{Value: "Before nil"},
nil,
{Value: "After nil"},
},
Bullet: BulletNone,
Nesting: 0,
},
expected: "Before nilAfter nil",
},
{
name: "paragraph with nested number bullet",
paragraph: &Paragraph{
Fragments: []*Fragment{
{Value: "Nested numbered item"},
},
Bullet: BulletNumbered,
Nesting: 1,
},
expected: " 1. Nested numbered item",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := tt.paragraph.String()
if got != tt.expected {
t.Errorf("Paragraph.String() = %q, expected %q", got, tt.expected)
}
})
}
}
func TestBlockQuoteString(t *testing.T) {
tests := []struct {
name string
blockQuote *BlockQuote
expected string
}{
{
name: "nil blockquote",
blockQuote: nil,
expected: "",
},
{
name: "empty blockquote",
blockQuote: &BlockQuote{},
expected: "",
},
{
name: "single paragraph without bullet",
blockQuote: &BlockQuote{
Paragraphs: []*Paragraph{
{
Fragments: []*Fragment{
{Value: "This is a quote"},
},
Bullet: BulletNone,
},
},
Nesting: 0,
},
expected: "> This is a quote\n",
},
{
name: "single paragraph with dash bullet",
blockQuote: &BlockQuote{
Paragraphs: []*Paragraph{
{
Fragments: []*Fragment{
{Value: "Quote with bullet"},
},
Bullet: BulletDash,
},
},
Nesting: 0,
},
expected: "> - Quote with bullet\n",
},
{
name: "multiple paragraphs without bullets",
blockQuote: &BlockQuote{
Paragraphs: []*Paragraph{
{
Fragments: []*Fragment{
{Value: "First paragraph"},
},
Bullet: BulletNone,
},
{
Fragments: []*Fragment{
{Value: "Second paragraph"},
},
Bullet: BulletNone,
},
},
Nesting: 0,
},
expected: "> First paragraph\n> \n> Second paragraph\n",
},
{
name: "multiple paragraphs with bullets",
blockQuote: &BlockQuote{
Paragraphs: []*Paragraph{
{
Fragments: []*Fragment{
{Value: "First bullet"},
},
Bullet: BulletDash,
},
{
Fragments: []*Fragment{
{Value: "Second bullet"},
},
Bullet: BulletDash,
},
},
Nesting: 0,
},
expected: "> - First bullet\n> - Second bullet\n",
},
{
name: "mixed bullet and non-bullet paragraphs",
blockQuote: &BlockQuote{
Paragraphs: []*Paragraph{
{
Fragments: []*Fragment{
{Value: "First bullet"},
},
Bullet: BulletDash,
},
{
Fragments: []*Fragment{
{Value: "Plain text"},
},
Bullet: BulletNone,
},
},
Nesting: 0,
},
expected: "> - First bullet\n> \n> Plain text\n",
},
{
name: "nested blockquote (nesting level 1)",
blockQuote: &BlockQuote{
Paragraphs: []*Paragraph{
{
Fragments: []*Fragment{
{Value: "Nested quote"},
},
Bullet: BulletNone,
},
},
Nesting: 1,
},
expected: "> > Nested quote\n",
},
{
name: "deeply nested blockquote (nesting level 2)",
blockQuote: &BlockQuote{
Paragraphs: []*Paragraph{
{
Fragments: []*Fragment{
{Value: "Deeply nested quote"},
},
Bullet: BulletNone,
},
},
Nesting: 2,
},
expected: "> > > Deeply nested quote\n",
},
{
name: "paragraph with multiple fragments",
blockQuote: &BlockQuote{
Paragraphs: []*Paragraph{
{
Fragments: []*Fragment{
{Value: "Hello "},
{Value: "beautiful "},
{Value: "world"},
},
Bullet: BulletNone,
},
},
Nesting: 0,
},
expected: "> Hello beautiful world\n",
},
{
name: "multiple bullet types",
blockQuote: &BlockQuote{
Paragraphs: []*Paragraph{
{
Fragments: []*Fragment{
{Value: "Dash bullet"},
},
Bullet: BulletDash,
},
{
Fragments: []*Fragment{
{Value: "Number bullet"},
},
Bullet: BulletNumbered,
},
},
Nesting: 0,
},
expected: "> - Dash bullet\n> 1. Number bullet\n",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := tt.blockQuote.String()
if got != tt.expected {
t.Errorf("BlockQuote.String() = %q, expected %q", got, tt.expected)
}
})
}
}