Skip to content

Commit 4827421

Browse files
cjihrigMylesBorins
authored andcommittedApr 16, 2018
test: handle missing V8 tests in n-api test
The N-API test testInstanceOf.js relies on several V8 test files which may not exist in downloadable archives. If the files are missing, this commit causes a warning to be emitted rather than failing the test. Refs: #14113 Fixes: #13344 Backport-PR-URL: #19447 PR-URL: #14123 Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent cd30154 commit 4827421

File tree

1 file changed

+20
-12
lines changed

1 file changed

+20
-12
lines changed
 

‎test/addons-napi/test_general/testInstanceOf.js

+20-12
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ const assert = require('assert');
99
const addon = require(`./build/${common.buildType}/test_general`);
1010
const path = require('path');
1111

12+
// This test depends on a number of V8 tests.
13+
const v8TestsDir = path.resolve(__dirname, '..', '..', '..', 'deps', 'v8',
14+
'test', 'mjsunit');
15+
const v8TestsDirExists = fs.existsSync(v8TestsDir);
16+
1217
// The following assert functions are referenced by v8's unit tests
1318
// See for instance deps/v8/test/mjsunit/instanceof.js
1419
// eslint-disable-next-line no-unused-vars
@@ -34,27 +39,30 @@ function assertThrows(statement) {
3439
}
3540

3641
function testFile(fileName) {
37-
const contents = fs.readFileSync(fileName, { encoding: 'utf8' });
38-
eval(contents.replace(/[(]([^\s(]+)\s+instanceof\s+([^)]+)[)]/g,
39-
'(addon.doInstanceOf($1, $2))'));
42+
try {
43+
const contents = fs.readFileSync(fileName, { encoding: 'utf8' });
44+
eval(contents.replace(/[(]([^\s(]+)\s+instanceof\s+([^)]+)[)]/g,
45+
'(addon.doInstanceOf($1, $2))'));
46+
} catch (err) {
47+
// This test depends on V8 test files, which may not exist in downloaded
48+
// archives. Emit a warning if the tests cannot be found instead of failing.
49+
if (err.code === 'ENOENT' && !v8TestsDirExists)
50+
process.emitWarning(`test file ${fileName} does not exist.`);
51+
else
52+
throw err;
53+
}
4054
}
4155

42-
testFile(
43-
path.join(path.resolve(__dirname, '..', '..', '..',
44-
'deps', 'v8', 'test', 'mjsunit'),
45-
'instanceof.js'));
46-
testFile(
47-
path.join(path.resolve(__dirname, '..', '..', '..',
48-
'deps', 'v8', 'test', 'mjsunit'),
49-
'instanceof-2.js'));
56+
testFile(path.join(v8TestsDir, 'instanceof.js'));
57+
testFile(path.join(v8TestsDir, 'instanceof-2.js'));
5058

5159
// We can only perform this test if we have a working Symbol.hasInstance
5260
if (typeof Symbol !== 'undefined' && 'hasInstance' in Symbol &&
5361
typeof Symbol.hasInstance === 'symbol') {
5462

5563
function compareToNative(theObject, theConstructor) {
5664
assert.strictEqual(addon.doInstanceOf(theObject, theConstructor),
57-
(theObject instanceof theConstructor));
65+
(theObject instanceof theConstructor));
5866
}
5967

6068
function MyClass() {}

0 commit comments

Comments
 (0)
Please sign in to comment.