Skip to content

Commit 05df701

Browse files
committed
test: remove common.disableCrashOnUnhandledRejection
Use the --unhandled-rejections=none CLI flag instead. PR-URL: #38210 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent 3377eb9 commit 05df701

17 files changed

+7
-47
lines changed

doc/guides/writing-tests.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -250,11 +250,9 @@ countdown.dec(); // The countdown callback will be invoked now.
250250

251251
When writing tests involving promises, it is generally good to wrap the
252252
`onFulfilled` handler, otherwise the test could successfully finish if the
253-
promise never resolves (pending promises do not keep the event loop alive). The
254-
`common` module automatically adds a handler that makes the process crash - and
255-
hence, the test fail - in the case of an `unhandledRejection` event. It is
256-
possible to disable it with `common.disableCrashOnUnhandledRejection()` if
257-
needed.
253+
promise never resolves (pending promises do not keep the event loop alive).
254+
Node.js automatically crashes - and hence, the test fails - in the case of an
255+
`unhandledRejection` event.
258256

259257
```js
260258
const common = require('../common');

test/common/README.md

-8
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,6 @@ On non-Windows platforms, this always returns `true`.
6161

6262
Creates a 10 MB file of all null characters.
6363

64-
### `disableCrashOnUnhandledRejection()`
65-
66-
Removes the `process.on('unhandledRejection')` handler that crashes the process
67-
after a tick. The handler is useful for tests that use Promises and need to make
68-
sure no unexpected rejections occur, because currently they result in silent
69-
failures. However, it is useful in some rare cases to disable it, for example if
70-
the `unhandledRejection` hook is directly used by the test.
71-
7264
### `enoughTestCpu`
7365

7466
* [&lt;boolean>][]

test/common/index.js

-5
Original file line numberDiff line numberDiff line change
@@ -628,10 +628,6 @@ function getBufferSources(buf) {
628628
return [...getArrayBufferViews(buf), new Uint8Array(buf).buffer];
629629
}
630630

631-
function disableCrashOnUnhandledRejection() {
632-
process.on('unhandledRejection', () => {});
633-
}
634-
635631
function getTTYfd() {
636632
// Do our best to grab a tty fd.
637633
const tty = require('tty');
@@ -732,7 +728,6 @@ const common = {
732728
canCreateSymLink,
733729
childShouldThrowAndAbort,
734730
createZeroFilledFile,
735-
disableCrashOnUnhandledRejection,
736731
expectsError,
737732
expectWarning,
738733
gcUntil,

test/common/index.mjs

-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ const {
4646
skipIf32Bits,
4747
getArrayBufferViews,
4848
getBufferSources,
49-
disableCrashOnUnhandledRejection,
5049
getTTYfd,
5150
runWithInvalidFD
5251
} = common;
@@ -92,7 +91,6 @@ export {
9291
skipIf32Bits,
9392
getArrayBufferViews,
9493
getBufferSources,
95-
disableCrashOnUnhandledRejection,
9694
getTTYfd,
9795
runWithInvalidFD,
9896
createRequire

test/common/inspector-helper.js

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ function spawnChildProcess(inspectorFlags, scriptContents, scriptFile) {
2525
const handler = tearDown.bind(null, child);
2626
process.on('exit', handler);
2727
process.on('uncaughtException', handler);
28-
common.disableCrashOnUnhandledRejection();
2928
process.on('unhandledRejection', handler);
3029
process.on('SIGINT', handler);
3130

test/parallel/test-async-wrap-pop-id-during-load.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
'use strict';
22

3-
const common = require('../common');
3+
require('../common');
44

55
if (process.argv[2] === 'async') {
6-
common.disableCrashOnUnhandledRejection();
76
async function fn() {
87
fn();
98
throw new Error();
@@ -16,7 +15,7 @@ const { spawnSync } = require('child_process');
1615

1716
const ret = spawnSync(
1817
process.execPath,
19-
['--stack_size=150', __filename, 'async'],
18+
['--unhandled-rejections=none', '--stack_size=150', __filename, 'async'],
2019
{ maxBuffer: Infinity }
2120
);
2221
assert.strictEqual(ret.status, 0,

test/parallel/test-no-harmony-top-level-await.mjs

-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@
22

33
import {
44
mustCall,
5-
disableCrashOnUnhandledRejection
65
} from '../common/index.mjs';
76

8-
disableCrashOnUnhandledRejection();
9-
107
process.on('unhandledRejection', mustCall());
118
Promise.reject(new Error('should not be fatal error'));

test/parallel/test-promise-handled-rejection-no-warning.js

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
const common = require('../common');
33

44
// This test verifies that DEP0018 does not occur when rejections are handled.
5-
common.disableCrashOnUnhandledRejection();
65
process.on('warning', common.mustNotCall());
76
process.on('unhandledRejection', common.mustCall());
87
Promise.reject(new Error());

test/parallel/test-promise-unhandled-error.js

-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ const common = require('../common');
55
const Countdown = require('../common/countdown');
66
const assert = require('assert');
77

8-
common.disableCrashOnUnhandledRejection();
9-
108
// Verify that unhandled rejections always trigger uncaught exceptions instead
119
// of triggering unhandled rejections.
1210

test/parallel/test-promise-unhandled-silent-no-hook.js

-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
const common = require('../common');
55
const assert = require('assert');
66

7-
common.disableCrashOnUnhandledRejection();
8-
97
// Verify that ignoring unhandled rejection works fine and that no warning is
108
// logged even though there is no unhandledRejection hook attached.
119

test/parallel/test-promise-unhandled-silent.js

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33

44
const common = require('../common');
55

6-
common.disableCrashOnUnhandledRejection();
7-
86
// Verify that ignoring unhandled rejection works fine and that no warning is
97
// logged.
108

test/parallel/test-promise-unhandled-throw-handler.js

-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ const common = require('../common');
55
const Countdown = require('../common/countdown');
66
const assert = require('assert');
77

8-
common.disableCrashOnUnhandledRejection();
9-
108
// Verify that the unhandledRejection handler prevents triggering
119
// uncaught exceptions
1210

test/parallel/test-promise-unhandled-warn.js

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33

44
const common = require('../common');
55

6-
common.disableCrashOnUnhandledRejection();
7-
86
// Verify that ignoring unhandled rejection works fine and that no warning is
97
// logged.
108

test/parallel/test-promises-unhandled-proxy-rejections.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1+
// Flags: --unhandled-rejections=none
12
'use strict';
23
const common = require('../common');
34

4-
common.disableCrashOnUnhandledRejection();
5-
65
function throwErr() {
76
throw new Error('Error from proxy');
87
}

test/parallel/test-promises-unhandled-rejections.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1+
// Flags: --unhandled-rejections=none
12
'use strict';
23
const common = require('../common');
34
const assert = require('assert');
45
const { inspect } = require('util');
56

6-
common.disableCrashOnUnhandledRejection();
7-
87
const asyncTest = (function() {
98
let asyncTestsEnabled = false;
109
let asyncTestLastCheck;
@@ -643,7 +642,6 @@ asyncTest('Throwing an error inside a rejectionHandled handler goes to' +
643642
' unhandledException, and does not cause .catch() to throw an ' +
644643
'exception', function(done) {
645644
clean();
646-
common.disableCrashOnUnhandledRejection();
647645
const e = new Error();
648646
const e2 = new Error();
649647
const tearDownException = setupException(function(err) {

test/parallel/test-promises-unhandled-symbol-rejections.js

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
'use strict';
33
const common = require('../common');
44

5-
common.disableCrashOnUnhandledRejection();
6-
75
const expectedValueWarning = ['Symbol()'];
86
const expectedPromiseWarning = ['Unhandled promise rejection. ' +
97
'This error originated either by throwing ' +

test/parallel/test-trace-events-promises.js

-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ const fs = require('fs');
66
const path = require('path');
77
const tmpdir = require('../common/tmpdir');
88

9-
common.disableCrashOnUnhandledRejection();
10-
119
if (process.argv[2] === 'child') {
1210
const p = Promise.reject(1); // Handled later
1311
Promise.reject(2); // Unhandled

0 commit comments

Comments
 (0)