test: refactor test-async-wrap-*

* `assert.equal()` -> `assert.strictEqual()`
* add duration to `setTimeout()`

PR-URL: https://github.com/nodejs/node/pull/9663
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Prince John Wesley <princejohnwesley@gmail.com>
This commit is contained in:
Rich Trott 2016-11-17 10:25:57 -08:00
parent 440057eae0
commit d6dc2e8d44
4 changed files with 18 additions and 18 deletions

View File

@ -46,7 +46,7 @@ async_wrap.setupHooks({ init });
async_wrap.enable();
setTimeout(function() { });
setTimeout(function() { }, 1);
fs.stat(__filename, noop);

View File

@ -18,12 +18,12 @@ function init(uid, type, parentUid, parentHandle) {
cntr++;
// Cannot assert in init callback or will abort.
process.nextTick(() => {
assert.equal(providers[type], 'TCPWRAP');
assert.equal(parentUid, server._handle[uidSymbol],
'server uid doesn\'t match parent uid');
assert.equal(parentHandle, server._handle,
'server handle doesn\'t match parent handle');
assert.equal(this, client._handle, 'client doesn\'t match context');
assert.strictEqual(providers[type], 'TCPWRAP');
assert.strictEqual(parentUid, server._handle[uidSymbol],
'server uid doesn\'t match parent uid');
assert.strictEqual(parentHandle, server._handle,
'server handle doesn\'t match parent handle');
assert.strictEqual(this, client._handle, 'client doesn\'t match context');
});
}
}
@ -48,5 +48,5 @@ async_wrap.disable();
process.on('exit', function() {
// init should have only been called once with a parent.
assert.equal(cntr, 1);
assert.strictEqual(cntr, 1);
});

View File

@ -18,12 +18,12 @@ function init(uid, type, parentUid, parentHandle) {
cntr++;
// Cannot assert in init callback or will abort.
process.nextTick(() => {
assert.equal(providers[type], 'TCPWRAP');
assert.equal(parentUid, server._handle[uidSymbol],
'server uid doesn\'t match parent uid');
assert.equal(parentHandle, server._handle,
'server handle doesn\'t match parent handle');
assert.equal(this, client._handle, 'client doesn\'t match context');
assert.strictEqual(providers[type], 'TCPWRAP');
assert.strictEqual(parentUid, server._handle[uidSymbol],
'server uid doesn\'t match parent uid');
assert.strictEqual(parentHandle, server._handle,
'server handle doesn\'t match parent handle');
assert.strictEqual(this, client._handle, 'client doesn\'t match context');
});
}
}
@ -47,5 +47,5 @@ const server = net.createServer(function(c) {
process.on('exit', function() {
// init should have only been called once with a parent.
assert.equal(cntr, 1);
assert.strictEqual(cntr, 1);
});

View File

@ -49,8 +49,8 @@ if (typeof process.argv[2] === 'string') {
} else {
process.on('exit', (code) => {
assert.equal(msgCalled, callbacks.length);
assert.equal(msgCalled, msgReceived);
assert.strictEqual(msgCalled, callbacks.length);
assert.strictEqual(msgCalled, msgReceived);
});
callbacks.forEach((item) => {
@ -67,7 +67,7 @@ if (typeof process.argv[2] === 'string') {
if (errstring.includes('Error: ' + item))
msgReceived++;
assert.equal(code, 1, `${item} closed with code ${code}`);
assert.strictEqual(code, 1, `${item} closed with code ${code}`);
});
});
}