-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselection_test.go
More file actions
396 lines (343 loc) · 8.73 KB
/
selection_test.go
File metadata and controls
396 lines (343 loc) · 8.73 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
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
package main
import (
"errors"
"fmt"
"strings"
"testing"
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/x/ansi"
)
func TestSelectionPointAtUsesVisibleWindow(t *testing.T) {
m := initialModel("test")
m.width = 40
m.height = 15 // logH = 9
for i := 0; i < 20; i++ {
m.lines = append(m.lines, fmt.Sprintf("line%02d", i))
}
point, ok := m.selectionPointAt(0, 3, false)
if !ok {
t.Fatal("expected selection point in log area")
}
if point.Line != 11 {
t.Fatalf("expected first visible line to map to absolute line 11, got %d", point.Line)
}
if point.Col != 0 {
t.Fatalf("expected col 0, got %d", point.Col)
}
}
func TestSelectionPointAtUsesScrollOffset(t *testing.T) {
m := initialModel("test")
m.width = 40
m.height = 15 // logH = 9
m.scrollOffset = 5
for i := 0; i < 20; i++ {
m.lines = append(m.lines, fmt.Sprintf("line%02d", i))
}
point, ok := m.selectionPointAt(0, 3, false)
if !ok {
t.Fatal("expected selection point in log area")
}
if point.Line != 6 {
t.Fatalf("expected first visible line to map to absolute line 6, got %d", point.Line)
}
}
func TestSelectionPointAtUsesVisibleRangeWhenContentShort(t *testing.T) {
m := initialModel("test")
m.width = 40
m.height = 15 // logH = 9
m.lines = []string{"first", "second"}
point, ok := m.selectionPointAt(0, 3, false)
if !ok {
t.Fatal("expected first visible line to map")
}
if point.Line != 0 {
t.Fatalf("expected row 0 to map to line 0, got %d", point.Line)
}
point, ok = m.selectionPointAt(0, 4, false)
if !ok {
t.Fatal("expected second visible line to map")
}
if point.Line != 1 {
t.Fatalf("expected row 1 to map to line 1, got %d", point.Line)
}
if _, ok := m.selectionPointAt(0, 5, false); ok {
t.Fatal("expected blank viewport rows to be non-selectable")
}
point, ok = m.selectionPointAt(0, 5, true)
if !ok {
t.Fatal("expected clamped blank-row selection to succeed")
}
if point.Line != 1 {
t.Fatalf("expected clamped blank-row selection to snap to last visible line, got %d", point.Line)
}
}
func TestMouseWheelScrollsOnlyInsideLogArea(t *testing.T) {
m := initialModel("test")
m.width = 40
m.height = 15
for i := 0; i < 20; i++ {
m.lines = append(m.lines, fmt.Sprintf("line%02d", i))
}
newM, _ := m.Update(tea.MouseMsg{
X: 0,
Y: 0,
Button: tea.MouseButtonWheelUp,
Action: tea.MouseActionPress,
})
m = newM.(model)
if m.scrollOffset != 0 {
t.Fatalf("wheel in header should not scroll, got %d", m.scrollOffset)
}
newM, _ = m.Update(tea.MouseMsg{
X: 0,
Y: 3,
Button: tea.MouseButtonWheelUp,
Action: tea.MouseActionPress,
})
m = newM.(model)
if m.scrollOffset != 3 {
t.Fatalf("wheel in log area should scroll by 3, got %d", m.scrollOffset)
}
}
func TestMouseDragCopiesSelection(t *testing.T) {
m := initialModel("test")
m.width = 40
m.height = 15
for i := 0; i < 20; i++ {
m.lines = append(m.lines, fmt.Sprintf("line%02d", i))
}
var copied string
prevCopy := copySelectedText
copySelectedText = func(text string) error {
copied = text
return nil
}
defer func() {
copySelectedText = prevCopy
}()
newM, _ := m.Update(tea.MouseMsg{
X: 0,
Y: 3,
Button: tea.MouseButtonLeft,
Action: tea.MouseActionPress,
})
m = newM.(model)
newM, _ = m.Update(tea.MouseMsg{
X: 20,
Y: 4,
Button: tea.MouseButtonLeft,
Action: tea.MouseActionMotion,
})
m = newM.(model)
newM, cmd := m.Update(tea.MouseMsg{
X: 20,
Y: 4,
Button: tea.MouseButtonLeft,
Action: tea.MouseActionRelease,
})
m = newM.(model)
if cmd == nil {
t.Fatal("expected copy command on drag release")
}
msg := cmd()
copiedMsg, ok := msg.(SelectionCopiedMsg)
if !ok {
t.Fatalf("expected SelectionCopiedMsg, got %T", msg)
}
if copied != "line11\nline12" {
t.Fatalf("expected copied text %q, got %q", "line11\nline12", copied)
}
if copiedMsg.Err != nil {
t.Fatalf("unexpected copy error: %v", copiedMsg.Err)
}
newM, _ = m.Update(copiedMsg)
m = newM.(model)
if m.toastMsg != "✓ copied! paste with prefix+]" {
t.Fatalf("expected success toast, got %q", m.toastMsg)
}
if m.sel.HasSelection() {
t.Fatal("selection should be cleared after copy")
}
}
func TestMouseDragCopiesSelectionFromScrolledView(t *testing.T) {
m := initialModel("test")
m.width = 40
m.height = 15
m.scrollOffset = 5
for i := 0; i < 20; i++ {
m.lines = append(m.lines, fmt.Sprintf("line%02d", i))
}
var copied string
prevCopy := copySelectedText
copySelectedText = func(text string) error {
copied = text
return nil
}
defer func() {
copySelectedText = prevCopy
}()
newM, _ := m.Update(tea.MouseMsg{
X: 0,
Y: 3,
Button: tea.MouseButtonLeft,
Action: tea.MouseActionPress,
})
m = newM.(model)
newM, _ = m.Update(tea.MouseMsg{
X: 20,
Y: 4,
Button: tea.MouseButtonLeft,
Action: tea.MouseActionMotion,
})
m = newM.(model)
newM, cmd := m.Update(tea.MouseMsg{
X: 20,
Y: 4,
Button: tea.MouseButtonLeft,
Action: tea.MouseActionRelease,
})
m = newM.(model)
if cmd == nil {
t.Fatal("expected copy command on drag release")
}
_ = cmd()
if copied != "line06\nline07" {
t.Fatalf("expected copied text %q, got %q", "line06\nline07", copied)
}
}
func TestMouseMotionWithoutPressStillSelects(t *testing.T) {
m := initialModel("test")
m.width = 40
m.height = 15
for i := 0; i < 20; i++ {
m.lines = append(m.lines, fmt.Sprintf("line%02d", i))
}
var copied string
prevCopy := copySelectedText
copySelectedText = func(text string) error {
copied = text
return nil
}
defer func() {
copySelectedText = prevCopy
}()
newM, _ := m.Update(tea.MouseMsg{
X: 0,
Y: 3,
Button: tea.MouseButtonNone,
Action: tea.MouseActionMotion,
})
m = newM.(model)
newM, cmd := m.Update(tea.MouseMsg{
X: 20,
Y: 4,
Button: tea.MouseButtonNone,
Action: tea.MouseActionRelease,
})
m = newM.(model)
if cmd == nil {
t.Fatal("expected copy command when drag starts from motion")
}
_ = cmd()
if copied != "line11\nline12" {
t.Fatalf("expected copied text %q, got %q", "line11\nline12", copied)
}
}
func TestMouseDragAutoScrollsAboveViewport(t *testing.T) {
m := initialModel("test")
m.width = 40
m.height = 15
m.scrollOffset = 3
for i := 0; i < 20; i++ {
m.lines = append(m.lines, fmt.Sprintf("line%02d", i))
}
var copied string
prevCopy := copySelectedText
copySelectedText = func(text string) error {
copied = text
return nil
}
defer func() {
copySelectedText = prevCopy
}()
newM, _ := m.Update(tea.MouseMsg{
X: 0,
Y: 3,
Button: tea.MouseButtonLeft,
Action: tea.MouseActionPress,
})
m = newM.(model)
newM, _ = m.Update(tea.MouseMsg{
X: 0,
Y: 2,
Button: tea.MouseButtonLeft,
Action: tea.MouseActionMotion,
})
m = newM.(model)
if m.scrollOffset != 4 {
t.Fatalf("expected drag above viewport to scroll up by 1, got %d", m.scrollOffset)
}
newM, cmd := m.Update(tea.MouseMsg{
X: 0,
Y: 2,
Button: tea.MouseButtonLeft,
Action: tea.MouseActionRelease,
})
m = newM.(model)
if cmd == nil {
t.Fatal("expected copy command on drag release")
}
_ = cmd()
if copied != "line07\nl" {
t.Fatalf("expected copied text %q, got %q", "line07\nl", copied)
}
}
func TestSelectionPointAtAndSelectedTextHandleANSIAndTabs(t *testing.T) {
m := initialModel("test")
m.width = 80
m.height = 15
m.logStyled("!", "prefix\talpha", 80, sWarn)
lineIdx := len(m.lines) - 1
line := selectionDisplayLine(m.lines[lineIdx], selectionTabWidth)
startCol := strings.Index(ansi.Strip(line), "alpha")
if startCol < 0 {
t.Fatalf("expected alpha in rendered line: %q", ansi.Strip(line))
}
point, ok := m.selectionPointAt(startCol, 3, false)
if !ok {
t.Fatal("expected selection point for styled line")
}
if point.Line != lineIdx {
t.Fatalf("expected line %d, got %d", lineIdx, point.Line)
}
if point.Col != startCol {
t.Fatalf("expected col %d, got %d", startCol, point.Col)
}
m.sel.Start = selectionPoint{Line: lineIdx, Col: startCol}
m.sel.End = selectionPoint{Line: lineIdx, Col: startCol + len("alpha") - 1}
text := m.sel.SelectedText(m.lines, selectionTabWidth)
if text != "alpha" {
t.Fatalf("expected copied text %q, got %q", "alpha", text)
}
view := m.View()
if !strings.Contains(view, selectionBgANSI+"a") {
t.Fatalf("expected highlighted alpha in view, got %q", view)
}
}
func TestCopySelectedToClipboardIgnoresTmuxErrorAfterOSC52Write(t *testing.T) {
t.Setenv("TMUX", "1")
wantErr := errors.New("tmux load-buffer failed")
prevLoad := loadTmuxBuffer
loadTmuxBuffer = func(text string) error {
if text != "hello" {
t.Fatalf("unexpected text %q", text)
}
return wantErr
}
defer func() {
loadTmuxBuffer = prevLoad
}()
if err := CopySelectedToClipboard("hello"); err != nil {
t.Fatalf("expected nil error after OSC 52 write, got %v", err)
}
}