Skip to content

Commit

Permalink
test: increase readline coverage
Browse files Browse the repository at this point in the history
PR-URL: #12761
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
  • Loading branch information
addaleax authored and gibfahn committed Jun 18, 2017
1 parent 90e1560 commit 8c891a2
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions test/parallel/test-readline.js
@@ -0,0 +1,45 @@
'use strict';
const common = require('../common');
const { PassThrough } = require('stream');
const readline = require('readline');
const assert = require('assert');

{
const input = new PassThrough();
const rl = readline.createInterface({
terminal: true,
input: input
});

rl.on('line', common.mustCall((data) => {
assert.strictEqual(data, 'abc');
}));

input.end('abc');
}

{
const input = new PassThrough();
const rl = readline.createInterface({
terminal: true,
input: input
});

rl.on('line', common.mustNotCall('must not be called before newline'));

input.write('abc');
}

{
const input = new PassThrough();
const rl = readline.createInterface({
terminal: true,
input: input
});

rl.on('line', common.mustCall((data) => {
assert.strictEqual(data, 'abc');
}));

input.write('abc\n');
}

0 comments on commit 8c891a2

Please sign in to comment.