gitstack

grindlemire/go-tui code browser

7.0 KB Go 312 lines 2026-02-27 · 615ced8 raw
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
package tui

import (
	"testing"
)

// trackingTerminal wraps MockTerminal to track render operations.
// It counts Clear() calls to distinguish full vs diff renders.
type trackingTerminal struct {
	*MockTerminal
	clearCount int
	flushCount int
}

func newTrackingTerminal(width, height int) *trackingTerminal {
	return &trackingTerminal{
		MockTerminal: NewMockTerminal(width, height),
	}
}

func (t *trackingTerminal) Clear() {
	t.clearCount++
	t.MockTerminal.Clear()
}

func (t *trackingTerminal) Flush(changes []CellChange) {
	t.flushCount++
	t.MockTerminal.Flush(changes)
}

// testableApp is a helper to create an App with a tracking terminal for testing.
func testableApp(width, height int) (*App, *trackingTerminal) {
	term := newTrackingTerminal(width, height)
	buffer := NewBuffer(width, height)
	focus := newFocusManager()

	app := &App{
		terminal: nil, // We'll use renderWithTerminal helper
		buffer:   buffer,
		focus:    focus,
	}

	return app, term
}

// renderWithTerminal renders the app using the given terminal (for testing).
func renderWithTerminal(app *App, term Terminal) {
	width, height := term.Size()

	// Clear buffer
	app.buffer.Clear()

	// If root exists, render the element tree
	if app.root != nil {
		app.root.Render(app.buffer, width, height)
	}

	// Use full redraw after resize to clear artifacts, otherwise use diff-based render
	if app.needsFullRedraw {
		RenderFull(term, app.buffer)
		app.needsFullRedraw = false
	} else {
		Render(term, app.buffer)
	}
}

func TestApp_DispatchResizeEvent_SetsNeedsFullRedraw(t *testing.T) {
	type tc struct {
		initialWidth  int
		initialHeight int
		resizeWidth   int
		resizeHeight  int
		hasRoot       bool
	}

	tests := map[string]tc{
		"resize sets flag": {
			initialWidth:  80,
			initialHeight: 24,
			resizeWidth:   100,
			resizeHeight:  30,
			hasRoot:       false,
		},
		"resize with root sets flag": {
			initialWidth:  80,
			initialHeight: 24,
			resizeWidth:   100,
			resizeHeight:  30,
			hasRoot:       true,
		},
		"shrink sets flag": {
			initialWidth:  100,
			initialHeight: 50,
			resizeWidth:   60,
			resizeHeight:  20,
			hasRoot:       true,
		},
	}

	for name, tt := range tests {
		t.Run(name, func(t *testing.T) {
			buffer := NewBuffer(tt.initialWidth, tt.initialHeight)
			app := &App{
				focus:  newFocusManager(),
				buffer: buffer,
			}

			if tt.hasRoot {
				app.SetRoot(New())
			}

			// Flag should initially be false
			if app.needsFullRedraw {
				t.Error("needsFullRedraw should initially be false")
			}

			// Dispatch resize event
			event := ResizeEvent{Width: tt.resizeWidth, Height: tt.resizeHeight}
			handled := app.Dispatch(event)

			if !handled {
				t.Error("Dispatch(ResizeEvent) should return true")
			}

			// Flag should now be true
			if !app.needsFullRedraw {
				t.Error("needsFullRedraw should be true after resize event")
			}
		})
	}
}

func TestApp_Render_ClearsNeedsFullRedrawFlag(t *testing.T) {
	type tc struct {
		description string
	}

	tests := map[string]tc{
		"flag is cleared after render": {
			description: "needsFullRedraw should be false after Render()",
		},
	}

	for name := range tests {
		t.Run(name, func(t *testing.T) {
			app, term := testableApp(80, 24)

			// Set flag manually
			app.needsFullRedraw = true

			// Render should clear the flag
			renderWithTerminal(app, term)

			if app.needsFullRedraw {
				t.Error("needsFullRedraw should be false after Render()")
			}
		})
	}
}

func TestApp_Render_UsesFullRedrawWhenFlagSet(t *testing.T) {
	type tc struct {
		setFlag          bool
		expectClearCount int
		description      string
	}

	tests := map[string]tc{
		"full redraw when flag set": {
			setFlag:          true,
			expectClearCount: 1, // RenderFull calls Clear()
			description:      "should call Clear() for full redraw",
		},
		"diff render when flag not set": {
			setFlag:          false,
			expectClearCount: 0, // Render() does not call Clear()
			description:      "should not call Clear() for diff render",
		},
	}

	for name, tt := range tests {
		t.Run(name, func(t *testing.T) {
			app, term := testableApp(80, 24)
			app.needsFullRedraw = tt.setFlag

			renderWithTerminal(app, term)

			if term.clearCount != tt.expectClearCount {
				t.Errorf("Clear() count = %d, want %d (%s)", term.clearCount, tt.expectClearCount, tt.description)
			}
		})
	}
}

func TestApp_MultipleRenders_OnlyOneFullRedraw(t *testing.T) {
	type tc struct {
		renderCount      int
		expectClearCount int
	}

	tests := map[string]tc{
		"three renders after resize": {
			renderCount:      3,
			expectClearCount: 1, // Only first render should be full
		},
		"five renders after resize": {
			renderCount:      5,
			expectClearCount: 1,
		},
	}

	for name, tt := range tests {
		t.Run(name, func(t *testing.T) {
			app, term := testableApp(80, 24)

			// Dispatch resize to set flag
			app.Dispatch(ResizeEvent{Width: 100, Height: 30})

			// Render multiple times
			for i := 0; i < tt.renderCount; i++ {
				renderWithTerminal(app, term)
			}

			if term.clearCount != tt.expectClearCount {
				t.Errorf("Clear() count = %d after %d renders, want %d",
					term.clearCount, tt.renderCount, tt.expectClearCount)
			}
		})
	}
}

func TestApp_DispatchNonResizeEvent_DoesNotSetFlag(t *testing.T) {
	type tc struct {
		event Event
	}

	tests := map[string]tc{
		"key enter event": {
			event: KeyEvent{Key: KeyEnter},
		},
		"key tab event": {
			event: KeyEvent{Key: KeyTab},
		},
		"key escape event": {
			event: KeyEvent{Key: KeyEscape},
		},
	}

	for name, tt := range tests {
		t.Run(name, func(t *testing.T) {
			app := &App{
				focus:  newFocusManager(),
				buffer: NewBuffer(80, 24),
			}

			// Flag should be false before
			if app.needsFullRedraw {
				t.Error("needsFullRedraw should initially be false")
			}

			// Dispatch non-resize event
			app.Dispatch(tt.event)

			// Flag should still be false
			if app.needsFullRedraw {
				t.Error("needsFullRedraw should still be false after non-resize event")
			}
		})
	}
}

func TestApp_DispatchResizeEvent_InlineWidthChange_InvalidatesLayout(t *testing.T) {
	app := &App{
		focus:          newFocusManager(),
		buffer:         NewBuffer(80, 3),
		inlineHeight:   3,
		inlineStartRow: 21,
		inlineLayout:   newInlineLayoutState(21),
	}
	app.inlineLayout.visibleRows = 2
	app.inlineLayout.contentStartRow = 19

	handled := app.Dispatch(ResizeEvent{Width: 100, Height: 24})
	if !handled {
		t.Fatal("Dispatch(ResizeEvent) should return true")
	}

	if app.inlineLayout.valid {
		t.Fatalf("inline layout should be invalidated after width change: %+v", app.inlineLayout)
	}
}

func TestApp_DispatchResizeEvent_InlineHeightChange_KeepsLayoutValid(t *testing.T) {
	app := &App{
		focus:          newFocusManager(),
		buffer:         NewBuffer(80, 3),
		inlineHeight:   3,
		inlineStartRow: 21,
		inlineLayout:   newInlineLayoutState(21),
	}
	app.inlineLayout.visibleRows = 2
	app.inlineLayout.contentStartRow = 19

	handled := app.Dispatch(ResizeEvent{Width: 80, Height: 30})
	if !handled {
		t.Fatal("Dispatch(ResizeEvent) should return true")
	}

	if !app.inlineLayout.valid {
		t.Fatalf("inline layout should remain valid when only height changes: %+v", app.inlineLayout)
	}
}