0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-25 08:19:38 +01:00
nodejs/test/parallel/test-http-allow-req-after-204-res.js
isaacs 3e1b1dd4a9 Remove excessive copyright/license boilerplate
The copyright and license notice is already in the LICENSE file.  There
is no justifiable reason to also require that it be included in every
file, since the individual files are not individually distributed except
as part of the entire package.
2015-01-12 15:30:28 -08:00

46 lines
1.1 KiB
JavaScript

var common = require('../common');
var http = require('http');
var assert = require('assert');
// first 204 or 304 works, subsequent anything fails
var codes = [204, 200];
// Methods don't really matter, but we put in something realistic.
var methods = ['DELETE', 'DELETE'];
var server = http.createServer(function(req, res) {
var code = codes.shift();
assert.equal('number', typeof code);
assert.ok(code > 0);
console.error('writing %d response', code);
res.writeHead(code, {});
res.end();
});
function nextRequest() {
var method = methods.shift();
console.error('writing request: %s', method);
var request = http.request({
port: common.PORT,
method: method,
path: '/'
}, function(response) {
response.on('end', function() {
if (methods.length == 0) {
console.error('close server');
server.close();
} else {
// throws error:
nextRequest();
// works just fine:
//process.nextTick(nextRequest);
}
});
response.resume();
});
request.end();
}
server.listen(common.PORT, nextRequest);