mirror of
https://github.com/nodejs/node.git
synced 2024-11-25 08:19:38 +01:00
3e1b1dd4a9
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.
46 lines
1.1 KiB
JavaScript
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);
|