-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle_test.go
287 lines (246 loc) · 5.84 KB
/
style_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
package html5tag
import (
"fmt"
"testing"
)
func ExampleStyle_Copy() {
s := Style{"color": "green", "size": "9"}
s2 := s.Copy()
fmt.Print(s2)
//Output: color:green;size:9
}
func ExampleStyle_Len() {
s := Style{"color": "green", "size": "9"}
fmt.Print(s.Len())
//Output: 2
}
func ExampleStyle_SetString() {
s := NewStyle()
_, _ = s.SetString("height: 9em; width: 100%; position:absolute")
fmt.Print(s)
//Output: height:9em;position:absolute;width:100%
}
func ExampleStyle_Set_a() {
s := NewStyle()
s.Set("height", "9")
fmt.Print(s)
//Output: height:9px
}
func ExampleStyle_Set_b() {
s := NewStyle()
_, _ = s.SetString("height:9px")
s.Set("height", "+ 10")
fmt.Print(s)
//Output: height:19px
}
func ExampleStyle_Get() {
s := NewStyle()
_, _ = s.SetString("height: 9em; width: 100%; position:absolute")
fmt.Print(s.Get("width"))
//Output: 100%
}
func ExampleStyle_Remove() {
s := NewStyle()
_, _ = s.SetString("height: 9em; width: 100%; position:absolute")
s.Remove("position")
fmt.Print(s)
//Output: height:9em;width:100%
}
func ExampleStyle_RemoveAll() {
s := NewStyle()
_, _ = s.SetString("height: 9em; width: 100%; position:absolute")
s.RemoveAll()
fmt.Print(s)
//Output:
}
func ExampleStyle_Has() {
s := NewStyle()
_, _ = s.SetString("height: 9em; width: 100%; position:absolute")
fmt.Print(s.Has("width"), s.Has("display"))
//Output:true false
}
func TestStyleSet(t *testing.T) {
s := NewStyle()
changed, err := s.SetChanged("height", "4")
if !changed {
t.Error("Expected a change")
}
if err != nil {
t.Error(err)
}
s.RemoveAll()
if s.Has("height") {
t.Error("Expected no height")
}
s.Set("height", "4")
changed, err = s.SetString("height: 3; width: 5")
if !changed {
t.Error("Expected a change")
}
if err != nil {
t.Error(err)
}
if !changed {
t.Error("Expected a change")
}
if "5px" != s.Get("width") {
t.Errorf("Wrong width. Expected 5px, got %s.", s.Get("width"))
}
if "3px" != s.Get("height") {
t.Errorf("Wrong height. Expected 5px, got %s.", s.Get("height"))
}
// test error
changed, err = s.SetString("height of: 3; width: 4")
if changed {
t.Error("Expected no change")
}
if err == nil {
t.Error("Expected an error")
}
}
func TestStyleLengths(t *testing.T) {
s := NewStyle()
s.Set("height", "4px")
changed, err := s.SetChanged("height", "4")
if changed {
t.Error("Expected no change")
}
if err != nil {
t.Error(err)
}
changed, err = s.SetChanged("height", "4em")
if !changed {
t.Error("Expected change")
}
if err != nil {
t.Error(err)
}
changed, err = s.SetChanged("width", "0")
if !changed {
t.Error("Expected change")
}
if err != nil {
t.Error(err)
}
if w := s.Get("width"); w != "0" {
t.Error("Expected a 0")
}
changed, err = s.SetChanged("width", "1")
if !changed {
t.Error("Expected change")
}
if err != nil {
t.Error(err)
}
if w := s.Get("width"); w != "1px" {
t.Error("Expected a 1px")
}
// test a non-length numeric
changed, err = s.SetChanged("volume", "4")
if !changed {
t.Error("Expected change")
}
if err != nil {
t.Error(err)
}
if w := s.Get("volume"); w != "4" {
t.Error("Expected a 4")
}
}
func TestStyleMath(t *testing.T) {
s := NewStyle()
s.Set("height", "4em")
s.Set("height", "* 2")
if h := s.Get("height"); h != "8em" {
t.Error("Expected 8em, got " + h)
}
s.Set("height", "2em 9px")
s.Set("height", "/ 2")
if h := s.Get("height"); h != "1em 4.5px" {
t.Error("Expected 1em 4.5px, got " + h)
}
s.Set("width", "7.6in")
s.Set("width", "+ 2")
if h := s.Get("width"); h != "9.6in" {
t.Error("Expected 9.6in, got " + h)
}
s.Set("width", "1.6in")
s.Set("width", "- 2")
if h := s.Get("width"); h != "-0.4in" { // this test in particular can produce a rounding error if not handled carefully
t.Error("Expected -0.4in, got " + h)
}
}
func TestStyle(t *testing.T) {
s := NewStyle()
s.Set("position", "9")
if a := s.Get("position"); a != "9px" {
t.Error("Style test failed: " + a)
}
}
func TestNilStyle(t *testing.T) {
var s Style
if s.Len() != 0 {
t.Error("Nil style should have zero length")
}
if s.Has("a") {
t.Error("Nil style should be empty")
}
}
func TestStyle_mathOp(t *testing.T) {
c := Style{"height": "10", "margin": "", "width": "20en"}
type args struct {
attribute string
op string
val string
}
tests := []struct {
name string
s Style
args args
wantChanged bool
wantErr bool
wantString string
}{
{"Test empty", c.Copy(), args{"margin", "+", "1"}, true, false, "height:10;margin:1;width:20en"},
{"Test float error", c.Copy(), args{"margin", "+", "1a"}, false, true, "height:10;margin:;width:20en"},
{"Test mul no unit", c.Copy(), args{"height", "*", "2"}, true, false, "height:20;margin:;width:20en"},
{"Test div w/ unit", c.Copy(), args{"width", "/", "2"}, true, false, "height:10;margin:;width:10en"},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
gotChanged, err := tt.s.mathOp(tt.args.attribute, tt.args.op, tt.args.val)
if (err != nil) != tt.wantErr {
t.Errorf("mathOp() error = %v, wantErr %v", err, tt.wantErr)
return
}
if gotChanged != tt.wantChanged {
t.Errorf("mathOp() gotChanged = %v, want %v", gotChanged, tt.wantChanged)
}
if tt.wantString != fmt.Sprint(tt.s) {
t.Errorf("mathOp() got = %v, want %v", fmt.Sprint(tt.s), tt.wantString)
}
})
}
}
func TestStyleString(t *testing.T) {
tests := []struct {
name string
i interface{}
want string
}{
{"int", int(5), "5px"},
{"float", float32(5.1), "5.1px"},
{"double", float64(5.2), "5.2px"},
{"string", "9em", "9em"},
{"string2", "9", "9"},
{"Stringer", NewStyle(), ""},
{"default", []string{"a", "b"}, "[a b]"},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := StyleString(tt.i); got != tt.want {
t.Errorf("StyleString() = %v, want %v", got, tt.want)
}
})
}
}