-
-
Notifications
You must be signed in to change notification settings - Fork 135
/
Layout_test.go
111 lines (94 loc) · 1.94 KB
/
Layout_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
package giu
import (
"testing"
"github.com/stretchr/testify/assert"
)
type testwidget struct {
counter *int
}
func (w *testwidget) Build() {
if w.counter == nil {
return
}
*w.counter++
}
type splitablewidget struct {
w1, w2 *testwidget
}
func (w *splitablewidget) Build() {
w.w1.Build()
w.w2.Build()
}
func (w *splitablewidget) Range(r func(w Widget)) {
r(w.w1)
r(w.w2)
}
func Test_Layout_Range(t *testing.T) {
tests := []struct {
name string
expectedTestWidgetsCount int
layout Layout
}{
{"standard layout", 3, Layout{
&testwidget{},
&testwidget{},
&testwidget{},
}},
{"layout with splitable widgets", 4, Layout{
&testwidget{},
&splitablewidget{&testwidget{}, &testwidget{}},
&testwidget{},
}},
}
for _, test := range tests {
t.Run(test.name, func(tt *testing.T) {
counter := 0
test.layout.Range(func(w Widget) {
if _, isTestwidget := w.(*testwidget); isTestwidget {
counter++
}
})
assert.Equal(tt, test.expectedTestWidgetsCount, counter, "Layout wasn't ranged correctly")
})
}
}
func Test_Layout_Build(t *testing.T) {
tests := []struct {
name string
expectedNumTestWidgetsBuilt int
layout Layout
}{
{"standard layout", 2, Layout{
&testwidget{},
&testwidget{},
}},
{"layout with nil widgets", 2, Layout{
&testwidget{},
nil,
&testwidget{},
}},
{"layout with nested layouts", 5, Layout{
&testwidget{},
Layout{
&testwidget{},
&testwidget{},
Layout{
&testwidget{},
},
},
&testwidget{},
}},
}
for _, test := range tests {
t.Run(test.name, func(tt *testing.T) {
counter := 0
test.layout.Range(func(w Widget) {
if tw, isTestwidget := w.(*testwidget); isTestwidget {
tw.counter = &counter
}
})
test.layout.Build()
assert.Equal(tt, test.expectedNumTestWidgetsBuilt, counter, "layout wasn't built correctly")
})
}
}