summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-client-parse-error.js
blob: 43f85853b3bbeb2f28663db164ae5d5aea1b09f4 (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
'use strict';
var common = require('../common');
var assert = require('assert');

var http = require('http');
var net = require('net');

var connects = 0;
var parseErrors = 0;

// Create a TCP server
net.createServer(function(c) {
  console.log('connection');
  if (++connects === 1) {
    c.end('HTTP/1.1 302 Object Moved\r\nContent-Length: 0\r\n\r\nhi world');
  } else {
    c.end('bad http - should trigger parse error\r\n');
    this.close();
  }
}).listen(common.PORT, '127.0.0.1', function() {
  for (var i = 0; i < 2; i++) {
    http.request({
      host: '127.0.0.1',
      port: common.PORT,
      method: 'GET',
      path: '/'
    }).on('error', function(e) {
      console.log('got error from client');
      assert.ok(e.message.indexOf('Parse Error') >= 0);
      assert.equal(e.code, 'HPE_INVALID_CONSTANT');
      parseErrors++;
    }).end();
  }
});

process.on('exit', function() {
  assert.equal(connects, 2);
  assert.equal(parseErrors, 2);
});