mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 13:11:36 +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>
31 lines
863 B
JavaScript
31 lines
863 B
JavaScript
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var http = require('http');
|
|
var url = require('url');
|
|
|
|
var request = 0;
|
|
var response = 0;
|
|
process.on('exit', function() {
|
|
assert.equal(1, request, 'http server "request" callback was not called');
|
|
assert.equal(1, response, 'http client "response" callback was not called');
|
|
});
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
res.end();
|
|
request++;
|
|
}).listen(common.PORT, '127.0.0.1', function() {
|
|
var opts = url.parse('http://127.0.0.1:' + common.PORT + '/');
|
|
|
|
// remove the `protocol` field… the `http` module should fall back
|
|
// to "http:", as defined by the global, default `http.Agent` instance.
|
|
opts.agent = new http.Agent();
|
|
opts.agent.protocol = null;
|
|
|
|
http.get(opts, function(res) {
|
|
response++;
|
|
res.resume();
|
|
server.close();
|
|
});
|
|
});
|