summaryrefslogtreecommitdiff
path: root/test/pseudo-tty/test-readable-tty-keepalive.js
blob: 4cf0b9fb2963f9990b7e80fa7c345c633eed6744 (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
'use strict';

const common = require('../common');
const assert = require('assert');

// This test ensures that Node.js will not ignore tty 'readable' subscribers
// when it's the only tty subscriber and the only thing keeping event loop alive
// https://github.com/nodejs/node/issues/20503

process.stdin.setEncoding('utf8');

const expectedInput = ['foo', 'bar', null];

process.stdin.on('readable', common.mustCall(function() {
  const data = process.stdin.read();
  assert.strictEqual(data, expectedInput.shift());
}, 3)); // first 2 data, then end

process.stdin.on('end', common.mustCall());

setTimeout(() => {
  process.stdin.push('foo');
  process.nextTick(() => {
    process.stdin.push('bar');
    process.nextTick(() => {
      process.stdin.push(null);
    });
  });
}, 1);