Browse Source

test: increase readline coverage

PR-URL: https://github.com/nodejs/node/pull/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>
v6
Anna Henningsen 8 years ago
parent
commit
b2ab41e5ae
No known key found for this signature in database GPG Key ID: D8B9F5AEAE84E4CF
  1. 45
      test/parallel/test-readline.js

45
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');
}
Loading…
Cancel
Save