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
|
package tui
import (
"os"
"testing"
"time"
)
func stdinIsTTY(t *testing.T) bool {
t.Helper()
state, err := enableRawMode(int(os.Stdin.Fd()))
if err != nil {
return false
}
if err := disableRawMode(state); err != nil {
t.Fatalf("disableRawMode() error = %v", err)
}
return true
}
func TestNewApp_FailsWithoutTTY(t *testing.T) {
type tc struct {
opts []AppOption
}
tests := map[string]tc{
"no options": {
opts: nil,
},
"with options": {
opts: []AppOption{
WithFrameRate(30),
WithInputLatency(10 * time.Millisecond),
},
},
}
for name, tt := range tests {
t.Run(name, func(t *testing.T) {
if stdinIsTTY(t) {
t.Skip("stdin is a real TTY; NewApp would take over the terminal")
}
app, err := NewApp(tt.opts...)
if err == nil {
if app != nil {
app.Close()
}
t.Fatal("NewApp() error = nil, want raw mode error when stdin is not a TTY")
}
if app != nil {
t.Errorf("NewApp() app = %v, want nil on error", app)
}
})
}
}
func TestNewAppWithReader_FailsWithoutTTY(t *testing.T) {
type tc struct {
opts []AppOption
}
tests := map[string]tc{
"no options": {
opts: nil,
},
"with options": {
opts: []AppOption{
WithEventQueueSize(8),
},
},
}
for name, tt := range tests {
t.Run(name, func(t *testing.T) {
if stdinIsTTY(t) {
t.Skip("stdin is a real TTY; NewAppWithReader would take over the terminal")
}
reader := NewMockEventReader(KeyEvent{Key: KeyEnter})
app, err := NewAppWithReader(reader, tt.opts...)
if err == nil {
if app != nil {
app.Close()
}
t.Fatal("NewAppWithReader() error = nil, want raw mode error when stdin is not a TTY")
}
if app != nil {
t.Errorf("NewAppWithReader() app = %v, want nil on error", app)
}
if reader.Remaining() != 1 {
t.Errorf("reader.Remaining() = %d, want 1 (reader should not be consumed)", reader.Remaining())
}
})
}
}
func TestApp_BlurFocused(t *testing.T) {
type tc struct {
focusFirst bool
wantBlurCall bool
}
tests := map[string]tc{
"blurs the focused element": {
focusFirst: true,
wantBlurCall: true,
},
"no-op when nothing is focused": {
focusFirst: false,
wantBlurCall: false,
},
}
for name, tt := range tests {
t.Run(name, func(t *testing.T) {
app := &App{
focus: newFocusManager(),
buffer: NewBuffer(80, 24),
stopCh: make(chan struct{}),
}
defer close(app.stopCh)
blurCalled := false
first := New(WithFocusable(true), WithOnBlur(func(*Element) {
blurCalled = true
}))
second := New(WithFocusable(true))
root := New()
root.AddChild(first)
root.AddChild(second)
app.SetRoot(root)
if tt.focusFirst {
app.FocusNext()
if app.Focused() == nil {
t.Fatal("FocusNext() should focus a focusable element")
}
if !first.IsFocused() {
t.Fatal("first focusable child should be focused after FocusNext()")
}
}
app.BlurFocused()
if app.Focused() != nil {
t.Errorf("Focused() = %v after BlurFocused(), want nil", app.Focused())
}
if first.IsFocused() {
t.Error("element should not report focus after BlurFocused()")
}
if blurCalled != tt.wantBlurCall {
t.Errorf("onBlur called = %v, want %v", blurCalled, tt.wantBlurCall)
}
blurCalled = false
app.BlurFocused()
if app.Focused() != nil {
t.Error("Focused() should stay nil after repeated BlurFocused()")
}
if blurCalled {
t.Error("onBlur should not fire when nothing is focused")
}
})
}
}
func TestApp_EventQueue(t *testing.T) {
app := &App{
watcherQueue: make(chan func(), 4),
}
q := app.EventQueue()
if q == nil {
t.Fatal("EventQueue() returned nil channel")
}
called := false
q <- func() { called = true }
select {
case fn := <-app.watcherQueue:
fn()
default:
t.Fatal("function sent on EventQueue() did not arrive on the watcher queue")
}
if !called {
t.Error("function received from the watcher queue was not the one sent")
}
}
|