forked from marcusolsson/tui-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbutton_test.go
More file actions
55 lines (44 loc) · 887 Bytes
/
button_test.go
File metadata and controls
55 lines (44 loc) · 887 Bytes
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
package tui
import (
"testing"
)
func TestButton_OnActivated(t *testing.T) {
btn := NewButton("test")
var invoked bool
btn.OnActivated(func(b *Button) {
invoked = true
})
ev := KeyEvent{
Key: KeyEnter,
}
t.Run("When button is not focused", func(t *testing.T) {
btn.OnKeyEvent(ev)
if invoked {
t.Errorf("button should not be activated")
}
})
invoked = false
btn.SetFocused(true)
t.Run("When button is focused", func(t *testing.T) {
btn.OnKeyEvent(ev)
if !invoked {
t.Errorf("button should be activated")
}
})
}
func TestButton_Draw(t *testing.T) {
surface := newTestSurface(10, 5)
painter := NewPainter(surface, NewTheme())
btn := NewButton("test")
painter.Repaint(btn)
want := `
test
..........
..........
..........
..........
`
if surface.String() != want {
t.Errorf("got = \n%s\n\nwant = \n%s", surface.String(), want)
}
}