Skip to content

Commit e6d2faf

Browse files
lkmillljharb
authored andcommitted
[Tests] uncaught exceptions and unhandled rejections importing files with bin/tape
1 parent 28d6e51 commit e6d2faf

7 files changed

+117
-5
lines changed

.eslintrc

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
}],
2929
"strict": "error",
3030
},
31+
"ignorePatterns": [ "syntax-error.*" ],
3132
"overrides": [
3233
{
3334
"files": ["*.mjs", "test/import/package_type/*.js"],

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"prepublishOnly": "safe-publish-latest",
6161
"prepublish": "!(type not-in-publish) || not-in-publish || npm run prepublishOnly",
6262
"prelint": "eclint check",
63-
"lint": "eslint . bin/*",
63+
"lint": "eslint --ext .js,.cjs,.mjs . bin/*",
6464
"pretest": "npm run lint",
6565
"test": "npm run tests-only",
6666
"posttest": "aud --production",

test/import.js

+109-4
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ var tap = require('tap');
44
var spawn = require('child_process').spawn;
55
var concat = require('concat-stream');
66
var hasDynamicImport = require('has-dynamic-import');
7+
var assign = require('object.assign');
78

8-
tap.test('importing mjs files', function (t) {
9+
tap.test('importing mjs files', function (t) {
910
hasDynamicImport().then(function (hasSupport) {
1011
if (hasSupport) {
1112
var tc = function (rows) {
@@ -36,7 +37,7 @@ tap.test('importing mjs files', function (t) {
3637
].join('\n') + '\n\n');
3738
};
3839

39-
var ps = tape('import/*.mjs');
40+
var ps = tape('import/mjs-*.mjs');
4041
ps.stdout.pipe(concat(tc));
4142
ps.stderr.pipe(process.stderr);
4243
ps.on('exit', function (code) {
@@ -85,9 +86,113 @@ tap.test('importing type: "module" files', function (t) {
8586
});
8687
});
8788

88-
function tape(args) {
89+
tap.test('errors importing test files', function (t) {
90+
hasDynamicImport().then(function (hasSupport) {
91+
var createTest = function (options) {
92+
var message = options.error + ' in `' + options.mode + '` mode`';
93+
var ps = tape(options.files, { env: { NODE_OPTIONS: '--unhandled-rejections=' + options.mode } });
94+
ps.stderr.pipe(concat(options.unhandledRejection(message)));
95+
ps.on('exit', function (code, sig) {
96+
t.equal(code, options.exitCode, message + ' has exit code ' + options.exitCode);
97+
});
98+
};
99+
100+
var warning = function (message) {
101+
return function (rows) {
102+
t.match(rows.toString('utf8'), 'UnhandledPromiseRejectionWarning', 'should have unhandled rejection warning: ' + message);
103+
};
104+
};
105+
106+
var noWarning = function (message) {
107+
return function (rows) {
108+
t.notMatch(rows.toString('utf8'), 'UnhandledPromiseRejectionWarning', 'should not have unhandled rejection warning: ' + message);
109+
};
110+
};
111+
112+
if (hasSupport) {
113+
var tests = [{
114+
files: 'import/syntax-error.mjs import/mjs-a.mjs import/mjs-b.mjs',
115+
error: 'syntax errors in first imported esm file',
116+
mode: 'warn',
117+
exitCode: 0,
118+
unhandledRejection: warning
119+
}, {
120+
files: 'import/throws.mjs import/mjs-a.mjs import/mjs-b.mjs',
121+
error: 'thrown errors in first imported esm file',
122+
mode: 'warn',
123+
exitCode: 0,
124+
unhandledRejection: warning
125+
}, {
126+
files: 'import/mjs-a.mjs import/syntax-error.mjs',
127+
error: 'syntax error in esm file',
128+
mode: 'warn',
129+
exitCode: 1,
130+
unhandledRejection: warning
131+
}, {
132+
files: 'import/syntax-error.mjs',
133+
error: 'syntax error in esm file',
134+
mode: 'strict',
135+
exitCode: 1,
136+
unhandledRejection: noWarning
137+
}, {
138+
files: 'import/throws.mjs',
139+
error: 'thrown error in esm file',
140+
mode: 'strict',
141+
exitCode: 1,
142+
unhandledRejection: noWarning
143+
}, {
144+
files: 'import/syntax-error.cjs',
145+
error: 'syntax error in cjs file',
146+
mode: 'warn',
147+
exitCode: 1,
148+
unhandledRejection: noWarning
149+
}, {
150+
files: 'import/throws.cjs',
151+
error: 'thrown error in cjs file',
152+
mode: 'warn',
153+
exitCode: 1,
154+
unhandledRejection: noWarning
155+
}, {
156+
files: 'import/syntax-error.cjs',
157+
error: 'syntax error in cjs file',
158+
mode: 'strict',
159+
exitCode: 1,
160+
unhandledRejection: noWarning
161+
}, {
162+
files: 'import/throws.cjs',
163+
error: 'thrown error in cjs file',
164+
mode: 'strict',
165+
exitCode: 1,
166+
unhandledRejection: noWarning
167+
}, {
168+
files: 'import/mjs-a.mjs import/syntax-error.cjs',
169+
error: 'syntax error in cjs file in loading promise',
170+
mode: 'warn',
171+
exitCode: 1,
172+
unhandledRejection: warning
173+
}, {
174+
files: 'import/mjs-a.mjs import/syntax-error.cjs',
175+
error: 'syntax error in cjs file in loading promise',
176+
mode: 'strict',
177+
exitCode: 1,
178+
unhandledRejection: noWarning
179+
}];
180+
181+
t.plan(tests.length * 2);
182+
183+
tests.map(createTest);
184+
} else {
185+
t.pass('does not support dynamic import');
186+
t.end();
187+
}
188+
});
189+
});
190+
191+
function tape(args, options) {
192+
options = assign({ cwd: __dirname }, options);
193+
89194
var proc = require('child_process');
90195
var bin = __dirname + '/../bin/tape';
91196

92-
return proc.spawn('node', [bin].concat(args.split(' ')), { cwd: __dirname });
197+
return proc.spawn('node', [bin].concat(args.split(' ')), options);
93198
}

test/import/syntax-error.cjs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
))

test/import/syntax-error.mjs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
))

test/import/throws.cjs

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
'use strict';
2+
3+
throw new Error('thrown');

test/import/throws.mjs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
throw new Error('thrown');

0 commit comments

Comments
 (0)