forked from AlecAivazis/survey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
multiselect_test.go
581 lines (562 loc) · 17.1 KB
/
multiselect_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
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
570
571
572
573
574
575
576
577
578
579
580
581
package survey
import (
"bytes"
"fmt"
"io"
"os"
"strings"
"testing"
"github.com/stretchr/testify/assert"
"github.com/AlecAivazis/survey/v2/core"
"github.com/AlecAivazis/survey/v2/terminal"
)
func init() {
// disable color output for all prompts to simplify testing
core.DisableColor = true
}
func TestMultiSelectRender(t *testing.T) {
prompt := MultiSelect{
Message: "Pick your words:",
Options: []string{"foo", "bar", "baz", "buz"},
Default: []string{"bar", "buz"},
}
helpfulPrompt := prompt
helpfulPrompt.Help = "This is helpful"
pagePrompt := MultiSelect{
Message: "Pick your words:",
Options: []string{"foo", "bar", "baz", "buz"},
PageSize: 2,
}
tests := []struct {
title string
prompt MultiSelect
data MultiSelectTemplateData
expected string
}{
{
"question output",
prompt,
MultiSelectTemplateData{
SelectedIndex: 2,
PageEntries: core.OptionAnswerList(prompt.Options),
Checked: map[int]bool{1: true, 3: true},
},
strings.Join(
[]string{
fmt.Sprintf("%s Pick your words: [Use arrows to move, space to select, <right> to all, <left> to none, type to filter]", defaultIcons().Question.Text),
fmt.Sprintf(" %s foo", defaultIcons().UnmarkedOption.Text),
fmt.Sprintf(" %s bar", defaultIcons().MarkedOption.Text),
fmt.Sprintf("%s %s baz", defaultIcons().SelectFocus.Text, defaultIcons().UnmarkedOption.Text),
fmt.Sprintf(" %s buz\n", defaultIcons().MarkedOption.Text),
},
"\n",
),
},
{
"answer output",
prompt,
MultiSelectTemplateData{
Answer: "foo, buz",
ShowAnswer: true,
},
fmt.Sprintf("%s Pick your words: foo, buz\n", defaultIcons().Question.Text),
},
{
"help hidden",
helpfulPrompt,
MultiSelectTemplateData{
SelectedIndex: 2,
PageEntries: core.OptionAnswerList(prompt.Options),
Checked: map[int]bool{1: true, 3: true},
},
strings.Join(
[]string{
fmt.Sprintf("%s Pick your words: [Use arrows to move, space to select, <right> to all, <left> to none, type to filter, %s for more help]", defaultIcons().Question.Text, string(defaultPromptConfig().HelpInput)),
fmt.Sprintf(" %s foo", defaultIcons().UnmarkedOption.Text),
fmt.Sprintf(" %s bar", defaultIcons().MarkedOption.Text),
fmt.Sprintf("%s %s baz", defaultIcons().SelectFocus.Text, defaultIcons().UnmarkedOption.Text),
fmt.Sprintf(" %s buz\n", defaultIcons().MarkedOption.Text),
},
"\n",
),
},
{
"question outputhelp shown",
helpfulPrompt,
MultiSelectTemplateData{
SelectedIndex: 2,
PageEntries: core.OptionAnswerList(prompt.Options),
Checked: map[int]bool{1: true, 3: true},
ShowHelp: true,
},
strings.Join(
[]string{
fmt.Sprintf("%s This is helpful", defaultIcons().Help.Text),
fmt.Sprintf("%s Pick your words: [Use arrows to move, space to select, <right> to all, <left> to none, type to filter]", defaultIcons().Question.Text),
fmt.Sprintf(" %s foo", defaultIcons().UnmarkedOption.Text),
fmt.Sprintf(" %s bar", defaultIcons().MarkedOption.Text),
fmt.Sprintf("%s %s baz", defaultIcons().SelectFocus.Text, defaultIcons().UnmarkedOption.Text),
fmt.Sprintf(" %s buz\n", defaultIcons().MarkedOption.Text),
},
"\n",
),
},
{
"marked on paginating",
pagePrompt,
MultiSelectTemplateData{
SelectedIndex: 0,
PageEntries: core.OptionAnswerList(pagePrompt.Options)[1:3], /* show unmarked items(bar, baz)*/
Checked: map[int]bool{0: true}, /* foo marked */
},
strings.Join(
[]string{
fmt.Sprintf("%s Pick your words: [Use arrows to move, space to select, <right> to all, <left> to none, type to filter]", defaultIcons().Question.Text),
fmt.Sprintf("%s %s bar", defaultIcons().SelectFocus.Text, defaultIcons().UnmarkedOption.Text),
fmt.Sprintf(" %s baz", defaultIcons().UnmarkedOption.Text),
},
"\n",
),
},
}
for _, test := range tests {
t.Run(test.title, func(t *testing.T) {
r, w, err := os.Pipe()
assert.NoError(t, err)
test.prompt.WithStdio(terminal.Stdio{Out: w})
test.data.MultiSelect = test.prompt
// set the icon set
test.data.Config = defaultPromptConfig()
err = test.prompt.Render(
MultiSelectQuestionTemplate,
test.data,
)
assert.NoError(t, err)
assert.NoError(t, w.Close())
var buf bytes.Buffer
_, err = io.Copy(&buf, r)
assert.NoError(t, err)
assert.Contains(t, buf.String(), test.expected)
})
}
}
func TestMultiSelectPrompt(t *testing.T) {
tests := []PromptTest{
{
"basic interaction",
&MultiSelect{
Message: "What days do you prefer:",
Options: []string{"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"},
},
func(c expectConsole) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, <right> to all, <left> to none, type to filter]")
// Select Monday.
c.Send(string(terminal.KeyArrowDown))
c.SendLine(" ")
c.ExpectEOF()
},
[]core.OptionAnswer{{Value: "Monday", Index: 1}},
},
{
"cycle to next when tab send",
&MultiSelect{
Message: "What days do you prefer:",
Options: []string{"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"},
},
func(c expectConsole) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, <right> to all, <left> to none, type to filter]")
// Select Monday.
c.Send(string(terminal.KeyTab))
c.Send(" ")
c.Send(string(terminal.KeyArrowDown))
c.SendLine(" ")
c.ExpectEOF()
},
[]core.OptionAnswer{
{Value: "Monday", Index: 1},
{Value: "Tuesday", Index: 2},
},
},
{
"default value as []string",
&MultiSelect{
Message: "What days do you prefer:",
Options: []string{"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"},
Default: []string{"Tuesday", "Thursday"},
},
func(c expectConsole) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, <right> to all, <left> to none, type to filter]")
c.SendLine("")
c.ExpectEOF()
},
[]core.OptionAnswer{
{Value: "Tuesday", Index: 2},
{Value: "Thursday", Index: 4},
},
},
{
"default value as []int",
&MultiSelect{
Message: "What days do you prefer:",
Options: []string{"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"},
Default: []int{2, 4},
},
func(c expectConsole) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, <right> to all, <left> to none, type to filter]")
c.SendLine("")
c.ExpectEOF()
},
[]core.OptionAnswer{
{Value: "Tuesday", Index: 2},
{Value: "Thursday", Index: 4},
},
},
{
"overriding default",
&MultiSelect{
Message: "What days do you prefer:",
Options: []string{"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"},
Default: []string{"Tuesday", "Thursday"},
},
func(c expectConsole) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, <right> to all, <left> to none, type to filter]")
// Deselect Tuesday.
c.Send(string(terminal.KeyArrowDown))
c.Send(string(terminal.KeyArrowDown))
c.SendLine(" ")
c.ExpectEOF()
},
[]core.OptionAnswer{{Value: "Thursday", Index: 4}},
},
{
"prompt for help",
&MultiSelect{
Message: "What days do you prefer:",
Options: []string{"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"},
Help: "Saturday is best",
},
func(c expectConsole) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, <right> to all, <left> to none, type to filter, ? for more help]")
c.Send("?")
c.ExpectString("Saturday is best")
// Select Saturday
c.Send(string(terminal.KeyArrowUp))
c.SendLine(" ")
c.ExpectEOF()
},
[]core.OptionAnswer{{Value: "Saturday", Index: 6}},
},
{
"page size",
&MultiSelect{
Message: "What days do you prefer:",
Options: []string{"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"},
PageSize: 1,
},
func(c expectConsole) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, <right> to all, <left> to none, type to filter]")
// Select Monday.
c.Send(string(terminal.KeyArrowDown))
c.SendLine(" ")
c.ExpectEOF()
},
[]core.OptionAnswer{{Value: "Monday", Index: 1}},
},
{
"vim mode",
&MultiSelect{
Message: "What days do you prefer:",
Options: []string{"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"},
VimMode: true,
},
func(c expectConsole) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, <right> to all, <left> to none, type to filter]")
// Select Tuesday.
c.Send("jj ")
// Select Thursday.
c.Send("jj ")
// Select Saturday.
c.Send("jj ")
c.SendLine("")
c.ExpectEOF()
},
[]core.OptionAnswer{
{Value: "Tuesday", Index: 2},
{Value: "Thursday", Index: 4},
{Value: "Saturday", Index: 6},
},
},
{
"filter interaction",
&MultiSelect{
Message: "What days do you prefer:",
Options: []string{"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"},
},
func(c expectConsole) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, <right> to all, <left> to none, type to filter]")
// Filter down to Tuesday.
c.Send("Tues")
// Select Tuesday.
c.Send(" ")
c.SendLine("")
c.ExpectEOF()
},
[]core.OptionAnswer{{Value: "Tuesday", Index: 2}},
},
{
"filter is case-insensitive",
&MultiSelect{
Message: "What days do you prefer:",
Options: []string{"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"},
},
func(c expectConsole) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, <right> to all, <left> to none, type to filter]")
// Filter down to Tuesday.
c.Send("tues")
// Select Tuesday.
c.Send(" ")
c.SendLine("")
c.ExpectEOF()
},
[]core.OptionAnswer{{Value: "Tuesday", Index: 2}},
},
{
"custom filter",
&MultiSelect{
Message: "What days do you prefer:",
Options: []string{"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"},
Filter: func(filterValue string, optValue string, index int) bool {
return strings.Contains(optValue, filterValue) && len(optValue) >= 7
},
},
func(c expectConsole) {
c.ExpectString("What days do you prefer:")
// Filter down to days which names are longer than 7 runes
c.Send("day")
// Select Wednesday.
c.Send(string(terminal.KeyArrowDown))
c.SendLine(" ")
c.ExpectEOF()
},
[]core.OptionAnswer{{Value: "Wednesday", Index: 3}},
},
{
"clears input on select",
&MultiSelect{
Message: "What days do you prefer:",
Options: []string{"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"},
},
func(c expectConsole) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, <right> to all, <left> to none, type to filter]")
// Filter down to Tuesday.
c.Send("Tues")
// Select Tuesday.
c.Send(" ")
// Filter down to Tuesday.
c.Send("Tues")
// Deselect Tuesday.
c.Send(" ")
c.SendLine("")
c.ExpectEOF()
},
[]core.OptionAnswer{},
},
{
"select all",
&MultiSelect{
Message: "What days do you prefer:",
Options: []string{"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"},
},
func(c expectConsole) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, <right> to all, <left> to none, type to filter]")
// Select all
c.Send(string(terminal.KeyArrowRight))
c.SendLine("")
c.ExpectEOF()
},
[]core.OptionAnswer{
{Value: "Sunday", Index: 0},
{Value: "Monday", Index: 1},
{Value: "Tuesday", Index: 2},
{Value: "Wednesday", Index: 3},
{Value: "Thursday", Index: 4},
{Value: "Friday", Index: 5},
{Value: "Saturday", Index: 6},
},
},
{
"select none",
&MultiSelect{
Message: "What days do you prefer:",
Options: []string{"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"},
},
func(c expectConsole) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, <right> to all, <left> to none, type to filter]")
// Select first
c.Send(" ")
// Select second
c.Send(string(terminal.KeyArrowDown))
c.Send(" ")
// Deselect all
c.Send(string(terminal.KeyArrowLeft))
c.SendLine("")
c.ExpectEOF()
},
[]core.OptionAnswer{},
},
{
"select all with filter",
&MultiSelect{
Message: "What days do you prefer:",
Options: []string{"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"},
},
func(c expectConsole) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, <right> to all, <left> to none, type to filter]")
// Send filter
c.Send("tu")
// Select all
c.Send(string(terminal.KeyArrowRight))
c.SendLine("")
c.ExpectEOF()
},
[]core.OptionAnswer{
{Value: "Tuesday", Index: 2},
{Value: "Saturday", Index: 6},
},
},
{
"select all with filter and select others without filter",
&MultiSelect{
Message: "What days do you prefer:",
Options: []string{"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"},
},
func(c expectConsole) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, <right> to all, <left> to none, type to filter]")
// Select first
c.Send(" ")
// Select second
c.Send(string(terminal.KeyArrowDown))
c.Send(" ")
// Send filter
c.Send("tu")
// Select all
c.Send(string(terminal.KeyArrowRight))
c.SendLine("")
c.ExpectEOF()
},
[]core.OptionAnswer{
{Value: "Sunday", Index: 0},
{Value: "Monday", Index: 1},
{Value: "Tuesday", Index: 2},
{Value: "Saturday", Index: 6},
},
},
{
"select all with filter and deselect one without filter",
&MultiSelect{
Message: "What days do you prefer:",
Options: []string{"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"},
},
func(c expectConsole) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, <right> to all, <left> to none, type to filter]")
// Send filter
c.Send("tu")
// Select all
c.Send(string(terminal.KeyArrowRight))
// Deselect second
c.Send(string(terminal.KeyArrowDown))
c.Send(string(terminal.KeyArrowDown))
c.Send(" ")
c.SendLine("")
c.ExpectEOF()
},
[]core.OptionAnswer{
{Value: "Saturday", Index: 6},
},
},
{
"delete filter word",
&MultiSelect{
Message: "What days do you prefer:",
Options: []string{"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"},
},
func(c expectConsole) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, <right> to all, <left> to none, type to filter]")
// Filter down to 'Sunday'
c.Send("su")
// Delete 'u'
c.Send(string(terminal.KeyDelete))
// Filter down to 'Saturday'
c.Send("at")
// Select 'Saturday'
c.Send(string(terminal.KeyArrowDown))
c.Send(" ")
c.SendLine("")
c.ExpectEOF()
},
[]core.OptionAnswer{
{Value: "Saturday", Index: 6},
},
},
{
"delete filter word in rune",
&MultiSelect{
Message: "今天中午吃什么?",
Options: []string{"青椒牛肉丝", "小炒肉", "小煎鸡"},
},
func(c expectConsole) {
c.ExpectString("今天中午吃什么? [Use arrows to move, space to select, <right> to all, <left> to none, type to filter]")
// Filter down to 小炒肉.
c.Send("小炒")
// Filter down to 小炒肉 and 小煎鸡.
c.Send(string(terminal.KeyBackspace))
// Filter down to 小煎鸡.
c.Send("煎")
// Select 小煎鸡.
c.Send(" ")
c.SendLine("")
c.ExpectEOF()
},
[]core.OptionAnswer{
{Value: "小煎鸡", Index: 2},
},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
RunPromptTest(t, test)
})
}
}
func TestMultiSelectPromptKeepFilter(t *testing.T) {
tests := []PromptTest{
{
"multi select with filter keep",
&MultiSelect{
Message: "What color do you prefer:",
Options: []string{"green", "red", "light-green", "blue", "black", "yellow", "purple"},
},
func(c expectConsole) {
c.ExpectString("What color do you prefer: [Use arrows to move, space to select, <right> to all, <left> to none, type to filter]")
// Filter down to green
c.Send("green")
// Select green.
c.Send(" ")
// Select light-green.
c.Send(string(terminal.KeyArrowDown))
c.Send(" ")
c.SendLine("")
c.ExpectEOF()
},
[]core.OptionAnswer{
{Value: "green", Index: 0},
{Value: "light-green", Index: 2},
},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
RunPromptTestKeepFilter(t, test)
})
}
}