forked from marcusolsson/tui-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
label_test.go
106 lines (97 loc) · 1.76 KB
/
label_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
package tui
import (
"image"
"testing"
)
var labelTests = []struct {
test string
setup func() *Label
size image.Point
sizeHint image.Point
}{
{
test: "Empty",
setup: func() *Label {
return NewLabel("")
},
size: image.Point{100, 100},
sizeHint: image.Point{0, 1},
},
{
test: "Single word",
setup: func() *Label {
return NewLabel("test")
},
size: image.Point{100, 100},
sizeHint: image.Point{4, 1},
},
{
test: "Wide word",
setup: func() *Label {
return NewLabel("あäa")
},
size: image.Point{100, 100},
sizeHint: image.Point{4, 1},
},
}
func TestLabel_Size(t *testing.T) {
for _, tt := range labelTests {
tt := tt
t.Run(tt.test, func(t *testing.T) {
t.Parallel()
l := tt.setup()
l.Resize(image.Point{100, 100})
if got := l.Size(); got != tt.size {
t.Errorf("l.Size() = %s; want = %s", got, tt.size)
}
if got := l.SizeHint(); got != tt.sizeHint {
t.Errorf("l.SizeHint() = %s; want = %s", got, tt.sizeHint)
}
})
}
}
var drawLabelTests = []struct {
test string
setup func() *Label
want string
}{
{
test: "Simple label",
setup: func() *Label {
return NewLabel("test")
},
want: `
test......
..........
..........
..........
..........
`,
},
{
test: "Word wrap",
setup: func() *Label {
l := NewLabel("this will wrap")
l.SetWordWrap(true)
l.SetSizePolicy(Expanding, Expanding)
return l
},
want: `
this will.
wrap......
..........
..........
..........
`,
},
}
func TestLabel_Draw(t *testing.T) {
for _, tt := range drawLabelTests {
surface := newTestSurface(10, 5)
painter := NewPainter(surface, NewTheme())
painter.Repaint(tt.setup())
if surface.String() != tt.want {
t.Errorf("got = \n%s\n\nwant = \n%s", surface.String(), tt.want)
}
}
}