summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-response-no-headers.js
blob: e10571af4ccf250f4697af9408b31001e507c150 (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
'use strict';
const common = require('../common');
const assert = require('assert');
const http = require('http');
const net = require('net');

const expected = {
  '0.9': 'I AM THE WALRUS',
  '1.0': 'I AM THE WALRUS',
  '1.1': ''
};

function test(httpVersion, callback) {
  const server = net.createServer(function(conn) {
    const reply = 'HTTP/' + httpVersion + ' 200 OK\r\n\r\n' +
                  expected[httpVersion];

    conn.end(reply);
  });

  server.listen(0, '127.0.0.1', common.mustCall(function() {
    const options = {
      host: '127.0.0.1',
      port: this.address().port
    };

    const req = http.get(options, common.mustCall(function(res) {
      let body = '';

      res.on('data', function(data) {
        body += data;
      });

      res.on('end', common.mustCall(function() {
        assert.strictEqual(body, expected[httpVersion]);
        server.close();
        if (callback) process.nextTick(callback);
      }));
    }));

    req.on('error', function(err) {
      throw err;
    });
  }));
}

test('0.9', function() {
  test('1.0', function() {
    test('1.1');
  });
});