-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpeco_test.go
491 lines (412 loc) · 11.5 KB
/
peco_test.go
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
package peco
import (
"bytes"
"fmt"
"io"
"io/ioutil"
"runtime"
"sync"
"testing"
"time"
"context"
"github.com/lestrrat-go/pdebug"
"github.com/nsf/termbox-go"
"github.com/peco/peco/hub"
"github.com/peco/peco/internal/util"
"github.com/peco/peco/line"
"github.com/stretchr/testify/assert"
)
type nullHub struct{}
func (h nullHub) Batch(_ context.Context, _ func(context.Context), _ bool) {}
func (h nullHub) DrawCh() chan hub.Payload { return nil }
func (h nullHub) PagingCh() chan hub.Payload { return nil }
func (h nullHub) QueryCh() chan hub.Payload { return nil }
func (h nullHub) SendDraw(_ context.Context, _ interface{}) {}
func (h nullHub) SendDrawPrompt(context.Context) {}
func (h nullHub) SendPaging(_ context.Context, _ interface{}) {}
func (h nullHub) SendQuery(_ context.Context, _ string) {}
func (h nullHub) SendStatusMsg(_ context.Context, _ string) {}
func (h nullHub) SendStatusMsgAndClear(_ context.Context, _ string, _ time.Duration) {}
func (h nullHub) StatusMsgCh() chan hub.Payload { return nil }
type interceptorArgs []interface{}
type interceptor struct {
m sync.Mutex
events map[string][]interceptorArgs
}
func newInterceptor() *interceptor {
return &interceptor{
events: make(map[string][]interceptorArgs),
}
}
func (i *interceptor) reset() {
i.m.Lock()
defer i.m.Unlock()
i.events = make(map[string][]interceptorArgs)
}
func (i *interceptor) record(name string, args []interface{}) {
i.m.Lock()
defer i.m.Unlock()
events := i.events
v, ok := events[name]
if !ok {
v = []interceptorArgs{}
}
events[name] = append(v, interceptorArgs(args))
}
func newConfig(s string) (string, error) {
f, err := ioutil.TempFile("", "peco-test-config-")
if err != nil {
return "", err
}
io.WriteString(f, s)
f.Close()
return f.Name(), nil
}
func newPeco() *Peco {
_, file, _, _ := runtime.Caller(0)
state := New()
state.Argv = []string{"peco", file}
state.screen = NewDummyScreen()
state.skipReadConfig = true
return state
}
type dummyScreen struct {
*interceptor
width int
height int
pollCh chan termbox.Event
}
func NewDummyScreen() *dummyScreen {
return &dummyScreen{
interceptor: newInterceptor(),
width: 80,
height: 10,
pollCh: make(chan termbox.Event),
}
}
func (d dummyScreen) SetCursor(_, _ int) {
}
func (d dummyScreen) Init(cfg *Config) error {
return nil
}
func (d dummyScreen) Close() error {
return nil
}
func (d dummyScreen) Print(args PrintArgs) int {
return screenPrint(d, args)
}
func (d dummyScreen) SendEvent(e termbox.Event) {
// XXX FIXME SendEvent should receive a context
t := time.NewTimer(time.Second)
defer t.Stop()
select {
case <-t.C:
panic("timed out sending an event")
case d.pollCh <- e:
}
}
func (d dummyScreen) SetCell(x, y int, ch rune, fg, bg termbox.Attribute) {
d.record("SetCell", interceptorArgs{x, y, ch, fg, bg})
}
func (d dummyScreen) Flush() error {
d.record("Flush", interceptorArgs{})
return nil
}
func (d dummyScreen) PollEvent(ctx context.Context, cfg *Config) chan termbox.Event {
return d.pollCh
}
func (d dummyScreen) Size() (int, int) {
return d.width, d.height
}
func (d dummyScreen) Resume() {}
func (d dummyScreen) Suspend() {}
func TestIDGen(t *testing.T) {
idgen := newIDGen()
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
go idgen.Run(ctx)
lines := []*line.Raw{}
for i := 0; i < 1000000; i++ {
lines = append(lines, line.NewRaw(idgen.Next(), fmt.Sprintf("%d", i), false))
}
sel := NewSelection()
for _, l := range lines {
if sel.Has(l) {
t.Errorf("Collision detected %d", l.ID())
}
sel.Add(l)
}
}
func TestPeco(t *testing.T) {
p := newPeco()
ctx, cancel := context.WithCancel(context.Background())
time.AfterFunc(time.Second, cancel)
if !assert.NoError(t, p.Run(ctx), "p.Run() succeeds") {
return
}
}
type testCauser interface {
Cause() error
}
type testIgnorableError interface {
Ignorable() bool
}
func TestPecoHelp(t *testing.T) {
p := newPeco()
p.Argv = []string{"peco", "-h"}
p.Stdout = &bytes.Buffer{}
ctx, cancel := context.WithCancel(context.Background())
time.AfterFunc(time.Second, cancel)
err := p.Run(ctx)
if !assert.True(t, util.IsIgnorableError(err), "p.Run() should return error with Ignorable() method, and it should return true") {
return
}
}
func TestGHIssue331(t *testing.T) {
// Note: we should check that the drawing process did not
// use cached display, but ATM this seemed hard to do,
// so we just check that the proper fields were populated
// when peco was instantiated
ctx, cancel := context.WithCancel(context.Background())
time.AfterFunc(time.Second, cancel)
p := newPeco()
p.Run(ctx)
if !assert.NotEmpty(t, p.singleKeyJumpPrefixes, "singleKeyJumpPrefixes is not empty") {
return
}
if !assert.NotEmpty(t, p.singleKeyJumpPrefixMap, "singleKeyJumpPrefixMap is not empty") {
return
}
}
func TestConfigFuzzyFilter(t *testing.T) {
var opts CLIOptions
p := newPeco()
// Ensure that it's possible to enable the Fuzzy filter
opts.OptInitialFilter = "Fuzzy"
if !assert.NoError(t, p.ApplyConfig(opts), "p.ApplyConfig should succeed") {
return
}
}
func TestApplyConfig(t *testing.T) {
// XXX We should add all the possible configurations that needs to be
// propagated to Peco from config
// This is a placeholder test address
// https://github.com/peco/peco/pull/338#issuecomment-244462220
var opts CLIOptions
opts.OptPrompt = "tpmorp>"
opts.OptQuery = "Hello, World"
opts.OptBufferSize = 256
opts.OptInitialIndex = 2
opts.OptInitialFilter = "Regexp"
opts.OptLayout = "bottom-up"
opts.OptSelect1 = true
opts.OptOnCancel = "error"
opts.OptSelectionPrefix = ">"
opts.OptPrintQuery = true
p := newPeco()
if !assert.NoError(t, p.ApplyConfig(opts), "p.ApplyConfig should succeed") {
return
}
if !assert.Equal(t, opts.OptQuery, p.initialQuery, "p.initialQuery should be equal to opts.Query") {
return
}
if !assert.Equal(t, opts.OptBufferSize, p.bufferSize, "p.bufferSize should be equal to opts.BufferSize") {
return
}
if !assert.Equal(t, opts.OptEnableNullSep, p.enableSep, "p.enableSep should be equal to opts.OptEnableNullSep") {
return
}
if !assert.Equal(t, opts.OptInitialIndex, p.Location().LineNumber(), "p.Location().LineNumber() should be equal to opts.OptInitialIndex") {
return
}
if !assert.Equal(t, opts.OptInitialFilter, p.filters.Current().String(), "p.initialFilter should be equal to opts.OptInitialFilter") {
return
}
if !assert.Equal(t, opts.OptPrompt, p.prompt, "p.prompt should be equal to opts.OptPrompt") {
return
}
if !assert.Equal(t, opts.OptLayout, p.layoutType, "p.layoutType should be equal to opts.OptLayout") {
return
}
if !assert.Equal(t, opts.OptSelect1, p.selectOneAndExit, "p.selectOneAndExit should be equal to opts.OptSelect1") {
return
}
if !assert.Equal(t, opts.OptOnCancel, p.onCancel, "p.onCancel should be equal to opts.OptOnCancel") {
return
}
if !assert.Equal(t, opts.OptSelectionPrefix, p.selectionPrefix, "p.selectionPrefix should be equal to opts.OptSelectionPrefix") {
return
}
if !assert.Equal(t, opts.OptPrintQuery, p.printQuery, "p.printQuery should be equal to opts.OptPrintQuery") {
return
}
}
// While this issue is labeled for Issue363, it tests against 376 as well.
// The test should have caught the bug for 376, but the premise of the test
// itself was wrong
func TestGHIssue363(t *testing.T) {
ctx, cancel := context.WithTimeout(context.Background(), time.Second)
defer cancel()
p := newPeco()
p.Argv = []string{"--select-1"}
p.Stdin = bytes.NewBufferString("foo\n")
var out bytes.Buffer
p.Stdout = &out
resultCh := make(chan error)
go func() {
defer close(resultCh)
select {
case <-ctx.Done():
return
case resultCh <- p.Run(ctx):
return
}
}()
select {
case <-ctx.Done():
t.Errorf("timeout reached")
return
case err := <-resultCh:
if !assert.True(t, util.IsCollectResultsError(err), "isCollectResultsError") {
return
}
p.PrintResults()
}
if !assert.Equal(t, "foo\n", out.String(), "output should match") {
return
}
}
type readerFunc func([]byte) (int, error)
func (f readerFunc) Read(p []byte) (int, error) {
return f(p)
}
func TestGHIssue367(t *testing.T) {
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
p := newPeco()
p.Argv = []string{}
src := [][]byte{
[]byte("foo\n"),
[]byte("bar\n"),
}
ac := time.After(50 * time.Millisecond)
p.Stdin = readerFunc(func(p []byte) (int, error) {
if ac != nil {
<-ac
ac = nil
}
if len(src) == 0 {
return 0, io.EOF
}
l := len(src[0])
copy(p, src[0])
p = p[:l]
src = src[1:]
if pdebug.Enabled {
pdebug.Printf("reader func returning %#v", string(p))
}
return l, nil
})
buf := bytes.Buffer{}
p.Stdout = &buf
waitCh := make(chan struct{})
go func() {
defer close(waitCh)
p.Run(ctx)
}()
select {
case <-time.After(100 * time.Millisecond):
p.screen.SendEvent(termbox.Event{Ch: 'b'})
case <-time.After(200 * time.Millisecond):
p.screen.SendEvent(termbox.Event{Ch: 'a'})
case <-time.After(300 * time.Millisecond):
p.screen.SendEvent(termbox.Event{Ch: 'r'})
case <-time.After(900 * time.Millisecond):
p.screen.SendEvent(termbox.Event{Key: termbox.KeyEnter})
}
<-waitCh
p.PrintResults()
curbuf := p.CurrentLineBuffer()
if !assert.Equal(t, curbuf.Size(), 1, "There should be one element in buffer") {
return
}
for i := 0; i < curbuf.Size(); i++ {
_, err := curbuf.LineAt(i)
if !assert.NoError(t, err, "LineAt(%d) should succeed", i) {
return
}
}
if !assert.Equal(t, "bar\n", buf.String(), "output should match") {
return
}
}
func TestPrintQuery(t *testing.T) {
t.Run("Match and print query", func(t *testing.T) {
ctx, cancel := context.WithTimeout(context.Background(), time.Second)
defer cancel()
p := newPeco()
p.Argv = []string{"--print-query", "--query", "oo", "--select-1"}
p.Stdin = bytes.NewBufferString("foo\n")
var out bytes.Buffer
p.Stdout = &out
resultCh := make(chan error)
go func() {
defer close(resultCh)
select {
case <-ctx.Done():
return
case resultCh <- p.Run(ctx):
return
}
}()
select {
case <-ctx.Done():
t.Errorf("timeout reached")
return
case err := <-resultCh:
if !assert.True(t, util.IsCollectResultsError(err), "isCollectResultsError") {
return
}
p.PrintResults()
}
if !assert.Equal(t, "oo\nfoo\n", out.String(), "output should match") {
return
}
})
t.Run("No match and print query", func(t *testing.T) {
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
p := newPeco()
p.Argv = []string{"--print-query", "--query", "oo"}
p.Stdin = bytes.NewBufferString("bar\n")
var out bytes.Buffer
p.Stdout = &out
resultCh := make(chan error)
go func() {
defer close(resultCh)
select {
case <-ctx.Done():
return
case resultCh <- p.Run(ctx):
return
}
}()
<-p.Ready()
time.AfterFunc(100*time.Millisecond, func() {
p.screen.SendEvent(termbox.Event{Key: termbox.KeyEnter})
})
select {
case <-ctx.Done():
t.Errorf("timeout reached")
return
case err := <-resultCh:
if !assert.True(t, util.IsCollectResultsError(err), "isCollectResultsError") {
return
}
p.PrintResults()
}
if !assert.Equal(t, "oo\n", out.String(), "output should match") {
return
}
})
}