summaryrefslogtreecommitdiff
path: root/test/parallel/test-readline-interface.js
diff options
context:
space:
mode:
authorAzard <330815461@qq.com>2017-06-06 20:22:22 +0800
committerAnna Henningsen <anna@addaleax.net>2017-07-31 23:03:18 +0200
commitb8e0a5ea23e536fe24e94f1d460aaeadb8839e76 (patch)
tree30d432b1165629a63dcde08743ff798c3ed6aef0 /test/parallel/test-readline-interface.js
parent717a138b4a8d5b7e21349754ac14a1974840c991 (diff)
downloadandroid-node-v8-b8e0a5ea23e536fe24e94f1d460aaeadb8839e76.tar.gz
android-node-v8-b8e0a5ea23e536fe24e94f1d460aaeadb8839e76.tar.bz2
android-node-v8-b8e0a5ea23e536fe24e94f1d460aaeadb8839e76.zip
readline: remove max limit of crlfDelay
PR-URL: https://github.com/nodejs/node/pull/13497 Reviewed-By: Prince John Wesley <princejohnwesley@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Refael Ackermann <refack@gmail.com>
Diffstat (limited to 'test/parallel/test-readline-interface.js')
-rw-r--r--test/parallel/test-readline-interface.js71
1 files changed, 65 insertions, 6 deletions
diff --git a/test/parallel/test-readline-interface.js b/test/parallel/test-readline-interface.js
index 9ce978b86e..e73481d429 100644
--- a/test/parallel/test-readline-interface.js
+++ b/test/parallel/test-readline-interface.js
@@ -63,14 +63,26 @@ function isWarned(emitter) {
}
{
- // Maximum crlfDelay is 2000ms
+ // set crlfDelay to float 100.5ms
const fi = new FakeInput();
const rli = new readline.Interface({
input: fi,
output: fi,
- crlfDelay: 1 << 30
+ crlfDelay: 100.5
});
- assert.strictEqual(rli.crlfDelay, 2000);
+ assert.strictEqual(rli.crlfDelay, 100.5);
+ rli.close();
+}
+
+{
+ // set crlfDelay to 5000ms
+ const fi = new FakeInput();
+ const rli = new readline.Interface({
+ input: fi,
+ output: fi,
+ crlfDelay: 5000
+ });
+ assert.strictEqual(rli.crlfDelay, 5000);
rli.close();
}
@@ -248,7 +260,7 @@ function isWarned(emitter) {
rli.close();
// Emit two line events when the delay
- // between \r and \n exceeds crlfDelay
+ // between \r and \n exceeds crlfDelay
{
const fi = new FakeInput();
const delay = 200;
@@ -270,8 +282,55 @@ function isWarned(emitter) {
}), delay * 2);
}
+ // Emit one line events when the delay between \r and \n is
+ // over the default crlfDelay but within the setting value
+ {
+ const fi = new FakeInput();
+ const delay = 200;
+ const crlfDelay = 500;
+ const rli = new readline.Interface({
+ input: fi,
+ output: fi,
+ terminal: terminal,
+ crlfDelay
+ });
+ let callCount = 0;
+ rli.on('line', function(line) {
+ callCount++;
+ });
+ fi.emit('data', '\r');
+ setTimeout(common.mustCall(() => {
+ fi.emit('data', '\n');
+ assert.strictEqual(callCount, 1);
+ rli.close();
+ }), delay);
+ }
+
+ // set crlfDelay to `Infinity` is allowed
+ {
+ const fi = new FakeInput();
+ const delay = 200;
+ const crlfDelay = Infinity;
+ const rli = new readline.Interface({
+ input: fi,
+ output: fi,
+ terminal: terminal,
+ crlfDelay
+ });
+ let callCount = 0;
+ rli.on('line', function(line) {
+ callCount++;
+ });
+ fi.emit('data', '\r');
+ setTimeout(common.mustCall(() => {
+ fi.emit('data', '\n');
+ assert.strictEqual(callCount, 1);
+ rli.close();
+ }), delay);
+ }
+
// \t when there is no completer function should behave like an ordinary
- // character
+ // character
fi = new FakeInput();
rli = new readline.Interface({ input: fi, output: fi, terminal: true });
called = false;
@@ -513,7 +572,7 @@ function isWarned(emitter) {
assert.strictEqual(isWarned(process.stdout._events), false);
}
- //can create a new readline Interface with a null output arugument
+ // can create a new readline Interface with a null output arugument
fi = new FakeInput();
rli = new readline.Interface({ input: fi, output: null, terminal: terminal });