mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 09:02:40 +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>
59 lines
1.1 KiB
JavaScript
59 lines
1.1 KiB
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var http = require('http');
|
|
var net = require('net');
|
|
|
|
var expected = {
|
|
'0.9': 'I AM THE WALRUS',
|
|
'1.0': 'I AM THE WALRUS',
|
|
'1.1': ''
|
|
};
|
|
|
|
var gotExpected = false;
|
|
|
|
function test(httpVersion, callback) {
|
|
process.on('exit', function() {
|
|
assert(gotExpected);
|
|
});
|
|
|
|
var server = net.createServer(function(conn) {
|
|
var reply = 'HTTP/' + httpVersion + ' 200 OK\r\n\r\n' +
|
|
expected[httpVersion];
|
|
|
|
conn.end(reply);
|
|
});
|
|
|
|
server.listen(common.PORT, '127.0.0.1', function() {
|
|
var options = {
|
|
host: '127.0.0.1',
|
|
port: common.PORT
|
|
};
|
|
|
|
var req = http.get(options, function(res) {
|
|
var body = '';
|
|
|
|
res.on('data', function(data) {
|
|
body += data;
|
|
});
|
|
|
|
res.on('end', function() {
|
|
assert.equal(body, expected[httpVersion]);
|
|
gotExpected = true;
|
|
server.close();
|
|
if (callback) process.nextTick(callback);
|
|
});
|
|
});
|
|
|
|
req.on('error', function(err) {
|
|
throw err;
|
|
});
|
|
});
|
|
}
|
|
|
|
test('0.9', function() {
|
|
test('1.0', function() {
|
|
test('1.1');
|
|
});
|
|
});
|