-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlexer_test.go
125 lines (113 loc) · 3.1 KB
/
lexer_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
package css
import (
"testing"
"fmt"
)
func TestLexProp(t *testing.T) {
cases := []struct {
input string
item item
}{
{"1234", item{itemError, ""}},
{"", item{itemEOF, ""}},
{":", item{itemError, ""}},
{"abc", item{itemProp, "abc"}},
{"abc:", item{itemProp, "abc"}},
{"width : 50px;", item{itemProp, "width"}},
}
for i, c := range cases {
j, c1 := fmt.Sprintf("%d", i), c
t.Run(j, func(t *testing.T) {
t.Parallel()
l := lex(c1.input)
l.state = lexProp
nextItem := l.nextItem()
if nextItem.typ != c1.item.typ {
t.Fatalf("unexpected type of next item. Expected %v but got %v", c1.item.typ, nextItem.typ)
}
if nextItem.typ == itemError {
return
}
if nextItem.val != c1.item.val {
t.Fatalf("unexpected value of next item. Expected %v but got %v", c1.item.val, nextItem.val)
}
})
}
}
func TestLexDelimiter(t *testing.T) {
cases := []struct {
input string
item item
}{
{"", item{itemError, ""}},
{" ", item{itemError, ""}},
{" ", item{itemError, ""}},
{"\t", item{itemError, "abc"}},
{" \t", item{itemError, "abc"}},
{"\t ", item{itemError, "abc"}},
{"\n", item{itemError, "abc"}},
{"\n ", item{itemError, "abc"}},
{" 5px", item{itemError, ""}},
{" :\t\t 5px", item{itemValue, "5px"}},
{" :\t\t \"5px\"", item{itemValue, `"5px"`}},
{" :\t\t '5px'", item{itemValue, `'5px'`}},
}
for i, c := range cases {
j, c1 := fmt.Sprintf("%d", i), c
t.Run(j, func(t *testing.T) {
t.Parallel()
l := lex(c1.input)
l.state = lexDelimiter
nextItem := l.nextItem()
if nextItem.typ != c1.item.typ {
t.Fatalf("unexpected type of next item. Expected %v but got %v", c1.item.typ, nextItem.typ)
}
if nextItem.typ == itemError {
return
}
if nextItem.val != c1.item.val {
t.Fatalf("unexpected value of next item. Expected %v but got %v", c1.item.val, nextItem.val)
}
})
}
}
func TestLexValue(t *testing.T) {
cases := []struct {
input string
item item
}{
{"", item{itemError, ""}},
{" ", item{itemError, ""}},
{" ", item{itemError, ""}},
{"\t", item{itemError, ""}},
{" \t", item{itemError, ""}},
{"\t ", item{itemError, ""}},
{"\n", item{itemError, ""}},
{"\n ", item{itemError, ""}},
{" 5px", item{itemValue, "5px"}},
{" \t\t 5px", item{itemValue, "5px"}},
{" \t\t \"5px\";", item{itemValue, `"5px"`}},
{` 'url(\'http://img.com\')`, item{itemError, ""}},
{` "url('http://img.com')`, item{itemError, ""}},
{` 'url(\'http://img.com\')'`, item{itemValue, `'url(\'http://img.com\')'`}},
{` "url(\"http://img.com\")"`, item{itemValue, `"url(\"http://img.com\")"`}},
}
for i, c := range cases {
j, c1 := fmt.Sprintf("%d", i), c
t.Run(j, func(t *testing.T) {
t.Parallel()
l := lex(c1.input)
l.state = lexValue
nextItem := l.nextItem()
if nextItem.typ != c1.item.typ {
t.Fatalf("unexpected type of next item. Expected %v but got %v", c1.item.typ, nextItem.typ)
}
if nextItem.typ == itemError {
return
}
if nextItem.val != c1.item.val {
t.Fatalf("unexpected value of next item. Expected %v but got %v", c1.item.val, nextItem.val)
}
})
}
}