mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 03:31:35 +00:00

This updates the test in `test/parallel/test-assert-async.js` to add an assertion that the Promises used in the test end up fulfilled. Previously, if an assertion failure occurred, the Promises would have rejected and a warning would have been logged, but the test would still have exit code 0. PR-URL: https://github.com/nodejs/node/pull/19650 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
61 lines
1.7 KiB
JavaScript
61 lines
1.7 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const { promisify } = require('util');
|
|
const wait = promisify(setTimeout);
|
|
|
|
/* eslint-disable prefer-common-expectserror, no-restricted-properties */
|
|
|
|
// Test assert.rejects() and assert.doesNotReject() by checking their
|
|
// expected output and by verifying that they do not work sync
|
|
|
|
common.crashOnUnhandledRejection();
|
|
|
|
(async () => {
|
|
await assert.rejects(
|
|
() => assert.fail(),
|
|
common.expectsError({
|
|
code: 'ERR_ASSERTION',
|
|
type: assert.AssertionError,
|
|
message: 'Failed'
|
|
})
|
|
);
|
|
|
|
await assert.doesNotReject(() => {});
|
|
|
|
{
|
|
const promise = assert.doesNotReject(async () => {
|
|
await wait(1);
|
|
throw new Error();
|
|
});
|
|
await assert.rejects(
|
|
() => promise,
|
|
(err) => {
|
|
assert(err instanceof assert.AssertionError,
|
|
`${err.name} is not instance of AssertionError`);
|
|
assert.strictEqual(err.code, 'ERR_ASSERTION');
|
|
assert(/^Got unwanted rejection\.\n$/.test(err.message));
|
|
assert.strictEqual(err.operator, 'doesNotReject');
|
|
assert.ok(!err.stack.includes('at Function.doesNotReject'));
|
|
return true;
|
|
}
|
|
);
|
|
}
|
|
|
|
{
|
|
const promise = assert.rejects(() => {});
|
|
await assert.rejects(
|
|
() => promise,
|
|
(err) => {
|
|
assert(err instanceof assert.AssertionError,
|
|
`${err.name} is not instance of AssertionError`);
|
|
assert.strictEqual(err.code, 'ERR_ASSERTION');
|
|
assert(/^Missing expected rejection\.$/.test(err.message));
|
|
assert.strictEqual(err.operator, 'rejects');
|
|
assert.ok(!err.stack.includes('at Function.rejects'));
|
|
return true;
|
|
}
|
|
);
|
|
}
|
|
})().then(common.mustCall());
|