summaryrefslogtreecommitdiff
path: root/test/simple/test-http-contentLength0.js
blob: a7e2b5acdc6b8d8db0abda19ee5031c37814a7e5 (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
var common = require('../common');
var http = require('http');

// Simple test of Node's HTTP Client choking on a response
// with a 'Content-Length: 0 ' response header.
// I.E. a space character after the 'Content-Length' throws an `error` event.


var s = http.createServer(function(req, res) {
  res.writeHead(200, {'Content-Length': '0 '});
  res.end();
});
s.listen(common.PORT, function() {

  var r = http.createClient(common.PORT);
  var request = r.request('GET', '/');

  request.on('response', function(response) {
    console.log('STATUS: ' + response.statusCode);
    s.close();
  });

  request.end();
});