mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 07:27:22 +01:00
04b4d15b39
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>
43 lines
898 B
JavaScript
43 lines
898 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const http = require('http');
|
|
const domain = require('domain');
|
|
|
|
var d;
|
|
|
|
common.refreshTmpDir();
|
|
|
|
// first fire up a simple HTTP server
|
|
var server = http.createServer(function(req, res) {
|
|
res.writeHead(200);
|
|
res.end();
|
|
server.close();
|
|
});
|
|
server.listen(common.PIPE, function() {
|
|
// create a domain
|
|
d = domain.create();
|
|
d.run(common.mustCall(test));
|
|
});
|
|
|
|
function test() {
|
|
|
|
d.on('error', common.mustCall(function(err) {
|
|
assert.equal('should be caught by domain', err.message);
|
|
}));
|
|
|
|
var req = http.get({
|
|
socketPath: common.PIPE,
|
|
headers: {'Content-Length': '1'},
|
|
method: 'POST',
|
|
path: '/'
|
|
});
|
|
req.on('response', function(res) {
|
|
res.on('end', function() {
|
|
res.emit('error', new Error('should be caught by domain'));
|
|
});
|
|
res.resume();
|
|
});
|
|
req.end();
|
|
}
|