summaryrefslogtreecommitdiff
path: root/test/async-hooks/test-ttywrap.readstream.js
diff options
context:
space:
mode:
authorTrevor Norris <trev.norris@gmail.com>2017-06-29 15:20:47 -0600
committerRefael Ackermann <refack@gmail.com>2017-07-12 14:44:41 -0400
commit250d50b3802f177e7ca3877b1dfeaf775f3ea6cf (patch)
tree421c644dc42180b1b6cdbdb850e9515804083361 /test/async-hooks/test-ttywrap.readstream.js
parentf52c7078533db859dd03b20eccdb502e5f048039 (diff)
downloadandroid-node-v8-250d50b3802f177e7ca3877b1dfeaf775f3ea6cf.tar.gz
android-node-v8-250d50b3802f177e7ca3877b1dfeaf775f3ea6cf.tar.bz2
android-node-v8-250d50b3802f177e7ca3877b1dfeaf775f3ea6cf.zip
test,async_hooks: skip whether TTY is available
If TTY isn't available then the test will always fail. Also use the already available process.stdin instead of opening another ReadStream. PR-URL: https://github.com/nodejs/node/pull/13991 Fixes: https://github.com/nodejs/node/issues/13984 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com>
Diffstat (limited to 'test/async-hooks/test-ttywrap.readstream.js')
-rw-r--r--test/async-hooks/test-ttywrap.readstream.js15
1 files changed, 9 insertions, 6 deletions
diff --git a/test/async-hooks/test-ttywrap.readstream.js b/test/async-hooks/test-ttywrap.readstream.js
index 725176f088..65853da1f7 100644
--- a/test/async-hooks/test-ttywrap.readstream.js
+++ b/test/async-hooks/test-ttywrap.readstream.js
@@ -1,4 +1,5 @@
'use strict';
+
const common = require('../common');
const assert = require('assert');
@@ -10,31 +11,33 @@ const { checkInvocations } = require('./hook-checks');
const hooks = initHooks();
hooks.enable();
+if (!process.stdin.isTTY)
+ return common.skip('no valid readable TTY available');
+
// test specific setup
-const { ReadStream } = require('tty');
const checkInitOpts = { init: 1 };
const checkEndedOpts = { init: 1, before: 1, after: 1, destroy: 1 };
// test code
//
// listen to stdin except on Windows
-const targetFD = common.isWindows ? 1 : 0;
-const ttyStream = new ReadStream(targetFD);
const activities = hooks.activitiesOfTypes('TTYWRAP');
assert.strictEqual(activities.length, 1);
+
const tty = activities[0];
assert.strictEqual(tty.type, 'TTYWRAP');
assert.strictEqual(typeof tty.uid, 'number');
assert.strictEqual(typeof tty.triggerAsyncId, 'number');
checkInvocations(tty, checkInitOpts, 'when tty created');
+
const delayedOnCloseHandler = common.mustCall(() => {
checkInvocations(tty, checkEndedOpts, 'when tty ended');
});
-ttyStream.on('error', (err) => assert.fail(err));
-ttyStream.on('close', common.mustCall(() =>
+process.stdin.on('error', (err) => assert.fail(err));
+process.stdin.on('close', common.mustCall(() =>
tick(2, delayedOnCloseHandler)
));
-ttyStream.destroy();
+process.stdin.destroy();
checkInvocations(tty, checkInitOpts, 'when tty.end() was invoked');
process.on('exit', () => {