-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathinput.test.ts
More file actions
491 lines (391 loc) · 15.6 KB
/
input.test.ts
File metadata and controls
491 lines (391 loc) · 15.6 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
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
import { describe, it, expect } from 'vitest';
import { render } from '@inquirer/testing';
import input from './src/index.ts';
describe('input prompt', () => {
it('handle simple use case', async () => {
const { answer, events, getScreen } = await render(input, {
message: 'What is your name',
});
expect(getScreen()).toMatchInlineSnapshot(`"? What is your name"`);
events.type('J');
expect(getScreen()).toMatchInlineSnapshot(`"? What is your name J"`);
events.type('ohn');
events.keypress('enter');
await expect(answer).resolves.toEqual('John');
expect(getScreen()).toMatchInlineSnapshot(`"✔ What is your name John"`);
});
it('handle transformer', async () => {
const { answer, events, getScreen } = await render(input, {
message: 'What is your name',
transformer: (value: string, { isFinal }: { isFinal: boolean }) =>
isFinal ? 'Transformed' : `t+${value}`,
});
expect(getScreen()).toMatchInlineSnapshot(`"? What is your name t+"`);
events.type('John');
expect(getScreen()).toMatchInlineSnapshot(`"? What is your name t+John"`);
events.keypress('enter');
await expect(answer).resolves.toEqual('John');
expect(getScreen()).toMatchInlineSnapshot(`"✔ What is your name Transformed"`);
});
it('handle synchronous validation', async () => {
const { answer, events, getScreen } = await render(input, {
message: 'Answer 2 ===',
validate: (value: string) => value === '2',
});
expect(getScreen()).toMatchInlineSnapshot(`"? Answer 2 ==="`);
events.type('1');
expect(getScreen()).toMatchInlineSnapshot(`"? Answer 2 === 1"`);
events.keypress('enter');
await Promise.resolve();
await Promise.resolve();
expect(getScreen()).toMatchInlineSnapshot(`
"? Answer 2 === 1
> You must provide a valid value"
`);
events.keypress('backspace');
events.type('2');
expect(getScreen()).toMatchInlineSnapshot(`"? Answer 2 === 2"`);
events.keypress('enter');
await expect(answer).resolves.toEqual('2');
});
it('can clear value when validation fail', async () => {
const { answer, events, getScreen } = await render(input, {
message: 'Answer 2 ===',
validate: (value: string) => value === '2',
theme: {
validationFailureMode: 'clear',
},
});
expect(getScreen()).toMatchInlineSnapshot(`"? Answer 2 ==="`);
events.type('1');
expect(getScreen()).toMatchInlineSnapshot(`"? Answer 2 === 1"`);
events.keypress('enter');
await Promise.resolve();
await Promise.resolve();
expect(getScreen()).toMatchInlineSnapshot(`
"? Answer 2 ===
> You must provide a valid value"
`);
events.type('2');
expect(getScreen()).toMatchInlineSnapshot(`"? Answer 2 === 2"`);
events.keypress('enter');
await expect(answer).resolves.toEqual('2');
});
it('handle asynchronous validation', async () => {
const { answer, events, getScreen } = await render(input, {
message: 'Answer 2 ===',
validate: (value: string) => {
return new Promise<string | boolean>((resolve) => {
if (value === '2') {
resolve(true);
} else {
resolve('Answer must be 2');
}
});
},
});
expect(getScreen()).toMatchInlineSnapshot(`"? Answer 2 ==="`);
events.type('1');
expect(getScreen()).toMatchInlineSnapshot(`"? Answer 2 === 1"`);
events.keypress('enter');
await Promise.resolve();
await Promise.resolve();
expect(getScreen()).toMatchInlineSnapshot(`
"? Answer 2 === 1
> Answer must be 2"
`);
events.keypress('backspace');
events.type('2');
expect(getScreen()).toMatchInlineSnapshot(`"? Answer 2 === 2"`);
events.keypress('enter');
await expect(answer).resolves.toEqual('2');
});
it('handle default option', async () => {
const { answer, events, getScreen } = await render(input, {
message: 'What is your name',
default: 'Mike',
});
expect(getScreen()).toMatchInlineSnapshot(`"? What is your name (Mike)"`);
events.keypress('enter');
await expect(answer).resolves.toEqual('Mike');
expect(getScreen()).toMatchInlineSnapshot(`"✔ What is your name Mike"`);
});
it('handle overwriting the default option', async () => {
const { answer, events, getScreen } = await render(input, {
message: 'What is your name',
default: 'Mike',
});
expect(getScreen()).toMatchInlineSnapshot(`"? What is your name (Mike)"`);
events.type('John');
events.keypress('enter');
await expect(answer).resolves.toEqual('John');
expect(getScreen()).toMatchInlineSnapshot(`"✔ What is your name John"`);
});
it('handle removing the default option', async () => {
const { answer, events, getScreen } = await render(input, {
message: 'What is your name',
default: 'Mike',
});
expect(getScreen()).toMatchInlineSnapshot(`"? What is your name (Mike)"`);
events.keypress('backspace');
events.keypress('enter');
await expect(answer).resolves.toEqual('');
expect(getScreen()).toMatchInlineSnapshot(`"✔ What is your name"`);
});
it('handle editing the default option when prefill is omitted (backwards compatible)', async () => {
const { answer, events, getScreen } = await render(input, {
message: 'What is your name',
default: 'Mike',
});
expect(getScreen()).toMatchInlineSnapshot(`"? What is your name (Mike)"`);
events.keypress('tab');
expect(getScreen()).toMatchInlineSnapshot(`"? What is your name Mike"`);
events.type('y');
events.keypress('enter');
await expect(answer).resolves.toEqual('Mikey');
expect(getScreen()).toMatchInlineSnapshot(`"✔ What is your name Mikey"`);
});
it("handle editing the default option when prefill is set to 'tab'", async () => {
const { answer, events, getScreen } = await render(input, {
message: 'What is your name',
default: 'Mike',
prefill: 'tab',
});
expect(getScreen()).toMatchInlineSnapshot(`"? What is your name (Mike)"`);
events.keypress('tab');
expect(getScreen()).toMatchInlineSnapshot(`"? What is your name Mike"`);
events.type('y');
events.keypress('enter');
await expect(answer).resolves.toEqual('Mikey');
expect(getScreen()).toMatchInlineSnapshot(`"✔ What is your name Mikey"`);
});
it("handle default option as initial value when prefill is set to 'editable'", async () => {
const { answer, events, getScreen } = await render(input, {
message: 'What is your name',
default: 'Mike',
prefill: 'editable',
});
expect(getScreen()).toMatchInlineSnapshot(`"? What is your name Mike"`);
events.keypress('tab'); // Does nothing when prefill = 'editable'
expect(getScreen()).toMatchInlineSnapshot(`"? What is your name Mike"`);
events.type('y');
events.keypress('enter');
await expect(answer).resolves.toEqual('Mikey');
expect(getScreen()).toMatchInlineSnapshot(`"✔ What is your name Mikey"`);
});
it("show normal behaviour when prefill is 'editable' and no default value is provided", async () => {
const { answer, events, getScreen } = await render(input, {
message: 'What is your name',
prefill: 'editable',
});
expect(getScreen()).toMatchInlineSnapshot(`"? What is your name"`);
events.keypress('tab'); // Does nothing when prefill = 'editable' or no default value
expect(getScreen()).toMatchInlineSnapshot(`"? What is your name"`);
events.type('Mikey');
events.keypress('enter');
await expect(answer).resolves.toEqual('Mikey');
expect(getScreen()).toMatchInlineSnapshot(`"✔ What is your name Mikey"`);
});
it("show normal behaviour when prefill is 'tab' and no default value is provided", async () => {
const { answer, events, getScreen } = await render(input, {
message: 'What is your name',
prefill: 'tab',
});
expect(getScreen()).toMatchInlineSnapshot(`"? What is your name"`);
events.keypress('tab'); // Does nothing when prefill = 'editable' or no default value
expect(getScreen()).toMatchInlineSnapshot(`"? What is your name"`);
events.type('Mikey');
events.keypress('enter');
await expect(answer).resolves.toEqual('Mikey');
expect(getScreen()).toMatchInlineSnapshot(`"✔ What is your name Mikey"`);
});
it('shows validation message if user did not provide any value', async () => {
const { answer, events, getScreen } = await render(input, {
message: `What's your favorite food?`,
required: true,
});
events.keypress('enter');
await Promise.resolve();
expect(getScreen()).toMatchInlineSnapshot(`
"? What's your favorite food?
> You must provide a value"
`);
events.type('Quinoa');
events.keypress('enter');
await expect(answer).resolves.toEqual('Quinoa');
});
it('handle editing the answer (properly tracks cursor position)', async () => {
const { answer, events, getScreen } = await render(input, {
message: 'What is your name',
});
expect(getScreen()).toMatchInlineSnapshot(`"? What is your name"`);
events.type('Mkey');
expect(getScreen()).toMatchInlineSnapshot(`"? What is your name Mkey"`);
events.keypress('backspace');
expect(getScreen()).toMatchInlineSnapshot(`"? What is your name Mke"`);
events.keypress('left');
events.keypress('left');
events.type('i');
expect(getScreen()).toMatchInlineSnapshot(`"? What is your name Mike"`);
events.keypress('enter');
await expect(answer).resolves.toEqual('Mike');
expect(getScreen()).toMatchInlineSnapshot(`"✔ What is your name Mike"`);
});
it('is theme-able', async () => {
const { answer, events, getScreen } = await render(input, {
message: 'Answer must be: 2',
validate: (value?: string) => value === '2',
theme: {
prefix: 'Q:',
style: {
message: (text: string) => `${text} ===`,
error: (text: string) => `!! ${text} !!`,
answer: (text: string) => `_${text}_`,
},
},
});
expect(getScreen()).toMatchInlineSnapshot(`"Q: Answer must be: 2 ==="`);
events.type('1');
expect(getScreen()).toMatchInlineSnapshot(`"Q: Answer must be: 2 === 1"`);
events.keypress('enter');
await Promise.resolve();
await Promise.resolve();
expect(getScreen()).toMatchInlineSnapshot(`
"Q: Answer must be: 2 === 1
!! You must provide a valid value !!"
`);
events.keypress('backspace');
events.type('2');
events.keypress('enter');
await expect(answer).resolves.toEqual('2');
expect(getScreen()).toMatchInlineSnapshot(`"Q: Answer must be: 2 === _2_"`);
});
it('supports pattern validation', async () => {
const { answer, events, getScreen } = await render(input, {
message: 'Enter a number',
pattern: /^[0-9]*\.?[0-9]*$/,
});
events.type('123a');
events.keypress('enter');
await Promise.resolve();
await Promise.resolve();
expect(getScreen()).toMatchInlineSnapshot(`
"? Enter a number 123a
> Invalid input"
`);
events.keypress('backspace');
events.keypress('enter');
await expect(answer).resolves.toEqual('123');
expect(getScreen()).toMatchInlineSnapshot(`"✔ Enter a number 123"`);
});
it('supports pattern validation with custom error message', async () => {
const { answer, events, getScreen } = await render(input, {
message: 'Enter a number',
pattern: /^[0-9]*\.?[0-9]*$/,
patternError: 'Only numbers and a decimal point are allowed',
});
events.type('123a');
events.keypress('enter');
await Promise.resolve();
await Promise.resolve();
expect(getScreen()).toMatchInlineSnapshot(`
"? Enter a number 123a
> Only numbers and a decimal point are allowed"
`);
events.keypress('backspace');
events.keypress('enter');
await expect(answer).resolves.toEqual('123');
expect(getScreen()).toMatchInlineSnapshot(`"✔ Enter a number 123"`);
});
it('handle IME composition for Chinese characters (issue #1901)', async () => {
const {
answer,
events,
getScreen,
input: inputStream,
} = await render(input, {
message: 'Enter Chinese text',
});
expect(getScreen()).toMatchInlineSnapshot(`"? Enter Chinese text"`);
// Simulate typing "nihao" (你好) using IME
// During IME composition, the user types "nihao" in pinyin
// which gets converted to Chinese characters "你好"
// Step 1: User types 'n' - starts composition
events.type('n');
expect(getScreen()).toMatchInlineSnapshot(`"? Enter Chinese text n"`);
// Step 2: User types 'i' - continues composition "ni"
events.type('i');
expect(getScreen()).toMatchInlineSnapshot(`"? Enter Chinese text ni"`);
// Step 3: User selects character from IME - composition updates to "你"
// The IME sends backspace keypresses to clear "ni", then inserts "你"
// We simulate this by manually clearing the input buffer then writing the character
inputStream.write('\x7F\x7F'); // Simulate backspace characters clearing the buffer
events.keypress('backspace');
events.keypress('backspace');
inputStream.write('你');
inputStream.emit('keypress', null, { name: '你' });
// At this point, the display should show "你"
expect(getScreen()).toBe('? Enter Chinese text 你');
// Step 4: User continues typing "hao" for second character
events.type('hao');
// Step 5: User selects second character "好"
// Again, IME sends backspaces then the character
inputStream.write('\x7F\x7F\x7F'); // Simulate backspace characters
events.keypress('backspace');
events.keypress('backspace');
events.keypress('backspace');
inputStream.write('好');
inputStream.emit('keypress', null, { name: '好' });
// The final display should show both Chinese characters
expect(getScreen()).toBe('? Enter Chinese text 你好');
events.keypress('enter');
const result = await answer;
// The answer should be the complete Chinese phrase
expect(result).toBe('你好');
});
it('handle IME composition with cursor movement (issue #1901)', async () => {
const {
answer,
events,
getScreen,
input: inputStream,
} = await render(input, {
message: 'Enter Chinese text',
});
expect(getScreen()).toMatchInlineSnapshot(`"? Enter Chinese text"`);
// First, input "你好" (nihao)
events.type('ni');
inputStream.write('\x7F\x7F');
events.keypress('backspace');
events.keypress('backspace');
inputStream.write('你');
inputStream.emit('keypress', null, { name: '你' });
events.type('hao');
inputStream.write('\x7F\x7F\x7F');
events.keypress('backspace');
events.keypress('backspace');
events.keypress('backspace');
inputStream.write('好');
inputStream.emit('keypress', null, { name: '好' });
// Screen should show "你好"
expect(getScreen()).toBe('? Enter Chinese text 你好');
// Move cursor to middle (between 你 and 好)
events.keypress('left');
// Now insert new character "世" in the middle
// User types "shi" in pinyin
events.type('shi');
// IME converts to "世"
inputStream.write('\x7F\x7F\x7F');
events.keypress('backspace');
events.keypress('backspace');
events.keypress('backspace');
inputStream.write('世');
inputStream.emit('keypress', null, { name: '世' });
// Screen should show "你世好" with all three characters
expect(getScreen()).toBe('? Enter Chinese text 你世好');
events.keypress('enter');
const result = await answer;
// The answer should be "你世好"
expect(result).toBe('你世好');
});
});