Skip to content

Commit 7f9b436

Browse files
Trottitaloacasas
authored andcommitted
test: make module testing stricter
In test-module-loading-error: * Do not skip the rest of the test just because we are running on a platform for which the test does not know the expected system error message. Simply skip the message validation but run the remainder of the test. * Use assert.throws() in place of try/catch * Make checks more strict. Instead of partial string matches, match the entire string. Add check for Error name to at least do some validation in situations where we do not have the system error message. PR-URL: #11116 Reviewed-By: Daniel Bevenius <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Sakthipriyan Vairamani <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent d8a5e1c commit 7f9b436

File tree

1 file changed

+19
-25
lines changed

1 file changed

+19
-25
lines changed
+19-25
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
'use strict';
2-
const common = require('../common');
2+
require('../common');
33
const assert = require('assert');
44

5-
console.error('load test-module-loading-error.js');
6-
75
const error_desc = {
86
win32: ['%1 is not a valid Win32 application'],
97
linux: ['file too short', 'Exec format error'],
@@ -12,27 +10,23 @@ const error_desc = {
1210
};
1311
const dlerror_msg = error_desc[process.platform];
1412

15-
if (!dlerror_msg) {
16-
common.skip('platform not supported.');
17-
return;
18-
}
19-
20-
try {
21-
require('../fixtures/module-loading-error.node');
22-
} catch (e) {
23-
assert.strictEqual(dlerror_msg.some((errMsgCase) => {
24-
return e.toString().indexOf(errMsgCase) !== -1;
25-
}), true);
26-
}
13+
assert.throws(
14+
() => { require('../fixtures/module-loading-error.node'); },
15+
(e) => {
16+
if (dlerror_msg && !dlerror_msg.some((msg) => e.message.includes(msg)))
17+
return false;
18+
if (e.name !== 'Error')
19+
return false;
20+
return true;
21+
}
22+
);
2723

28-
try {
29-
require();
30-
} catch (e) {
31-
assert.ok(e.toString().includes('missing path'));
32-
}
24+
assert.throws(
25+
require,
26+
/^AssertionError: missing path$/
27+
);
3328

34-
try {
35-
require({});
36-
} catch (e) {
37-
assert.ok(e.toString().includes('path must be a string'));
38-
}
29+
assert.throws(
30+
() => { require({}); },
31+
/^AssertionError: path must be a string$/
32+
);

0 commit comments

Comments
 (0)