This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
src: fix builtin modules failing with --use-strict
Currently, lib/_tls_legacy.js and lib/crypto.js cannot be loaded when --use-strict is passed to node. This change adds a test that makes sure every external built-in module can be loaded with require when --use-strict is enabled, and fixes the built-in modules that are currently broken. Fixes #9187.
- Loading branch information
Julien Gilli
committed
Feb 21, 2015
1 parent
2fc5eeb
commit 250d575
Showing
4 changed files
with
105 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
// Copyright Joyent, Inc. and other Node contributors. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a | ||
// copy of this software and associated documentation files (the | ||
// "Software"), to deal in the Software without restriction, including | ||
// without limitation the rights to use, copy, modify, merge, publish, | ||
// distribute, sublicense, and/or sell copies of the Software, and to permit | ||
// persons to whom the Software is furnished to do so, subject to the | ||
// following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included | ||
// in all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS | ||
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN | ||
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, | ||
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR | ||
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE | ||
// USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
|
||
/* | ||
* This test makes sure that every builtin module can be loaded | ||
* when the V8's --use-strict command line option is passed to node. | ||
*/ | ||
|
||
var child_process = require('child_process'); | ||
var assert = require('assert'); | ||
|
||
function getBuiltinModulesPath(builtinModuleFilename) { | ||
return path.join(NODE_LIB_DIR, builtinModuleFilename); | ||
} | ||
|
||
function shouldBeTested(builtinModuleFilename) { | ||
assert(typeof builtinModuleFilename === 'string', | ||
'builtinModuleFilename must be a string'); | ||
assert(builtinModuleFilename.length > 0, | ||
'builtinModuleFilename must be a non-empty string'); | ||
|
||
var isInternalModule = builtinModuleFilename.charAt(0) === '_'; | ||
if (isInternalModule || builtinModuleFilename === 'module.js') { | ||
// Do not load "internal" modules as we don't care if they can | ||
// be loaded with --use-strict, since they are not part of the | ||
// public API. | ||
// | ||
// Do not load module.js because: | ||
// 1) It's loaded as part of the normal node.js startup process. | ||
// 2) Loading it twice is not supported since it requires | ||
// that NativeModule.require is the existing require implementation, | ||
// but it overrides it when it's loaded. | ||
return false; | ||
} | ||
|
||
return true; | ||
} | ||
|
||
if (process.argv[2] !== 'child') { | ||
child_process.fork(__filename, ['child'], { execArgv: ['--use-strict']}); | ||
} else { | ||
var fs = require('fs'); | ||
var path = require('path'); | ||
|
||
var NODE_LIB_DIR = path.join(path.resolve(__dirname, '../..'), 'lib'); | ||
|
||
fs.readdir(NODE_LIB_DIR, function onDirRead(err, builtinModules) { | ||
if (err) throw err; | ||
|
||
var builtinModulesPaths = builtinModules.filter(shouldBeTested) | ||
.map(getBuiltinModulesPath); | ||
builtinModulesPaths.forEach(require); | ||
}); | ||
} |