Sha256: 9ef391135a16283e23663faf0e0d677dfba62bb82a928c2ee33f57c601c2f551

Contents?: true

Size: 1.02 KB

Versions: 3

Compression:

Stored size: 1.02 KB

Contents

common = require("../common");
assert = common.assert

var assert = require("assert");
var http = require("http");
var sys = require("sys");

var body = "hello world";

server = http.createServer(function (req, res) {
  res.writeHeader(200 , { 'Content-Length': body.length.toString()
                        , 'Content-Type': 'text/plain'
                        });
  console.log('method: ' + req.method);
  if (req.method != 'HEAD') res.write(body);
  res.end();
});
server.listen(common.PORT);

var gotEnd = false;

server.addListener('listening', function() {
  var client = http.createClient(common.PORT);
  var request = client.request("HEAD", "/");
  request.addListener('response', function (response) {
    console.log('got response');
    response.addListener("data", function () {
      process.exit(2);
    });
    response.addListener("end", function () {
      process.exit(0);
    });
  });
  request.end();
});

//give a bit of time for the server to respond before we check it
setTimeout(function() {
  process.exit(1);
}, 2000);

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rednode-0.1.2 ext/node/test/disabled/test-http-head-request.js
rednode-0.1.1 ext/node/test/disabled/test-http-head-request.js
rednode-0.1.0 ext/node/test/disabled/test-http-head-request.js