node/test/parallel/test-domain-intercept.js
Anna Henningsen 1a2f579ba0
test: split up and refactor test-domain
Split up test-domain into multiple, more focused test files
and use more modern JS inside of them.

PR-URL: https://github.com/nodejs/node/pull/13614
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
2017-10-16 11:24:35 +02:00

44 lines
954 B
JavaScript

'use strict';
const common = require('../common');
const assert = require('assert');
const domain = require('domain');
{
const d = new domain.Domain();
const mustNotCall = common.mustNotCall();
d.on('error', common.mustCall((err) => {
assert.strictEqual(err.message, 'foobar');
assert.strictEqual(err.domain, d);
assert.strictEqual(err.domainEmitter, undefined);
assert.strictEqual(err.domainBound, mustNotCall);
assert.strictEqual(err.domainThrown, false);
}));
const bound = d.intercept(mustNotCall);
bound(new Error('foobar'));
}
{
const d = new domain.Domain();
const bound = d.intercept(common.mustCall((data) => {
assert.strictEqual(data, 'data');
}));
bound(null, 'data');
}
{
const d = new domain.Domain();
const bound = d.intercept(common.mustCall((data, data2) => {
assert.strictEqual(data, 'data');
assert.strictEqual(data2, 'data2');
}));
bound(null, 'data', 'data2');
}