-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtextbox_scroll_test.go
More file actions
338 lines (287 loc) · 9.31 KB
/
Copy pathtextbox_scroll_test.go
File metadata and controls
338 lines (287 loc) · 9.31 KB
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
package microui
import (
"testing"
"github.com/user/microui-go/types"
)
func TestTextbox_CursorAtEndScrollsRight(t *testing.T) {
ui := New(Config{})
// Long text that exceeds textbox width
buf := []byte("This is a very long text that definitely exceeds the textbox width")
// Window at X=100, Y=20, content area starts at Y=44 (20 + 24 title bar)
// Textbox at approximately X=100, Y=44, W=100, H=30
// Click position should be inside the textbox: (150, 55)
// Frame 1: Move mouse to establish hover on textbox
ui.MouseMove(150, 55)
ui.BeginFrame()
ui.BeginWindow("Test", types.Rect{X: 100, Y: 20, W: 200, H: 100})
ui.LayoutRow(1, []int{100}, 30) // Narrow textbox
ui.Textbox(&buf, 256)
ui.EndWindow()
ui.EndFrame()
// Frame 2: Click to focus textbox
ui.MouseDown(150, 55, MouseLeft)
ui.BeginFrame()
ui.BeginWindow("Test", types.Rect{X: 100, Y: 20, W: 200, H: 100})
ui.LayoutRow(1, []int{100}, 30)
ui.Textbox(&buf, 256)
ui.EndWindow()
ui.EndFrame()
// Frame 3: Press End to move cursor to end (keep mouse down to maintain focus)
ui.KeyDown(KeyEnd)
ui.MouseDown(150, 55, MouseLeft) // Keep focus
ui.BeginFrame()
ui.BeginWindow("Test", types.Rect{X: 100, Y: 20, W: 200, H: 100})
ui.LayoutRow(1, []int{100}, 30)
ui.Textbox(&buf, 256)
ui.EndWindow()
ui.EndFrame()
// Cursor should be at end
if ui.textboxCursor != len(buf) {
t.Errorf("cursor = %d, want %d", ui.textboxCursor, len(buf))
}
// Scroll offset should be positive (scrolled right)
if ui.textboxScrollX <= 0 {
t.Errorf("textboxScrollX = %d, should be > 0 when cursor at end of long text", ui.textboxScrollX)
}
}
func TestTextbox_CursorAtStartScrollsLeft(t *testing.T) {
ui := New(Config{})
buf := []byte("This is a very long text that definitely exceeds the textbox width")
// Frame 1: Move mouse to establish hover
ui.MouseMove(150, 55)
ui.BeginFrame()
ui.BeginWindow("Test", types.Rect{X: 100, Y: 20, W: 200, H: 100})
ui.LayoutRow(1, []int{100}, 30)
ui.Textbox(&buf, 256)
ui.EndWindow()
ui.EndFrame()
// Frame 2: Click to focus
ui.MouseDown(150, 55, MouseLeft)
ui.BeginFrame()
ui.BeginWindow("Test", types.Rect{X: 100, Y: 20, W: 200, H: 100})
ui.LayoutRow(1, []int{100}, 30)
ui.Textbox(&buf, 256)
ui.EndWindow()
ui.EndFrame()
// Frame 3: Press End to scroll right
ui.KeyDown(KeyEnd)
ui.MouseDown(150, 55, MouseLeft)
ui.BeginFrame()
ui.BeginWindow("Test", types.Rect{X: 100, Y: 20, W: 200, H: 100})
ui.LayoutRow(1, []int{100}, 30)
ui.Textbox(&buf, 256)
ui.EndWindow()
ui.EndFrame()
// Verify we scrolled right
if ui.textboxScrollX <= 0 {
t.Fatalf("Expected scroll right first, got textboxScrollX = %d", ui.textboxScrollX)
}
// Frame 4: Press Home to move cursor to start
ui.KeyUp(KeyEnd)
ui.KeyDown(KeyHome)
ui.MouseDown(150, 55, MouseLeft)
ui.BeginFrame()
ui.BeginWindow("Test", types.Rect{X: 100, Y: 20, W: 200, H: 100})
ui.LayoutRow(1, []int{100}, 30)
ui.Textbox(&buf, 256)
ui.EndWindow()
ui.EndFrame()
// Cursor should be at start
if ui.textboxCursor != 0 {
t.Errorf("cursor = %d, want 0", ui.textboxCursor)
}
// Scroll offset should be 0 (scrolled back to start)
if ui.textboxScrollX != 0 {
t.Errorf("textboxScrollX = %d, should be 0 when cursor at start", ui.textboxScrollX)
}
}
func TestTextbox_ScrollResetsOnFocusChange(t *testing.T) {
ui := New(Config{})
buf1 := []byte("Long text in first textbox that exceeds width")
buf2 := []byte("Short")
// Window content starts at Y=44 (20 + 24 title)
// First textbox: Y=44 to 74
// Second textbox: Y=79 to 109 (after 5px spacing)
// Frame 1: Move mouse to first textbox
ui.MouseMove(150, 55)
ui.BeginFrame()
ui.BeginWindow("Test", types.Rect{X: 100, Y: 20, W: 200, H: 150})
ui.LayoutRow(1, []int{100}, 30)
ui.Textbox(&buf1, 256)
ui.LayoutRow(1, []int{100}, 30)
ui.Textbox(&buf2, 256)
ui.EndWindow()
ui.EndFrame()
// Frame 2: Click to focus first textbox
ui.MouseDown(150, 55, MouseLeft)
ui.BeginFrame()
ui.BeginWindow("Test", types.Rect{X: 100, Y: 20, W: 200, H: 150})
ui.LayoutRow(1, []int{100}, 30)
ui.Textbox(&buf1, 256)
ui.LayoutRow(1, []int{100}, 30)
ui.Textbox(&buf2, 256)
ui.EndWindow()
ui.EndFrame()
// Frame 3: Press End to scroll right
ui.KeyDown(KeyEnd)
ui.MouseDown(150, 55, MouseLeft)
ui.BeginFrame()
ui.BeginWindow("Test", types.Rect{X: 100, Y: 20, W: 200, H: 150})
ui.LayoutRow(1, []int{100}, 30)
ui.Textbox(&buf1, 256)
ui.LayoutRow(1, []int{100}, 30)
ui.Textbox(&buf2, 256)
ui.EndWindow()
ui.EndFrame()
scrollAfterEnd := ui.textboxScrollX
if scrollAfterEnd <= 0 {
t.Fatalf("Expected positive scroll after End key, got %d", scrollAfterEnd)
}
// Frame 4: Move mouse to second textbox
ui.KeyUp(KeyEnd)
ui.MouseUp(150, 55, MouseLeft)
ui.MouseMove(150, 90)
ui.BeginFrame()
ui.BeginWindow("Test", types.Rect{X: 100, Y: 20, W: 200, H: 150})
ui.LayoutRow(1, []int{100}, 30)
ui.Textbox(&buf1, 256)
ui.LayoutRow(1, []int{100}, 30)
ui.Textbox(&buf2, 256)
ui.EndWindow()
ui.EndFrame()
// Frame 5: Click on second textbox
ui.MouseDown(150, 90, MouseLeft)
ui.BeginFrame()
ui.BeginWindow("Test", types.Rect{X: 100, Y: 20, W: 200, H: 150})
ui.LayoutRow(1, []int{100}, 30)
ui.Textbox(&buf1, 256)
ui.LayoutRow(1, []int{100}, 30)
ui.Textbox(&buf2, 256)
ui.EndWindow()
ui.EndFrame()
// Scroll should reset when switching to new textbox
if ui.textboxScrollX != 0 {
t.Errorf("Scroll should reset to 0 when switching textbox, got %d", ui.textboxScrollX)
}
}
func TestTextbox_ScrollFollowsCursorOnTyping(t *testing.T) {
ui := New(Config{})
// Start with short text
buf := []byte("Hi")
// Frame 1: Move mouse to textbox
ui.MouseMove(150, 55)
ui.BeginFrame()
ui.BeginWindow("Test", types.Rect{X: 100, Y: 20, W: 200, H: 100})
ui.LayoutRow(1, []int{80}, 30) // Very narrow textbox
ui.Textbox(&buf, 256)
ui.EndWindow()
ui.EndFrame()
// Frame 2: Click to focus
ui.MouseDown(150, 55, MouseLeft)
ui.BeginFrame()
ui.BeginWindow("Test", types.Rect{X: 100, Y: 20, W: 200, H: 100})
ui.LayoutRow(1, []int{80}, 30)
ui.Textbox(&buf, 256)
ui.EndWindow()
ui.EndFrame()
// Frame 3: Type lots of text to exceed width
ui.TextInput(" this is a lot of additional text to make it overflow")
ui.MouseDown(150, 55, MouseLeft) // Keep focus
ui.BeginFrame()
ui.BeginWindow("Test", types.Rect{X: 100, Y: 20, W: 200, H: 100})
ui.LayoutRow(1, []int{80}, 30)
ui.Textbox(&buf, 256)
ui.EndWindow()
ui.EndFrame()
// Text was added, cursor moved right, scroll should follow
textWidth := ui.style.Font.Width(string(buf))
textboxWidth := 80 - ui.style.Padding.X*2 // Account for padding
if textWidth > textboxWidth && ui.textboxScrollX <= 0 {
t.Errorf("Text width (%d) exceeds textbox width (%d), but scroll is %d (should be positive)",
textWidth, textboxWidth, ui.textboxScrollX)
}
}
func TestTextbox_ScrollClampsToZero(t *testing.T) {
ui := New(Config{})
buf := []byte("Short")
// Frame 1: Move mouse to textbox
ui.MouseMove(200, 55)
ui.BeginFrame()
ui.BeginWindow("Test", types.Rect{X: 100, Y: 20, W: 300, H: 100})
ui.LayoutRow(1, []int{200}, 30) // Wide textbox, short text
ui.Textbox(&buf, 256)
ui.EndWindow()
ui.EndFrame()
// Frame 2: Click to focus
ui.MouseDown(200, 55, MouseLeft)
ui.BeginFrame()
ui.BeginWindow("Test", types.Rect{X: 100, Y: 20, W: 300, H: 100})
ui.LayoutRow(1, []int{200}, 30)
ui.Textbox(&buf, 256)
ui.EndWindow()
ui.EndFrame()
// Frame 3: Press Home (cursor at 0)
ui.KeyDown(KeyHome)
ui.MouseDown(200, 55, MouseLeft)
ui.BeginFrame()
ui.BeginWindow("Test", types.Rect{X: 100, Y: 20, W: 300, H: 100})
ui.LayoutRow(1, []int{200}, 30)
ui.Textbox(&buf, 256)
ui.EndWindow()
ui.EndFrame()
// Scroll should never go negative
if ui.textboxScrollX < 0 {
t.Errorf("textboxScrollX = %d, should never be negative", ui.textboxScrollX)
}
}
func TestTextbox_ScrollWithArrowKeys(t *testing.T) {
ui := New(Config{})
buf := []byte("This is a very long text that definitely exceeds the textbox width for arrow test")
// Frame 1: Move mouse to textbox
ui.MouseMove(150, 55)
ui.BeginFrame()
ui.BeginWindow("Test", types.Rect{X: 100, Y: 20, W: 200, H: 100})
ui.LayoutRow(1, []int{100}, 30)
ui.Textbox(&buf, 256)
ui.EndWindow()
ui.EndFrame()
// Frame 2: Click to focus
ui.MouseDown(150, 55, MouseLeft)
ui.BeginFrame()
ui.BeginWindow("Test", types.Rect{X: 100, Y: 20, W: 200, H: 100})
ui.LayoutRow(1, []int{100}, 30)
ui.Textbox(&buf, 256)
ui.EndWindow()
ui.EndFrame()
// Frame 3: Press End to go to end (cursor at end, scroll right)
ui.KeyDown(KeyEnd)
ui.MouseDown(150, 55, MouseLeft)
ui.BeginFrame()
ui.BeginWindow("Test", types.Rect{X: 100, Y: 20, W: 200, H: 100})
ui.LayoutRow(1, []int{100}, 30)
ui.Textbox(&buf, 256)
ui.EndWindow()
ui.EndFrame()
scrollAtEnd := ui.textboxScrollX
cursorAtEnd := ui.textboxCursor
// Frame 4: Press Left arrow to move cursor left
ui.KeyUp(KeyEnd)
ui.KeyDown(KeyLeft)
ui.MouseDown(150, 55, MouseLeft)
ui.BeginFrame()
ui.BeginWindow("Test", types.Rect{X: 100, Y: 20, W: 200, H: 100})
ui.LayoutRow(1, []int{100}, 30)
ui.Textbox(&buf, 256)
ui.EndWindow()
ui.EndFrame()
// Cursor should have moved left
if ui.textboxCursor >= cursorAtEnd {
t.Errorf("cursor should move left, was %d, now %d", cursorAtEnd, ui.textboxCursor)
}
// Scroll might stay same or decrease, but cursor should remain visible
// (scroll should not increase when moving cursor left)
if ui.textboxScrollX > scrollAtEnd {
t.Errorf("scroll should not increase when moving cursor left, was %d, now %d",
scrollAtEnd, ui.textboxScrollX)
}
}