-
Notifications
You must be signed in to change notification settings - Fork 16
/
plugin_test.go
304 lines (280 loc) · 9.58 KB
/
plugin_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
package main
import (
"strconv"
"testing"
c "github.com/Azareal/Gosora/common"
e "github.com/Azareal/Gosora/extend"
)
// go test -v
// TODO: Write a test for Hello World?
type MEPair struct {
Msg string
Expects string
}
type MEPairList struct {
Items []MEPair
}
func (l *MEPairList) Add(msg, expects string) {
l.Items = append(l.Items, MEPair{msg, expects})
}
func TestBBCodeRender(t *testing.T) {
//t.Skip()
if e := e.InitBbcode(c.Plugins["bbcode"]); e != nil {
t.Fatal(e)
}
var res string
l := &MEPairList{nil}
l.Add("", "")
l.Add(" ", " ")
l.Add(" ", " ")
l.Add(" ", " ")
l.Add("[b]", "<b></b>")
l.Add("[b][/b]", "<b></b>")
l.Add("hi", "hi")
l.Add("😀", "😀")
l.Add("[b]😀[/b]", "<b>😀</b>")
l.Add("[b]😀😀😀[/b]", "<b>😀😀😀</b>")
l.Add("[b]hi[/b]", "<b>hi</b>")
l.Add("[u]hi[/u]", "<u>hi</u>")
l.Add("[i]hi[/i]", "<i>hi</i>")
l.Add("[s]hi[/s]", "<s>hi</s>")
l.Add("[c]hi[/c]", "[c]hi[/c]")
l.Add("[h1]hi", "[h1]hi")
l.Add("[h1]hi[/h1]", "<h2>hi</h2>")
if !testing.Short() {
//l.Add("[b]hi[/i]", "[b]hi[/i]")
//l.Add("[/b]hi[b]", "[/b]hi[b]")
//l.Add("[/b]hi[/b]", "[/b]hi[/b]")
//l.Add("[b][b]hi[/b]", "<b>hi</b>")
//l.Add("[b][b]hi", "[b][b]hi")
//l.Add("[b][b][b]hi", "[b][b][b]hi")
//l.Add("[/b]hi", "[/b]hi")
}
l.Add("[spoiler]hi[/spoiler]", "<spoiler>hi</spoiler>")
l.Add("[code]hi[/code]", "<span class='codequotes'>hi</span>")
l.Add("[code][b]hi[/b][/code]", "<span class='codequotes'>[b]hi[/b]</span>")
l.Add("[code][b]hi[/code][/b]", "<span class='codequotes'>[b]hi</span>[/b]")
l.Add("[quote]hi[/quote]", "<blockquote>hi</blockquote>")
l.Add("[quote][b]hi[/b][/quote]", "<blockquote><b>hi</b></blockquote>")
l.Add("[quote][b]h[/b][/quote]", "<blockquote><b>h</b></blockquote>")
l.Add("[quote][b][/b][/quote]", "<blockquote><b></b></blockquote>")
l.Add("[url][/url]", "<a href=''></a>")
l.Add("[url]https://github.com/Azareal/Gosora[/url]", "<a href='https://github.com/Azareal/Gosora'>https://github.com/Azareal/Gosora</a>")
l.Add("[url]http://github.com/Azareal/Gosora[/url]", "<a href='http://github.com/Azareal/Gosora'>http://github.com/Azareal/Gosora</a>")
l.Add("[url]//github.com/Azareal/Gosora[/url]", "<a href='//github.com/Azareal/Gosora'>//github.com/Azareal/Gosora</a>")
l.Add("-你好-", "-你好-")
l.Add("[i]-你好-[/i]", "<i>-你好-</i>") // TODO: More of these Unicode tests? Emoji, Chinese, etc.?
t.Log("Testing BbcodeFullParse")
for _, item := range l.Items {
res = e.BbcodeFullParse(item.Msg)
if res != item.Expects {
t.Error("Testing string '" + item.Msg + "'")
t.Error("Bad output:", "'"+res+"'")
t.Error("Expected:", "'"+item.Expects+"'")
}
}
f := func(msg, expects string) {
t.Log("Testing string '" + msg + "'")
res := e.BbcodeFullParse(msg)
if res != expects {
t.Error("Bad output:", "'"+res+"'")
t.Error("Expected:", "'"+expects+"'")
}
}
f("[rand][/rand]", "<red>[Invalid Number]</red>[rand][/rand]")
f("[rand]-1[/rand]", "<red>[No Negative Numbers]</red>[rand]-1[/rand]")
f("[rand]-01[/rand]", "<red>[No Negative Numbers]</red>[rand]-01[/rand]")
f("[rand]NaN[/rand]", "<red>[Invalid Number]</red>[rand]NaN[/rand]")
f("[rand]Inf[/rand]", "<red>[Invalid Number]</red>[rand]Inf[/rand]")
f("[rand]+[/rand]", "<red>[Invalid Number]</red>[rand]+[/rand]")
f("[rand]1+1[/rand]", "<red>[Invalid Number]</red>[rand]1+1[/rand]")
msg := "[rand]1[/rand]"
t.Log("Testing string '" + msg + "'")
res = e.BbcodeFullParse(msg)
conv, err := strconv.Atoi(res)
if err != nil || (conv > 1 || conv < 0) {
t.Error("Bad output:", "'"+res+"'")
t.Error("Expected a number in the range 0-1")
}
msg = "[rand]0[/rand]"
t.Log("Testing string '" + msg + "'")
res = e.BbcodeFullParse(msg)
conv, err = strconv.Atoi(res)
if err != nil || conv != 0 {
t.Error("Bad output:", "'"+res+"'")
t.Error("Expected the number 0")
}
msg = "[rand]2147483647[/rand]" // Signed 32-bit MAX
t.Log("Testing string '" + msg + "'")
res = e.BbcodeFullParse(msg)
conv, err = strconv.Atoi(res)
if err != nil || (conv > 2147483647 || conv < 0) {
t.Error("Bad output:", "'"+res+"'")
t.Error("Expected a number between 0 and 2147483647")
}
msg = "[rand]9223372036854775807[/rand]" // Signed 64-bit MAX
t.Log("Testing string '" + msg + "'")
res = e.BbcodeFullParse(msg)
conv, err = strconv.Atoi(res)
if err != nil || (conv > 9223372036854775807 || conv < 0) {
t.Error("Bad output:", "'"+res+"'")
t.Error("Expected a number between 0 and 9223372036854775807")
}
// Note: conv is commented out in these two, as these numbers overflow int
msg = "[rand]18446744073709551615[/rand]" // Unsigned 64-bit MAX
t.Log("Testing string '" + msg + "'")
res = e.BbcodeFullParse(msg)
_, err = strconv.Atoi(res)
if err != nil && res != "<red>[Invalid Number]</red>[rand]18446744073709551615[/rand]" {
t.Error("Bad output:", "'"+res+"'")
t.Error("Expected a number between 0 and 18446744073709551615")
}
msg = "[rand]170141183460469231731687303715884105727[/rand]" // Signed 128-bit MAX
t.Log("Testing string '" + msg + "'")
res = e.BbcodeFullParse(msg)
_, err = strconv.Atoi(res)
if err != nil && res != "<red>[Invalid Number]</red>[rand]170141183460469231731687303715884105727[/rand]" {
t.Error("Bad output:", "'"+res+"'")
t.Error("Expected a number between 0 and 170141183460469231731687303715884105727")
}
/*t.Log("Testing bbcode_regex_parse")
for _, item := range l.Items {
t.Log("Testing string '" + item.Msg + "'")
res = bbcodeRegexParse(item.Msg)
if res != item.Expects {
t.Error("Bad output:", "'"+res+"'")
t.Error("Expected:", item.Expects)
}
}*/
l = &MEPairList{nil}
l.Add("", "")
l.Add("ddd", "ddd")
l.Add("[b][/b]", "")
l.Add("[b]ddd[/b]", "ddd")
l.Add("ddd[b]ddd[/b]ddd", "ddddddddd")
l.Add("ddd\n[b]ddd[/b]\nddd", "ddd\nddd\nddd")
t.Log("Testing BbcodeStripTags")
for _, item := range l.Items {
res = e.BbcodeStripTags(item.Msg)
if res != item.Expects {
t.Error("Testing string '" + item.Msg + "'")
t.Error("Bad output:", "'"+res+"'")
t.Error("Expected:", "'"+item.Expects+"'")
}
}
}
func TestMarkdownRender(t *testing.T) {
//t.Skip()
if err := e.InitMarkdown(c.Plugins["markdown"]); err != nil {
t.Fatal(err)
}
l := &MEPairList{nil}
l2 := &MEPairList{nil}
// TODO: Fix more of these odd cases
l.Add("", "")
l.Add(" ", " ")
l.Add(" ", " ")
l.Add(" ", " ")
l.Add("\t", "\t")
l.Add("\n", "\n")
l.Add("*", "*")
l.Add("`", "`")
//l.Add("**", "<i></i>")
l.Add("h", "h")
l.Add("hi", "hi")
l.Add("**h**", "<b>h</b>")
l.Add("**hi**", "<b>hi</b>")
l.Add("_h_", "<u>h</u>")
l.Add("_hi_", "<u>hi</u>")
l.Add(" _hi_", " <u>hi</u>")
l.Add("h_hi_h", "h_hi_h")
l.Add("h _hi_ h", "h <u>hi</u> h")
l.Add("h _hi_h", "h <u>hi</u>h")
l.Add("*h*", "<i>h</i>")
l.Add("*hi*", "<i>hi</i>")
l.Add("~h~", "<s>h</s>")
l.Add("~hi~", "<s>hi</s>")
l.Add("`hi`", "<blockquote>hi</blockquote>")
// TODO: Hide the backslash after escaping the item
// TODO: Doesn't behave consistently with d in-front of it
l2.Add("\\`hi`", "\\`hi`")
l2.Add("#", "#")
l2.Add("#h", "<h2>h</h2>")
l2.Add("#hi", "<h2>hi</h2>")
l2.Add("# hi", "<h2>hi</h2>")
l2.Add("# hi", "<h2>hi</h2>")
l.Add("\n#", "\n#")
l.Add("\n#h", "\n<h2>h</h2>")
l.Add("\n#hi", "\n<h2>hi</h2>")
l.Add("\n#h\n", "\n<h2>h</h2>")
l.Add("\n#hi\n", "\n<h2>hi</h2>")
l.Add("*hi**", "<i>hi</i>*")
l.Add("**hi***", "<b>hi</b>*")
//l.Add("**hi*", "*<i>hi</i>")
l.Add("***hi***", "<b><i>hi</i></b>")
l.Add("***h***", "<b><i>h</i></b>")
l.Add("\\***h**\\*", "*<b>h</b>*")
l.Add("\\*\\**h*\\*\\*", "**<i>h</i>**")
l.Add("\\*hi\\*", "*hi*")
l.Add("d\\*hi\\*", "d*hi*")
l.Add("\\*hi\\*d", "*hi*d")
l.Add("d\\*hi\\*d", "d*hi*d")
l.Add("\\", "\\")
l.Add("\\\\", "\\\\")
l.Add("\\d", "\\d")
l.Add("\\\\d", "\\\\d")
l.Add("\\\\\\d", "\\\\\\d")
l.Add("d\\", "d\\")
l.Add("\\d\\", "\\d\\")
l.Add("*_hi_*", "<i><u>hi</u></i>")
l.Add("*~hi~*", "<i><s>hi</s></i>")
//l.Add("~*hi*~", "<s><i>hi</i></s>")
//l.Add("~ *hi* ~", "<s> <i>hi</i> </s>")
l.Add("_~hi~_", "<u><s>hi</s></u>")
l.Add("***~hi~***", "<b><i><s>hi</s></i></b>")
l.Add("**", "**")
l.Add("***", "***")
l.Add("****", "****")
l.Add("*****", "*****")
l.Add("******", "******")
l.Add("*******", "*******")
l.Add("~~", "~~")
l.Add("~~~", "~~~")
l.Add("~~~~", "~~~~")
l.Add("~~~~~", "~~~~~")
l.Add("|hi|", "<spoiler>hi</spoiler>")
l.Add("__", "__")
l.Add("___", "___")
l.Add("_ _", "<u> </u>")
l.Add("* *", "<i> </i>")
l.Add("** **", "<b> </b>")
l.Add("*** ***", "<b><i> </i></b>")
l.Add("-你好-", "-你好-")
l.Add("*-你好-*", "<i>-你好-</i>") // TODO: More of these Unicode tests? Emoji, Chinese, etc.?
for _, item := range l.Items {
if res := e.MarkdownParse(item.Msg); res != item.Expects {
t.Error("Testing string '" + item.Msg + "'")
t.Error("Bad output:", "'"+res+"'")
//t.Error("Ouput in bytes:", []byte(res))
t.Error("Expected:", "'"+item.Expects+"'")
}
}
for _, item := range l2.Items {
if res := e.MarkdownParse(item.Msg); res != item.Expects {
t.Error("Testing string '" + item.Msg + "'")
t.Error("Bad output:", "'"+res+"'")
//t.Error("Ouput in bytes:", []byte(res))
t.Error("Expected:", "'"+item.Expects+"'")
}
}
/*for _, item := range l.Items {
if res := e.MarkdownParse("d" + item.Msg); res != "d"+item.Expects {
t.Error("Testing string 'd" + item.Msg + "'")
t.Error("Bad output:", "'"+res+"'")
//t.Error("Ouput in bytes:", []byte(res))
t.Error("Expected:", "'d"+item.Expects+"'")
}
}*/
// TODO: Write suffix tests and double string tests
// TODO: Write similar prefix, suffix, and double string tests for plugin_bbcode. Ditto for the outer parser along with suitable tests for that like making sure the URL parser and media embedder works.
}