summaryrefslogtreecommitdiff
path: root/test/parallel/test-stream2-httpclient-response-end.js
blob: 73667eb3dd2e92c8a51e7b7e3bba2fa5fa4a7d93 (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
'use strict';
const common = require('../common');
const assert = require('assert');
const http = require('http');
const msg = 'Hello';
const server = http.createServer(function(req, res) {
  res.writeHead(200, { 'Content-Type': 'text/plain' });
  res.end(msg);
}).listen(0, function() {
  http.get({ port: this.address().port }, function(res) {
    let data = '';
    res.on('readable', common.mustCall(function() {
      console.log('readable event');
      let chunk;
      while ((chunk = res.read()) !== null) {
        data += chunk;
      }
    }));
    res.on('end', common.mustCall(function() {
      console.log('end event');
      assert.strictEqual(msg, data);
      server.close();
    }));
  });
});