forked from AlecAivazis/survey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmultiselect_test.go
399 lines (380 loc) · 11.6 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
package survey
import (
"bytes"
"fmt"
"io"
"os"
"strings"
"testing"
expect "github.com/Netflix/go-expect"
"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, 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, 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, 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, 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 {
r, w, err := os.Pipe()
assert.Nil(t, err, test.title)
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.Nil(t, err, test.title)
w.Close()
var buf bytes.Buffer
io.Copy(&buf, r)
assert.Contains(t, buf.String(), test.expected, test.title)
}
}
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 *expect.Console) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, type to filter]")
// Select Monday.
c.Send(string(terminal.KeyArrowDown))
c.SendLine(" ")
c.ExpectEOF()
},
[]core.OptionAnswer{core.OptionAnswer{Value: "Monday", Index: 1}},
},
{
"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 *expect.Console) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, type to filter]")
c.SendLine("")
c.ExpectEOF()
},
[]core.OptionAnswer{
core.OptionAnswer{Value: "Tuesday", Index: 2},
core.OptionAnswer{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 *expect.Console) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, type to filter]")
c.SendLine("")
c.ExpectEOF()
},
[]core.OptionAnswer{
core.OptionAnswer{Value: "Tuesday", Index: 2},
core.OptionAnswer{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 *expect.Console) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, type to filter]")
// Deselect Tuesday.
c.Send(string(terminal.KeyArrowDown))
c.Send(string(terminal.KeyArrowDown))
c.SendLine(" ")
c.ExpectEOF()
},
[]core.OptionAnswer{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 *expect.Console) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, 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{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 *expect.Console) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, type to filter]")
// Select Monday.
c.Send(string(terminal.KeyArrowDown))
c.SendLine(" ")
c.ExpectEOF()
},
[]core.OptionAnswer{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 *expect.Console) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, type to filter]")
// Select Tuesday.
c.Send("jj ")
// Select Thursday.
c.Send("jj ")
// Select Saturday.
c.Send("jj ")
c.SendLine("")
c.ExpectEOF()
},
[]core.OptionAnswer{
core.OptionAnswer{Value: "Tuesday", Index: 2},
core.OptionAnswer{Value: "Thursday", Index: 4},
core.OptionAnswer{Value: "Saturday", Index: 6},
},
},
{
"filter interaction",
&MultiSelect{
Message: "What days do you prefer:",
Options: []string{"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"},
},
func(c *expect.Console) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, type to filter]")
// Filter down to Tuesday.
c.Send("Tues")
// Select Tuesday.
c.Send(" ")
c.SendLine("")
c.ExpectEOF()
},
[]core.OptionAnswer{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 *expect.Console) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, type to filter]")
// Filter down to Tuesday.
c.Send("tues")
// Select Tuesday.
c.Send(" ")
c.SendLine("")
c.ExpectEOF()
},
[]core.OptionAnswer{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 *expect.Console) {
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{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 *expect.Console) {
c.ExpectString("What days do you prefer: [Use arrows to move, space to select, 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{},
},
}
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 *expect.Console) {
c.ExpectString("What color do you prefer: [Use arrows to move, space to select, 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{
core.OptionAnswer{Value: "green", Index: 0},
core.OptionAnswer{Value: "light-green", Index: 2},
},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
RunPromptTestKeepFilter(t, test)
})
}
}