mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 03:31:35 +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.2 KiB
JavaScript
47 lines
1.2 KiB
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var http = require('http');
|
|
|
|
var expectedHeaders = {
|
|
'DELETE': ['host', 'connection'],
|
|
'GET': ['host', 'connection'],
|
|
'HEAD': ['host', 'connection'],
|
|
'OPTIONS': ['host', 'connection'],
|
|
'POST': ['host', 'connection', 'content-length'],
|
|
'PUT': ['host', 'connection', 'content-length']
|
|
};
|
|
|
|
var expectedMethods = Object.keys(expectedHeaders);
|
|
|
|
var requestCount = 0;
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
requestCount++;
|
|
res.end();
|
|
|
|
assert(expectedHeaders.hasOwnProperty(req.method),
|
|
req.method + ' was an unexpected method');
|
|
|
|
var requestHeaders = Object.keys(req.headers);
|
|
requestHeaders.forEach(function(header) {
|
|
assert(expectedHeaders[req.method].indexOf(header.toLowerCase()) !== -1,
|
|
header + ' shoud not exist for method ' + req.method);
|
|
});
|
|
|
|
assert(requestHeaders.length === expectedHeaders[req.method].length,
|
|
'some headers were missing for method: ' + req.method);
|
|
|
|
if (expectedMethods.length === requestCount)
|
|
server.close();
|
|
});
|
|
|
|
server.listen(common.PORT, function() {
|
|
expectedMethods.forEach(function(method) {
|
|
http.request({
|
|
method: method,
|
|
port: common.PORT
|
|
}).end();
|
|
});
|
|
});
|