-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmd2html_test.go
452 lines (431 loc) · 11.4 KB
/
md2html_test.go
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
package tg_md2html_test
import (
"strings"
"testing"
"github.com/stretchr/testify/assert"
tg_md2html "github.com/PaulSonOfLars/gotg_md2html"
)
var basicMD = []struct {
in string
out string
}{
{
in: "hello",
out: "hello",
}, {
in: "_hello_",
out: "<i>hello</i>",
}, {
in: "*hello*",
out: "<b>hello</b>",
}, {
in: "`hello`",
out: "<code>hello</code>",
}, {
in: "[hello](test.com)",
out: `<a href="test.com">hello</a>`,
}, {
in: `_hello\_ there_`,
out: "<i>hello_ there</i>",
}, {
in: "`code and <brackets>`",
out: "<code>code and <brackets></code>",
},
}
var advancedMD = []struct {
in string
out string
}{
{
in: "hello there",
out: "hello there",
}, {
in: "_hello_ there",
out: "<i>hello</i> there",
}, {
in: "hello _there_",
out: "hello <i>there</i>",
}, {
in: "_hello there_",
out: "<i>hello there</i>",
}, {
in: "_hello_ there_",
out: "<i>hello</i> there_",
}, {
in: "_hello _there_",
out: "<i>hello _there</i>",
}, {
in: "_hello _ there_",
out: "<i>hello _ there</i>",
}, {
in: "so_hello _there_",
out: "so_hello <i>there</i>",
}, {
in: "_hello you_there_",
out: "<i>hello you_there</i>",
}, {
in: "`hello` there",
out: "<code>hello</code> there",
}, {
in: "*hello* there",
out: "<b>hello</b> there",
}, {
in: "hello [there](link.com)",
out: `hello <a href="link.com">there</a>`,
}, {
in: "hello [there](buttonurl://link.com)",
out: `hello <a href="buttonurl://link.com">there</a>`,
}, {
in: "hello [there[]](link.com)",
out: `hello <a href="link.com">there[]</a>`,
}, {
in: "[hello] soo] () [there](link.com)",
out: `<a href="link.com">hello] soo] () [there</a>`,
}, {
in: "[hello] soo] () [there](link.com)",
out: `<a href="link.com">hello] soo] () [there</a>`,
}, {
in: "]]]]]]] ))))))) ((((([link](example.com) [link2](example2.com) [link3](example3.com) ]]]]](((())))",
out: `]]]]]]] ))))))) (((((<a href="example.com">link</a> <a href="example2.com">link2</a> <a href="example3.com">link3</a> ]]]]](((())))`,
}, {
in: "[reallybiglink\\](example3.com) [insidelink](exampleLink.com)",
out: `<a href="exampleLink.com">reallybiglink](example3.com) [insidelink</a>`,
}, {
in: "[link](example.com) [escapedlink2]\\(example2.com) \\[escapedlink3](example3.com) [notalink] (no.com) [reallybiglink\\](example3.com) [insidelink](example3.com)",
out: `<a href="example.com">link</a> <a href="example3.com">escapedlink2](example2.com) [escapedlink3</a> <a href="example3.com">notalink] (no.com) [reallybiglink](example3.com) [insidelink</a>`,
}, {
in: "hello there _friend_ how * are _ you? [link[with a sub box!]](example.com) emoji [emoji link ](example.com)",
out: `hello there <i>friend</i> how * are _ you? <a href="example.com">link[with a sub box!]</a> emoji <a href="example.com">emoji link </a>`,
}, {
in: "_hello_1",
out: "_hello_1",
}, {
in: `*\**`,
out: "<b>*</b>",
}, {
in: "hell_o [there[]](link.com/this_isfine)",
out: `hell_o <a href="link.com/this_isfine">there[]</a>`,
}, {
in: "\\",
out: "\\",
}, {
in: "_| _ '_ ` _ _`",
out: "<i>| _ '</i> ` _ _`",
}, {
in: "_| _ '_ ` _ _` _| _ '_ ` _ _` _| _ '_ ` _ _` _| _ '_ ` _ _`",
out: "<i>| _ '</i> ` _ <i>` _| _ '</i> ` _ <i>` _| _ '</i> ` _ <i>` _| _ '</i> ` _ _`",
}, {
in: "_hey\\_ there_",
out: "<i>hey_ there</i>",
}, {
in: "\\_input_",
out: "_input_",
},
}
var reverseTest = []string{
"hello there",
"_hello_ there",
"hello _there_",
"_hello there_",
"_hello_ there_",
"_hello _there_",
"_hello _ there_",
"so_hello _there_",
"_hello you_there_",
"`hello` there",
"*hello* there",
"hello [there](link.com)",
"hello [there](buttonurl://link.com)",
"hello [there[]](link.com)",
"[hello] soo] () [there](link.com)",
"_hello_ `there` *bold* [url](link.com) _`notcode`_ *_notitalic_* [weird not italic _](morelink.co.uk)_",
"[hello] soo] () [there](link.com)",
"]]]]]]] ))))))) ((((([link](example.com) [link2](example2.com) [link3](example3.com) ]]]]](((())))",
"[reallybiglink\\](example3.com) [insidelink](exampleLink.com)",
"[link](example.com) [escapedlink2]\\(example2.com) \\[escapedlink3](example3.com) [notalink] (no.com) [reallybiglink\\](example3.com) [insidelink](example3.com)",
"hello there _friend_ how * are _ you? [link[with a sub box!]](example.com) emoji [emoji link ](example.com)",
"_hello_1",
`*\**`,
"hell_o [there[]](link.com/this_isfine)",
"hello \\[there](link.com)",
"hello \\[there\\]\\(link.com\\)",
"hello \\[there]\\(link.com)",
"hello [there more \\[text](link.com)",
"hello \\(link.com)",
"hello \\\\(who knowsss\\)",
"hello \\[ text",
"don't know",
"don't \\[ text",
"don't hey_o_there whastup \"",
"don't hey_o_there [link](idek.com)",
"don't hey_o_there [link](buttonurl://idek.com)",
"don't hey_o_there \\[link](buttonurl://idek.com)",
"don't hey_o_there \\[link](buttonurl://idek.com) [nolink]",
"don't hey_o_there \\[link](buttonurl://idek.com) [stillink](buttonurl://test.com)",
"don't _hey'quotes_",
"`test \\`escaped` backticks",
"`test\\` escaped` backticks",
"\\_test_",
"\\\\_test_",
"_italics\\_ *maybebold* still italics_",
"`code and <brackets>`",
"_italics and <brackets>_",
"__strikethrough__", // mdv1 wont parse this, but thats ok
"||spoiler||", // mdv1 wont parse this, but thats ok
}
func TestMD2HTMLBasic(t *testing.T) {
for _, x := range basicMD {
assert.Equal(t, x.out, tg_md2html.MD2HTML(x.in))
}
}
func TestMD2HTMLAdvanced(t *testing.T) {
for _, test := range advancedMD {
assert.Equal(t, test.out, tg_md2html.MD2HTML(test.in))
}
assert.Equal(t,
"<i>hello</i> <code>there</code> <b>bold</b> <a href=\"link.com\">url</a> <i>`notcode`</i> <b>_notitalic_</b> <a href=\"morelink.co.uk\">weird not italic _</a>_",
tg_md2html.MD2HTML("_hello_ `there` *bold* [url](link.com) _`notcode`_ *_notitalic_* [weird not italic _](morelink.co.uk)_"),
)
}
func TestMD2HTMLButtons(t *testing.T) {
type mdTestStruct struct {
input string
output string
btns []tg_md2html.Button
}
for _, test := range []mdTestStruct{
{
input: "hello [there](buttonurl://link.com)",
output: `hello`,
btns: []tg_md2html.Button{{
Name: "there",
Content: "link.com",
SameLine: false,
}},
}, {
input: "hey there! My name is @MissRose_bot. go to [Rules](buttonurl://t.me/MissRose_bot?start=idek_12345)",
output: "hey there! My name is @MissRose_bot. go to",
btns: []tg_md2html.Button{{
Name: "Rules",
Content: "t.me/MissRose_bot?start=idek_12345",
SameLine: false,
}},
}, {
input: "no [1](buttonurl://link.com)[2](buttonurl://link.com)[3](buttonurl://link.com)",
output: `no`,
btns: []tg_md2html.Button{{
Name: "1",
Content: "link.com",
SameLine: false,
}, {
Name: "2",
Content: "link.com",
SameLine: false,
}, {
Name: "3",
Content: "link.com",
SameLine: false,
}},
}, {
input: "*bold [box]* [1](buttonurl://link.com)[2](buttonurl://link.com)[3](buttonurl://link.com)",
output: `<b>bold [box]</b>`,
btns: []tg_md2html.Button{{
Name: "1",
Content: "link.com",
SameLine: false,
}, {
Name: "2",
Content: "link.com",
SameLine: false,
}, {
Name: "3",
Content: "link.com",
SameLine: false,
}},
}, {
input: "*a [box]*[link](buttonurl://link.com)",
output: "<b>a [box]</b>",
btns: []tg_md2html.Button{{
Name: "link",
Content: "link.com",
SameLine: false,
}},
},
} {
out, btns := tg_md2html.MD2HTMLButtons(test.input)
assert.Equal(t, test.output, out)
assert.ElementsMatch(t, test.btns, btns)
}
}
func TestReverse(t *testing.T) {
for _, test := range reverseTest {
assert.Equal(t, tg_md2html.MD2HTML(test), tg_md2html.MD2HTML(tg_md2html.Reverse(tg_md2html.MD2HTML(test), nil)))
}
}
func TestReverseBtns(t *testing.T) {
type TestRevBtn struct {
text string
buttons []tg_md2html.Button
out string
}
for _, test := range []TestRevBtn{
{
text: "Hello there",
buttons: []tg_md2html.Button{},
out: "Hello there",
}, {
text: "Hello there <i>italic</i>",
buttons: []tg_md2html.Button{},
out: "Hello there _italic_",
}, {
text: "Hello there",
buttons: []tg_md2html.Button{
{
Name: "Test",
Content: "link.com",
SameLine: false,
},
},
out: "Hello there\n[Test](buttonurl://link.com)",
}, {
text: "oh no",
buttons: []tg_md2html.Button{
{
Name: "btn1",
Content: "example.com",
SameLine: false,
}, {
Name: "btn2",
Content: "link.com",
SameLine: true,
},
},
out: "oh no\n[btn1](buttonurl://example.com)\n[btn2](buttonurl://link.com:same)",
}, {
text: "I dont even knowww \\[ stuff",
buttons: nil,
out: "I dont even knowww \\\\\\[ stuff", // -> \ (e:\\) becomes \\ (e:\\\\) and [ becomes \] (e:\\[) so \\\\\\[
}, {
text: "I dont even knowww \\\\[ stuff",
buttons: nil,
out: "I dont even knowww \\\\\\\\\\[ stuff",
}, {
text: "Hello there",
buttons: []tg_md2html.Button{
{
Name: "test with ' quote",
Content: "link.com",
SameLine: false,
},
},
out: "Hello there\n[test with ' quote](buttonurl://link.com)",
}, {
text: "Hello there",
buttons: []tg_md2html.Button{
{
Name: "test with ' quote",
Content: "link.com%22%22%22",
SameLine: false,
},
},
out: "Hello there\n[test with ' quote](buttonurl://link.com%22%22%22)",
}, {
text: "Hello there",
buttons: []tg_md2html.Button{
{
Name: "test with ' quote",
Content: "link.com\"\"",
SameLine: false,
},
},
out: "Hello there\n[test with ' quote](buttonurl://link.com\"\")",
},
} {
assert.Equal(t, test.out, tg_md2html.Reverse(test.text, test.buttons))
one, oneb := tg_md2html.MD2HTMLButtons(test.out)
two, twob := tg_md2html.MD2HTMLButtons(tg_md2html.Reverse(one, oneb))
assert.Equal(t, one, two)
assert.ElementsMatch(t, oneb, twob)
}
}
func TestIsEscaped(t *testing.T) {
for _, x := range []struct {
s string
b bool
}{
{
s: "a",
b: false,
}, {
s: `\a`,
b: true,
}, {
s: `\\a`,
b: false,
}, {
s: `\\\a`,
b: true,
}, {
s: `Hey there a`,
b: false,
}, {
s: `Hey there \a`,
b: true,
}, {
s: `Hey there \\a`,
b: false,
},
} {
assert.Equal(t, x.b, tg_md2html.IsEscaped([]rune(x.s), len([]rune(x.s[:strings.IndexRune(x.s, 'a')]))))
}
}
var stripMD = []struct {
in string
output string
}{
{
in: "this is text",
output: "this is text",
}, {
in: "_italic_",
output: "italic",
}, {
in: "*bold*",
output: "bold",
}, {
in: "`code`",
output: "code",
}, {
in: "[link](test.html)",
output: "link",
}, {
in: "_test * italics_",
output: "test * italics",
}, {
in: "i dont *even* _know_ `why *_ you would`",
output: "i dont even know why *_ you would",
},
}
func TestStripMD(t *testing.T) {
for _, x := range stripMD {
assert.Equal(t, x.output, tg_md2html.StripMD(x.in), "failed to strip all markdown")
}
}
var v string
var bs []tg_md2html.Button
var bs2 []tg_md2html.ButtonV2
func BenchmarkMD2HTML(b *testing.B) {
for i := 0; i < b.N; i++ {
v, bs = tg_md2html.MD2HTMLButtons(message)
}
}
var message = `
This is text.
There is *bold*
There is _italic_
There is a [url](example.com)
There is a button [button](buttonurl://example.com)
There is some more *bold*
And some _italic_
Good test?
`