This repository has been archived by the owner on Oct 13, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 124
/
label_test.go
122 lines (113 loc) · 2.05 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
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},
},
{
test: "Unicode only",
setup: func() *Label {
return NewLabel("∅")
},
size: image.Point{100, 100},
sizeHint: image.Point{1, 1},
},
{
test: "Tall string",
setup: func() *Label {
return NewLabel("Null set: ∅")
},
size: image.Point{100, 100},
sizeHint: image.Point{11, 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 diff := surfaceEquals(surface, tt.want); diff != "" {
t.Error(diff)
}
}
}