-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgenerator_test.go
422 lines (373 loc) · 12.2 KB
/
generator_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
package gold
import (
"html/template"
"strings"
"testing"
)
func TestGeneratorParseFile(t *testing.T) {
// When cashe is true and a cached template exists.
tmplt := &template.Template{}
g := &Generator{cache: true, templates: map[string]*template.Template{"path": tmplt}}
tpl, err := g.ParseFile("path")
if err != nil {
t.Errorf("An error(%s) occurred.", err.Error())
}
if tpl != tmplt {
t.Errorf("Returned value is invalid.")
}
// When g.Parse returns an error.
g = &Generator{}
_, err = g.ParseFile("./test/TestGeneratorParseFile/001.gold")
expectedErrMsg := "the indent of the line 2 is invalid. [template: ./test/TestGeneratorParseFile/001.gold][lineno: 2][line: head]"
if err == nil || err.Error() != expectedErrMsg {
t.Errorf("Error(%s) should be returned.", expectedErrMsg)
}
// When gtpl.Html() returns an error.
g = &Generator{}
_, err = g.ParseFile("./test/TestGeneratorParseFile/002.gold")
expectedErrMsg = "The block element does not have a name. (line no: 1)"
if err == nil || err.Error() != expectedErrMsg {
t.Errorf("Error(%s) should be returned.", expectedErrMsg)
}
// When teplate.Parse() returns an error.
g = &Generator{}
_, err = g.ParseFile("./test/TestGeneratorParseFile/003.gold")
expectedErrMsg = "template: ./test/TestGeneratorParseFile/003.gold:1: missing value for command"
if err == nil || err.Error() != expectedErrMsg {
t.Errorf("Error(%s) should be returned.", expectedErrMsg)
}
// When cache is true and g.ParseFile returns tpl.
g = NewGenerator(true)
_, err = g.ParseFile("./test/TestGeneratorParseFile/004.gold")
if err != nil {
t.Errorf("An error(%s) occurred.", err.Error())
}
}
func TestGeneratorParseString(t *testing.T) {
g := &Generator{}
parent := `
doctype html
html
head
title Gold
body
block content
footer
block footer
`
child := `
extends parent
block content
#container
| Hello Gold
block footer
.footer
| Copyright XXX
include inc
`
inc := `
p This is an included line.
`
stringTemplates := map[string]string{"parent": parent, "child": child, "inc": inc}
_, err := g.ParseString(stringTemplates, "child")
if err != nil {
t.Errorf("An error(%s) occurred.", err.Error())
}
}
func TestParse(t *testing.T) {
// When cache is true and Parse returns a cached template.
gtmplt := &Template{}
g := NewGenerator(true)
g.gtemplates = map[string]*Template{"path": gtmplt}
gtpl, err := g.parse("path", nil, false)
if err != nil {
t.Errorf("An error(%s) occurred.", err.Error())
}
if gtmplt != gtpl {
t.Errorf("Returned value is invalid.")
}
// When ioutil.ReadFile returns an error.
gtmplt = &Template{}
g = NewGenerator(false)
gtpl, err = g.parse("./somepath/somefile", nil, true)
expectedErrMsg := "open ./somepath/somefile: no such file or directory"
if err == nil || err.Error() != expectedErrMsg {
t.Errorf("Error(%s) should be returned.", expectedErrMsg)
}
// When a template includes an empty line.
g = NewGenerator(false)
_, err = g.ParseFile("./test/TestGeneratorParseFile/005.gold")
if err != nil {
t.Errorf("An error(%s) occurred.", err.Error())
}
// When a template includes a "extends" and returns an error.
g = NewGenerator(false)
_, err = g.ParseFile("./test/TestGeneratorParseFile/006.gold")
expectedErrMsg = "the line tokens length is invalid. (expected: 2, actual: 1, line no: 1, template: ./test/TestGeneratorParseFile/006.gold, line: extends)"
if err == nil || err.Error() != expectedErrMsg {
t.Errorf("Error(%s) should be returned.", expectedErrMsg)
}
// When a template includes a "extends" and returns an error while parsing a super template.
g = NewGenerator(false)
_, err = g.ParseFile("./test/TestGeneratorParseFile/007.gold")
expectedErrMsg = "open ./test/TestGeneratorParseFile/./somepath/somefile.gold: no such file or directory"
if err == nil || err.Error() != expectedErrMsg {
t.Errorf("Error(%s) should be returned.", expectedErrMsg)
}
// When a template includes a "extends" and returns an error while parsing a block line.
g = NewGenerator(false)
_, err = g.ParseFile("./test/TestGeneratorParseFile/008.gold")
expectedErrMsg = "the line tokens length is invalid. (expected: 2, actual: 1, line no: 3, template: ./test/TestGeneratorParseFile/008.gold, line: block)"
if err == nil || err.Error() != expectedErrMsg {
t.Errorf("Error(%s) should be returned.", expectedErrMsg)
}
// When a template includes a "extends" and returns an error while appending a child.
g = NewGenerator(false)
_, err = g.ParseFile("./test/TestGeneratorParseFile/009.gold")
expectedErrMsg = `the indent of the line 4 is invalid. [template: ./test/TestGeneratorParseFile/009.gold][lineno: 4][line: div#content.content style="font-size: 1rem; font-weight: bold;"]`
if err == nil || err.Error() != expectedErrMsg {
t.Errorf("Error(%s) should be returned.", expectedErrMsg)
}
// When NewElement returns an error.
g = NewGenerator(false)
_, err = g.ParseFile("./test/TestGeneratorParseFile/010.gold")
expectedErrMsg = "The number of the element id has to be one. (line no: 1)"
if err == nil || err.Error() != expectedErrMsg {
t.Errorf("Error(%s) should be returned.", expectedErrMsg)
}
// When NewElement returns an error.
g = NewGenerator(false)
_, err = g.ParseFile("./test/TestGeneratorParseFile/011.gold")
expectedErrMsg = "The number of the element id has to be one. (line no: 4)"
if err == nil || err.Error() != expectedErrMsg {
t.Errorf("Error(%s) should be returned.", expectedErrMsg)
}
// When cache is true
g = NewGenerator(true)
_, err = g.ParseFile("./test/TestGeneratorParseFile/012.gold")
if err != nil {
t.Errorf("An error(%s) occurred.", err.Error())
}
}
func TestNewGenerator(t *testing.T) {
// When cache is true.
g := NewGenerator(true)
if g.cache != true {
t.Errorf("g.cache should be true.")
}
// When cache is false.
g = NewGenerator(false)
if g.cache != false {
t.Errorf("g.cache should be false.")
}
}
func TestFormatLf(t *testing.T) {
if formatLf("a\n\r\r\n") != "a\n\n\n" {
t.Errorf("Return value is invalid.")
}
}
func TestIndent(t *testing.T) {
// When a string includes unicodeTab.
if indent(string(unicodeTab)+"a") != 1 {
t.Errorf("Return value is invalid.")
}
// When a string includes double unicodeSpaces.
if indent(string(unicodeSpace)+string(unicodeSpace)+"a") != 1 {
t.Errorf("Return value is invalid.")
}
// When a string includes no unicodeTabs and no unicodeSpaces.
if indent("a") != 0 {
t.Errorf("Return value is invalid.")
}
}
func TestEmpty(t *testing.T) {
// When the stirng is "".
if empty("") != true {
t.Errorf("Return value is invalid.")
}
// When the stirng is unicodeTab.
if empty(string(unicodeTab)) != true {
t.Errorf("Return value is invalid.")
}
// When the stirng is unicodeSpace.
if empty(string(unicodeSpace)) != true {
t.Errorf("Return value is invalid.")
}
}
func TestTopElement(t *testing.T) {
// When the string is a top element.
if topElement("a") != true {
t.Errorf("Return value is invalid.")
}
// When the string is not a top element.
if topElement(" a") != false {
t.Errorf("Return value is invalid.")
}
}
func TestAppendChildren(t *testing.T) {
g := NewGenerator(false)
tpl := NewTemplate("/", g)
// When line is empty.
i := 0
l := 1
err := appendChildren(nil, []string{""}, &i, &l, 0, false, "", nil)
if err != nil {
t.Errorf("An error(%s) occurred.", err.Error())
}
// parentRawContent is true and indent < parentIndent+1
i = 0
l = 1
err = appendChildren(nil, []string{"a"}, &i, &l, 0, true, "", nil)
if err != nil {
t.Errorf("An error(%s) occurred.", err.Error())
}
// parentRawContent is true and indent >= parentIndent+1 and appendChild returns an error.
i = 0
l = 1
e, err := NewElement("", 0, 0, nil, tpl, nil)
if err != nil {
t.Errorf("An error(%s) occurred.", err.Error())
}
err = appendChildren(e, []string{" div#id1#id2"}, &i, &l, 0, true, "", nil)
expectedErrMsg := "The number of the element id has to be one. (line no: 1)"
if err == nil || err.Error() != expectedErrMsg {
t.Errorf("Error(%s) should be returned.", expectedErrMsg)
}
// parentType is TypeBlock and indent < parentIndent+1
i = 0
l = 1
err = appendChildren(nil, []string{"a"}, &i, &l, 0, false, TypeBlock, nil)
if err != nil {
t.Errorf("An error(%s) occurred.", err.Error())
}
// parentType is TypeBlock and indent >= parentIndent+1
i = 0
l = 1
err = appendChildren(e, []string{" a"}, &i, &l, 0, false, TypeBlock, nil)
if err != nil {
t.Errorf("An error(%s) occurred.", err.Error())
}
// parentType is TypeTag and indent < parentIndent+1
i = 0
l = 1
err = appendChildren(nil, []string{"a"}, &i, &l, 0, false, TypeTag, nil)
if err != nil {
t.Errorf("An error(%s) occurred.", err.Error())
}
// parentType is TypeTag and indent == parentIndent+1 and appendChild returns an error.
e, err = NewElement("", 0, 0, nil, tpl, nil)
if err != nil {
t.Errorf("An error(%s) occurred.", err.Error())
}
i = 0
l = 1
err = appendChildren(e, []string{" div#id1#id2"}, &i, &l, 0, false, TypeTag, nil)
expectedErrMsg = "The number of the element id has to be one. (line no: 1)"
if err == nil || err.Error() != expectedErrMsg {
t.Errorf("Error(%s) should be returned.", expectedErrMsg)
}
// parentType is TypeTag and indent > parentIndent+1.
e, err = NewElement("", 0, 0, nil, tpl, nil)
if err != nil {
t.Errorf("An error(%s) occurred.", err.Error())
}
i = 0
l = 1
g = NewGenerator(false)
tpl = NewTemplate("/tmp/tmp.gold", g)
err = appendChildren(e, []string{" div"}, &i, &l, 0, false, TypeTag, tpl)
expectedErrMsg = "the indent of the line 1 is invalid. [template: /tmp/tmp.gold][lineno: 1][line: div]"
if err == nil || err.Error() != expectedErrMsg {
t.Errorf("Error(%s) should be returned.", expectedErrMsg)
}
// parentType is TypeTag and indent == parentIndent+1 and appendChild returns no errors.
e, err = NewElement("", 0, 0, nil, tpl, nil)
if err != nil {
t.Errorf("An error(%s) occurred.", err.Error())
}
i = 0
l = 1
err = appendChildren(e, []string{" div"}, &i, &l, 0, false, TypeTag, nil)
if err != nil {
t.Errorf("An error(%s) occurred.", err.Error())
}
}
func TestAppendChild(t *testing.T) {
g := NewGenerator(false)
tpl := NewTemplate("/", g)
// When parent is *Block.
block := &Block{Template: tpl}
i := 0
l := 1
line := "div"
indent := 0
err := appendChild(block, &line, &indent, []string{"div"}, &i, &l, nil)
if err != nil {
t.Errorf("An error(%s) occurred.", err.Error())
}
// When parent is *Element.
e, err := NewElement("", 0, 0, nil, tpl, nil)
if err != nil {
t.Errorf("An error(%s) occurred.", err.Error())
}
i = 0
l = 1
line = "div"
indent = 0
err = appendChild(e, &line, &indent, []string{"div"}, &i, &l, nil)
if err != nil {
t.Errorf("An error(%s) occurred.", err.Error())
}
// When parent is *Element and NewElement returns an error.
e, err = NewElement("", 0, 0, nil, tpl, nil)
if err != nil {
t.Errorf("An error(%s) occurred.", err.Error())
}
i = 0
l = 1
line = "div#id1#id2"
indent = 0
err = appendChild(e, &line, &indent, []string{"div#id1#id2"}, &i, &l, nil)
expectedErrMsg := "The number of the element id has to be one. (line no: 1)"
if err == nil || err.Error() != expectedErrMsg {
t.Errorf("Error(%s) should be returned.", expectedErrMsg)
}
// When parent is *Element and appendChildren returns an error.
e, err = NewElement("", 0, 0, nil, tpl, nil)
if err != nil {
t.Errorf("An error(%s) occurred.", err.Error())
}
i = 0
l = 2
line = "div"
indent = 0
err = appendChild(e, &line, &indent, []string{"div", " div#id3#id4"}, &i, &l, nil)
expectedErrMsg = "The number of the element id has to be one. (line no: 2)"
if err == nil || err.Error() != expectedErrMsg {
t.Errorf("Error(%s) should be returned.", expectedErrMsg)
}
}
func TestIsExtends(t *testing.T) {
// When the line has "extends".
if isExtends("extends aaa") != true {
t.Errorf("Return value is invalid.")
}
// When the line does not have "extends".
if isExtends("aaa") != false {
t.Errorf("Return value is invalid.")
}
}
func TestIsBlock(t *testing.T) {
// When the line has "block".
if isBlock("block aaa") != true {
t.Errorf("Return value is invalid.")
}
// When the line does not have "block".
if isBlock("aaa") != false {
t.Errorf("Return value is invalid.")
}
}
func TestGeneratorSetHelpers(t *testing.T) {
g := NewGenerator(false)
g.SetHelpers(template.FuncMap{"title": strings.Title})
}