mirror of
https://github.com/nodejs/node.git
synced 2025-05-07 08:00:26 +00:00

Many of the tests use variables to track when callback functions are invoked or events are emitted. These variables are then asserted on process exit. This commit replaces this pattern in straightforward cases with common.mustCall(). This makes the tests easier to reason about, leads to a net reduction in lines of code, and uncovered a few bugs in tests. This commit also replaces some callbacks that should never be called with common.fail(). PR-URL: https://github.com/nodejs/node/pull/7753 Reviewed-By: Wyatt Preul <wpreul@gmail.com> Reviewed-By: Minwoo Jung <jmwsoft@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
39 lines
714 B
JavaScript
39 lines
714 B
JavaScript
'use strict';
|
|
/*
|
|
* Repeated requests for a domain that fails to resolve
|
|
* should trigger the error event after each attempt.
|
|
*/
|
|
|
|
const common = require('../common');
|
|
var assert = require('assert');
|
|
var http = require('http');
|
|
|
|
var hadError = 0;
|
|
|
|
function httpreq(count) {
|
|
if (1 < count) return;
|
|
|
|
var req = http.request({
|
|
host: 'not-a-real-domain-name.nobody-would-register-this-as-a-tld',
|
|
port: 80,
|
|
path: '/',
|
|
method: 'GET'
|
|
}, common.fail);
|
|
|
|
req.on('error', function(e) {
|
|
console.log(e.message);
|
|
assert.strictEqual(e.code, 'ENOTFOUND');
|
|
hadError++;
|
|
httpreq(count + 1);
|
|
});
|
|
|
|
req.end();
|
|
}
|
|
|
|
httpreq(0);
|
|
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(2, hadError);
|
|
});
|