blob: f3973f25d69412d74841ebc28e659f66f64e8290 (
plain)
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
|
'use strict';
require('../common');
const stream = require('stream');
const assert = require('assert');
const repl = require('repl');
let output = '';
const inputStream = new stream.PassThrough();
const outputStream = new stream.PassThrough();
outputStream.on('data', function(d) {
output += d;
});
const r = repl.start({
input: inputStream,
output: outputStream,
terminal: true
});
r.defineCommand('say1', {
help: 'help for say1',
action: function(thing) {
output = '';
this.output.write(`hello ${thing}\n`);
this.displayPrompt();
}
});
r.defineCommand('say2', function() {
output = '';
this.output.write('hello from say2\n');
this.displayPrompt();
});
inputStream.write('.help\n');
assert.match(output, /\n\.say1 {5}help for say1\n/);
assert.match(output, /\n\.say2\n/);
inputStream.write('.say1 node developer\n');
assert.ok(output.startsWith('hello node developer\n'),
`say1 output starts incorrectly: "${output}"`);
assert.ok(output.includes('> '),
`say1 output does not include prompt: "${output}"`);
inputStream.write('.say2 node developer\n');
assert.ok(output.startsWith('hello from say2\n'),
`say2 output starts incorrectly: "${output}"`);
assert.ok(output.includes('> '),
`say2 output does not include prompt: "${output}"`);
|