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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
|
package tui
import (
"testing"
)
func TestIntrinsicSize_RichText(t *testing.T) {
e := New(WithRichText(
TextSpan{Text: "ab"},
TextSpan{Text: "cde", Style: NewStyle().Bold()},
))
w, h := e.IntrinsicSize()
if w != 5 {
t.Errorf("intrinsic width = %d, want 5", w)
}
if h != 1 {
t.Errorf("intrinsic height = %d, want 1", h)
}
}
func TestHeightForWidth_RichTextWraps(t *testing.T) {
e := New(WithRichText(
TextSpan{Text: "aaa "},
TextSpan{Text: "bbb", Style: NewStyle().Bold()},
TextSpan{Text: " ccc"},
))
if got := e.HeightForWidth(7); got != 2 {
t.Errorf("HeightForWidth(7) = %d, want 2", got)
}
}
func TestElement_WithOnFocus_ImpliesFocusable(t *testing.T) {
e := New(WithOnFocus(func(*Element) {}))
if !e.IsFocusable() {
t.Error("WithOnFocus should set focusable = true")
}
}
func TestElement_WithOnBlur_ImpliesFocusable(t *testing.T) {
e := New(WithOnBlur(func(*Element) {}))
if !e.IsFocusable() {
t.Error("WithOnBlur should set focusable = true")
}
}
func TestElement_Focus_SetsAndCallsCallback(t *testing.T) {
focusCalled := false
e := New(WithOnFocus(func(*Element) { focusCalled = true }))
if e.IsFocused() {
t.Error("element should not be focused initially")
}
e.Focus()
if !e.IsFocused() {
t.Error("Focus() should set focused = true")
}
if !focusCalled {
t.Error("Focus() should call onFocus callback")
}
}
func TestElement_Blur_ClearsAndCallsCallback(t *testing.T) {
blurCalled := false
e := New(WithOnBlur(func(*Element) { blurCalled = true }))
e.Focus()
e.Blur()
if e.IsFocused() {
t.Error("Blur() should set focused = false")
}
if !blurCalled {
t.Error("Blur() should call onBlur callback")
}
}
func TestElement_Focus_DoesNotCascadeToChildren(t *testing.T) {
parent := New(WithOnFocus(func(*Element) {}))
child := New()
grandchild := New()
parent.AddChild(child)
child.AddChild(grandchild)
parent.Focus()
if !parent.IsFocused() {
t.Error("parent should be focused")
}
if child.IsFocused() {
t.Error("child should not be focused when only parent is focused")
}
if grandchild.IsFocused() {
t.Error("grandchild should not be focused when only parent is focused")
}
}
func TestElement_Blur_DoesNotCascadeToChildren(t *testing.T) {
parent := New(WithOnBlur(func(*Element) {}))
child := New(WithOnFocus(func(*Element) {}))
grandchild := New()
parent.AddChild(child)
child.AddChild(grandchild)
parent.Focus()
child.Focus()
parent.Blur()
if parent.IsFocused() {
t.Error("parent should not be focused after blur")
}
if !child.IsFocused() {
t.Error("child should still be focused when only parent is blurred")
}
}
func TestElement_Focus_ChildCallbackNotCalled(t *testing.T) {
parentFocusCalled := false
childFocusCalled := false
parent := New(WithOnFocus(func(*Element) { parentFocusCalled = true }))
child := New(WithOnFocus(func(*Element) { childFocusCalled = true }))
parent.AddChild(child)
parent.Focus()
if !parentFocusCalled {
t.Error("parent onFocus should be called")
}
if childFocusCalled {
t.Error("child onFocus should not be called when only parent is focused")
}
}
func TestElement_Blur_ChildCallbackNotCalled(t *testing.T) {
parentBlurCalled := false
childBlurCalled := false
parent := New(WithOnBlur(func(*Element) { parentBlurCalled = true }))
child := New(WithOnBlur(func(*Element) { childBlurCalled = true }))
parent.AddChild(child)
parent.Focus()
parent.Blur()
if !parentBlurCalled {
t.Error("parent onBlur should be called")
}
if childBlurCalled {
t.Error("child onBlur should not be called when only parent is blurred")
}
}
func TestElement_IntrinsicSize_TextElement(t *testing.T) {
type tc struct {
text string
expectedWidth int
expectedHeight int
}
tests := map[string]tc{
"short text": {
text: "Hello",
expectedWidth: 5,
expectedHeight: 1,
},
"longer text": {
text: "Hello, World!",
expectedWidth: 13,
expectedHeight: 1,
},
"empty text": {
text: "",
expectedWidth: 0,
expectedHeight: 0,
},
}
for name, tt := range tests {
t.Run(name, func(t *testing.T) {
e := New(WithText(tt.text))
w, h := e.IntrinsicSize()
if w != tt.expectedWidth {
t.Errorf("IntrinsicSize().Width = %d, want %d", w, tt.expectedWidth)
}
if h != tt.expectedHeight {
t.Errorf("IntrinsicSize().Height = %d, want %d", h, tt.expectedHeight)
}
})
}
}
func TestElement_IntrinsicSize_TextWithPadding(t *testing.T) {
e := New(
WithText("Hello"),
WithPadding(2),
)
w, h := e.IntrinsicSize()
if w != 9 {
t.Errorf("IntrinsicSize().Width = %d, want 9 (5 text + 4 padding)", w)
}
if h != 5 {
t.Errorf("IntrinsicSize().Height = %d, want 5 (1 text + 4 padding)", h)
}
}
func TestElement_IntrinsicSize_TextWithBorder(t *testing.T) {
e := New(
WithText("Hello"),
WithBorder(BorderSingle),
)
w, h := e.IntrinsicSize()
if w != 7 {
t.Errorf("IntrinsicSize().Width = %d, want 7 (5 text + 2 border)", w)
}
if h != 3 {
t.Errorf("IntrinsicSize().Height = %d, want 3 (1 text + 2 border)", h)
}
}
func TestElement_IntrinsicSize_EmptyContainer(t *testing.T) {
e := New(WithDirection(Column))
w, h := e.IntrinsicSize()
if w != 0 || h != 0 {
t.Errorf("IntrinsicSize() = %dx%d, want 0x0 for empty container", w, h)
}
}
func TestElement_IntrinsicSize_ContainerWithChildren(t *testing.T) {
parent := New(WithDirection(Column))
child1 := New(WithText("Hello"))
child2 := New(WithText("World!!!"))
parent.AddChild(child1, child2)
w, h := parent.IntrinsicSize()
if w != 8 {
t.Errorf("IntrinsicSize().Width = %d, want 8 (max child width)", w)
}
if h != 2 {
t.Errorf("IntrinsicSize().Height = %d, want 2 (sum of child heights)", h)
}
}
func TestElement_IntrinsicSize_RowContainerWithChildren(t *testing.T) {
parent := New(WithDisplay(DisplayFlex), WithDirection(Row))
child1 := New(WithText("Hello"))
child2 := New(WithText("World"))
parent.AddChild(child1, child2)
w, h := parent.IntrinsicSize()
if w != 10 {
t.Errorf("IntrinsicSize().Width = %d, want 10 (sum of child widths)", w)
}
if h != 1 {
t.Errorf("IntrinsicSize().Height = %d, want 1 (max child height)", h)
}
}
func TestElement_IntrinsicSize_ContainerWithGap(t *testing.T) {
parent := New(
WithDirection(Column),
WithGap(5),
)
child1 := New(WithText("A"))
child2 := New(WithText("B"))
child3 := New(WithText("C"))
parent.AddChild(child1, child2, child3)
w, h := parent.IntrinsicSize()
if w != 1 {
t.Errorf("IntrinsicSize().Width = %d, want 1", w)
}
if h != 13 {
t.Errorf("IntrinsicSize().Height = %d, want 13 (3 children + 2 gaps)", h)
}
}
func TestElement_IntrinsicSize_NestedContainers(t *testing.T) {
root := New(WithDirection(Column))
box := New(
WithDirection(Column),
WithPadding(1),
)
text := New(WithText("Title"))
box.AddChild(text)
footer := New(WithText("Footer text here"))
root.AddChild(box, footer)
w, h := root.IntrinsicSize()
if w != 16 {
t.Errorf("IntrinsicSize().Width = %d, want 16", w)
}
if h != 4 {
t.Errorf("IntrinsicSize().Height = %d, want 4", h)
}
}
func TestElement_IntrinsicSize_ContainerWithPadding(t *testing.T) {
parent := New(
WithDirection(Column),
WithPadding(3),
)
child := New(WithText("Hi"))
parent.AddChild(child)
w, h := parent.IntrinsicSize()
if w != 8 {
t.Errorf("IntrinsicSize().Width = %d, want 8 (2 text + 6 padding)", w)
}
if h != 7 {
t.Errorf("IntrinsicSize().Height = %d, want 7 (1 text + 6 padding)", h)
}
}
func TestElement_IntrinsicSize_ContainerWithBorder(t *testing.T) {
parent := New(
WithDirection(Column),
WithBorder(BorderSingle),
)
child := New(WithText("Hi"))
parent.AddChild(child)
w, h := parent.IntrinsicSize()
if w != 4 {
t.Errorf("IntrinsicSize().Width = %d, want 4 (2 text + 2 border)", w)
}
if h != 3 {
t.Errorf("IntrinsicSize().Height = %d, want 3 (1 text + 2 border)", h)
}
}
func TestElement_HeightForWidth_TextWrap(t *testing.T) {
type tc struct {
text string
width int
noWrap bool
padding int
border BorderStyle
want int
}
tests := map[string]tc{
"single line fits": {
text: "hello",
width: 10,
want: 1,
},
"wraps to two lines": {
text: "hello world",
width: 7,
want: 2,
},
"wraps to three lines": {
text: "the quick brown fox jumps",
width: 10,
want: 3,
},
"nowrap returns 1": {
text: "hello world",
width: 7,
noWrap: true,
want: 1,
},
"with padding": {
text: "hello world",
width: 9,
padding: 1,
want: 4,
},
"with border": {
text: "hello world",
width: 9,
border: BorderSingle,
want: 4,
},
"no text": {
text: "",
width: 10,
want: 0,
},
}
for name, tt := range tests {
t.Run(name, func(t *testing.T) {
opts := []Option{WithText(tt.text)}
if tt.noWrap {
opts = append(opts, WithWrap(false))
}
if tt.padding > 0 {
opts = append(opts, WithPadding(tt.padding))
}
if tt.border != BorderNone {
opts = append(opts, WithBorder(tt.border))
}
e := New(opts...)
got := e.HeightForWidth(tt.width)
if got != tt.want {
t.Errorf("HeightForWidth(%d) = %d, want %d", tt.width, got, tt.want)
}
})
}
}
func TestElement_IntrinsicSize_ExplicitDimensions(t *testing.T) {
type tc struct {
opts []Option
withChild bool
wantWidth int
wantHeight int
}
tests := map[string]tc{
"explicit width and height on container with child": {
opts: []Option{
WithWidth(5), WithHeight(3),
},
withChild: true,
wantWidth: 5,
wantHeight: 3,
},
"explicit height overrides child content height": {
opts: []Option{
WithWidth(10), WithHeight(5),
},
withChild: true,
wantWidth: 10,
wantHeight: 5,
},
"explicit dimensions on empty container": {
opts: []Option{
WithWidth(8), WithHeight(4),
},
withChild: false,
wantWidth: 8,
wantHeight: 4,
},
}
for name, tt := range tests {
t.Run(name, func(t *testing.T) {
e := New(tt.opts...)
if tt.withChild {
e.AddChild(New(WithText(" ")))
}
w, h := e.IntrinsicSize()
if w != tt.wantWidth {
t.Errorf("IntrinsicSize().Width = %d, want %d", w, tt.wantWidth)
}
if h != tt.wantHeight {
t.Errorf("IntrinsicSize().Height = %d, want %d", h, tt.wantHeight)
}
})
}
}
func TestElement_HeightForWidth_ExplicitHeight(t *testing.T) {
type tc struct {
height int
width int
want int
}
tests := map[string]tc{
"explicit height returned for container": {
height: 3,
width: 10,
want: 3,
},
"explicit height returned for container with text child": {
height: 5,
width: 10,
want: 5,
},
}
for name, tt := range tests {
t.Run(name, func(t *testing.T) {
e := New(WithHeight(tt.height))
e.AddChild(New(WithText(" ")))
got := e.HeightForWidth(tt.width)
if got != tt.want {
t.Errorf("HeightForWidth(%d) = %d, want %d", tt.width, got, tt.want)
}
})
}
}
func TestElement_IntrinsicSize_BugRepro_ColumnRowSquare(t *testing.T) {
sq := New(WithWidth(5), WithHeight(3), WithBackground(NewStyle().Background(Red)))
sq.AddChild(New(WithText(" ")))
row := New(WithDirection(Row))
row.AddChild(sq)
col := New(WithDirection(Column))
col.AddChild(row)
_, sqH := sq.IntrinsicSize()
if sqH != 3 {
t.Errorf("square IntrinsicSize height = %d, want 3", sqH)
}
_, rowH := row.IntrinsicSize()
if rowH != 3 {
t.Errorf("row IntrinsicSize height = %d, want 3", rowH)
}
colH := col.HeightForWidth(40)
if colH != 3 {
t.Errorf("column HeightForWidth(40) = %d, want 3", colH)
}
}
|