-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathparse_test.go
100 lines (82 loc) · 2.24 KB
/
parse_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
package gcss
import (
"io/ioutil"
"strings"
"testing"
)
func Test_parse_topNewElementErr(t *testing.T) {
data, err := ioutil.ReadFile("./test/0011.gcss")
if err != nil {
t.Errorf("error occurred [error: %q]", err.Error())
return
}
elemc, errc := parse(strings.Split(formatLF(string(data)), lf))
select {
case <-elemc:
t.Error("error should be occurred")
return
case err := <-errc:
if expected, actual := "selector must not end with \"{\" [line: 1]", err.Error(); actual != expected {
t.Errorf("err should be %q [actual: %q]", expected, actual)
return
}
}
}
func Test_parse_AppendChildrenNewElementErr(t *testing.T) {
data, err := ioutil.ReadFile("./test/0012.gcss")
if err != nil {
t.Errorf("error occurred [error: %q]", err.Error())
return
}
elemc, errc := parse(strings.Split(formatLF(string(data)), lf))
select {
case <-elemc:
t.Error("error should be occurred")
return
case err := <-errc:
if expected, actual := "declaration must not end with \";\" [line: 2]", err.Error(); actual != expected {
t.Errorf("err should be %q [actual: %q]", expected, actual)
return
}
}
}
func Test_parse_appendChildrenErr(t *testing.T) {
data, err := ioutil.ReadFile("./test/0002.gcss")
if err != nil {
t.Errorf("error occurred [error: %q]", err.Error())
return
}
elemc, errc := parse(strings.Split(formatLF(string(data)), lf))
select {
case <-elemc:
t.Error("error should be occurred")
return
case err := <-errc:
if expected, actual := "indent is invalid [line: 5]", err.Error(); actual != expected {
t.Errorf("err should be %q [actual: %q]", expected, actual)
return
}
}
}
func Test_parse(t *testing.T) {
data, err := ioutil.ReadFile("./test/0001.gcss")
if err != nil {
t.Errorf("error occurred [error: %s]", err.Error())
return
}
elemc, errc := parse(strings.Split(formatLF(string(data)), lf))
select {
case <-elemc:
case err := <-errc:
t.Errorf("error occurred [error: %s]", err.Error())
return
}
}
func Test_formatLF(t *testing.T) {
s := cr + crlf + lf + "a" + crlf + lf + cr + "b" + lf + cr + crlf
expectedS := lf + lf + lf + "a" + lf + lf + lf + "b" + lf + lf + lf
if formatLF(s) != expectedS {
t.Errorf("formatLF(s) should be %s [actual: %s]", expectedS, formatLF(s))
return
}
}