summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-readable-data-event.js
blob: 21b1fa65c661c87d755c83c8f4467758646b3149 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
'use strict';

const common = require('../common');
const assert = require('assert');
const http = require('http');
const helloWorld = 'Hello World!';
const helloAgainLater = 'Hello again later!';

let next = null;

const server = http.createServer((req, res) => {
  res.writeHead(200, {
    'Content-Length': '' + (helloWorld.length + helloAgainLater.length)
  });

  // We need to make sure the data is flushed
  // before writing again
  next = () => {
    res.end(helloAgainLater);
    next = () => {};
  };

  res.write(helloWorld);
}).listen(0, function() {
  const opts = {
    hostname: 'localhost',
    port: server.address().port,
    path: '/'
  };

  const expectedData = [helloWorld, helloAgainLater];
  const expectedRead = [helloWorld, null, helloAgainLater, null, null];

  const req = http.request(opts, (res) => {
    res.on('error', common.mustNotCall());

    res.on('readable', common.mustCall(() => {
      let data;

      do {
        data = res.read();
        assert.strictEqual(data, expectedRead.shift());
        next();
      } while (data !== null);
    }, 3));

    res.setEncoding('utf8');
    res.on('data', common.mustCall((data) => {
      assert.strictEqual(data, expectedData.shift());
    }, 2));

    res.on('end', common.mustCall(() => {
      server.close();
    }));
  });

  req.end();
});