mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 05:21:19 +00:00

Enable linting for the test directory. A number of changes was made so all tests conform the current rules used by lib and src directories. The only exception for tests is that unreachable (dead) code is allowed. test-fs-non-number-arguments-throw had to be excluded from the changes because of a weird issue on Windows CI. PR-URL: https://github.com/nodejs/io.js/pull/1721 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
47 lines
1.1 KiB
JavaScript
47 lines
1.1 KiB
JavaScript
'use strict';
|
|
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);
|