|
|
|
common = require("../common");
|
|
|
|
assert = common.assert
|
|
|
|
var path = require('path');
|
|
|
|
|
|
|
|
common.debug("load test-module-loading.js");
|
|
|
|
|
|
|
|
var a = require("../fixtures/a");
|
|
|
|
var c = require("../fixtures/b/c");
|
|
|
|
var d = require("../fixtures/b/d");
|
|
|
|
var d2 = require("../fixtures/b/d");
|
|
|
|
// Absolute
|
|
|
|
var d3 = require(path.join(__dirname, "../fixtures/b/d"));
|
|
|
|
// Relative
|
|
|
|
var d4 = require("../fixtures/b/d");
|
|
|
|
|
|
|
|
assert.equal(false, false, "testing the test program.");
|
|
|
|
|
|
|
|
assert.equal(true, common.indirectInstanceOf(a.A, Function));
|
|
|
|
assert.equal("A", a.A());
|
|
|
|
|
|
|
|
assert.equal(true, common.indirectInstanceOf(a.C, Function));
|
|
|
|
assert.equal("C", a.C());
|
|
|
|
|
|
|
|
assert.equal(true, common.indirectInstanceOf(a.D, Function));
|
|
|
|
assert.equal("D", a.D());
|
|
|
|
|
|
|
|
assert.equal(true, common.indirectInstanceOf(d.D, Function));
|
|
|
|
assert.equal("D", d.D());
|
|
|
|
|
|
|
|
assert.equal(true, common.indirectInstanceOf(d2.D, Function));
|
|
|
|
assert.equal("D", d2.D());
|
|
|
|
|
|
|
|
assert.equal(true, common.indirectInstanceOf(d3.D, Function));
|
|
|
|
assert.equal("D", d3.D());
|
|
|
|
|
|
|
|
assert.equal(true, common.indirectInstanceOf(d4.D, Function));
|
|
|
|
assert.equal("D", d4.D());
|
|
|
|
|
|
|
|
assert.ok((new a.SomeClass) instanceof c.SomeClass);
|
|
|
|
|
|
|
|
common.debug("test index.js modules ids and relative loading")
|
|
|
|
var one = require("../fixtures/nested-index/one"),
|
|
|
|
two = require("../fixtures/nested-index/two");
|
|
|
|
assert.notEqual(one.hello, two.hello);
|
|
|
|
|
|
|
|
common.debug("test cycles containing a .. path");
|
|
|
|
var root = require("../fixtures/cycles/root"),
|
|
|
|
foo = require("../fixtures/cycles/folder/foo");
|
|
|
|
assert.equal(root.foo, foo);
|
|
|
|
assert.equal(root.sayHello(), root.hello);
|
|
|
|
|
|
|
|
common.debug("test name clashes");
|
|
|
|
// this one exists and should import the local module
|
|
|
|
var my_path = require("./path");
|
|
|
|
assert.ok(common.indirectInstanceOf(my_path.path_func, Function));
|
|
|
|
// this one does not exist and should throw
|
|
|
|
assert.throws(function() { require("./utils")});
|
|
|
|
|
|
|
|
var errorThrown = false;
|
|
|
|
try {
|
|
|
|
require("../fixtures/throws_error");
|
|
|
|
} catch (e) {
|
|
|
|
errorThrown = true;
|
|
|
|
assert.equal("blah", e.message);
|
|
|
|
}
|
|
|
|
|
|
|
|
var errorThrownAsync = false;
|
|
|
|
require.async("../fixtures/throws_error1", function(err, a) {
|
|
|
|
if (err) {
|
|
|
|
errorThrownAsync = true;
|
|
|
|
assert.equal("blah", err.message);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
assert.equal(require('path').dirname(__filename), __dirname);
|
|
|
|
|
|
|
|
var asyncRun = false;
|
|
|
|
require.async('../fixtures/a1', function (err, a) {
|
|
|
|
if (err) throw err;
|
|
|
|
assert.equal("A", a.A());
|
|
|
|
asyncRun = true;
|
|
|
|
});
|
|
|
|
|
|
|
|
common.debug('load custom file types with registerExtension');
|
|
|
|
require.registerExtension('.test', function(content) {
|
|
|
|
assert.equal("this is custom source\n", content);
|
|
|
|
|
|
|
|
return content.replace("this is custom source", "exports.test = 'passed'");
|
|
|
|
});
|
|
|
|
|
|
|
|
assert.equal(require('../fixtures/registerExt').test, "passed");
|
|
|
|
|
|
|
|
common.debug('load custom file types that return non-strings');
|
|
|
|
require.registerExtension('.test', function(content) {
|
|
|
|
return {
|
|
|
|
custom: 'passed'
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
assert.equal(require('../fixtures/registerExt2').custom, 'passed');
|
|
|
|
common.debug("load modules by absolute id, then change require.paths, and load another module with the same absolute id.");
|
Cache modules based on filename rather than ID
This is ever so slightly less efficient than caching based on ID, since the
filename has to be looked up before we can check the cache. However, it's
the most minimal approach possible to get this change in place. Since
require() is a blocking startup-time operation anyway, a bit of slowness is
not a huge problem.
A test involving require.paths modification and absolute loading. Here's the
gist of it.
Files: /p1/foo.js /p2/foo.js
1. Add "/p1" to require.paths.
2. foo1 = require("foo")
3. assert foo1 === require("/p1/foo") (fail)
4. Remove /p1 from require.paths.
5. Add /p2 to require.paths.
6. foo2 = require("foo")
7. assert foo1 !== foo2 (fail)
8. assert foo2 === require("/p2/foo") (fail)
It's an edge case, but it affects how dependencies are mapped by npm.
If your module requires foo-1.2.3, and my module requires foo-2.3.4,
then you should expect to have require("foo") give you foo-1.2.3, and
I should expect require("foo") to give me foo-2.3.4. However, with
module ID based caching, if your code loads *first*, then your "foo"
is THE "foo", so I'll get your version instead of mine.
It hasn't yet been a problem, but only because there are so few
modules, and everyone pretty much uses the latest version all the
time. But as things start to get to the 1.x and 2.x versions, it'll
be an issue, I'm sure. Dependency hell isn't fun, so this is a way to
avoid it before it strikes.
15 years ago
|
|
|
// this will throw if it fails.
|
|
|
|
var foo = require("../fixtures/require-path/p1/foo");
|
|
|
|
process.assert(foo.bar.expect === foo.bar.actual);
|
|
|
|
|
|
|
|
assert.equal(require('../fixtures/foo').foo, 'ok',
|
|
|
|
'require module with no extension');
|
|
|
|
|
|
|
|
// Should not attempt to load a directory
|
|
|
|
try {
|
|
|
|
require("../fixtures/empty");
|
|
|
|
} catch(err) {
|
|
|
|
assert.equal(err.message, "Cannot find module '../fixtures/empty'");
|
|
|
|
}
|
|
|
|
|
|
|
|
var asyncRequireDir = false;
|
|
|
|
require.async("../fixtures/empty", function (err, a) {
|
|
|
|
assert.ok(err);
|
|
|
|
|
|
|
|
if (err) {
|
|
|
|
asyncRequireDir = true;
|
|
|
|
assert.equal(err.message, "Cannot find module '../fixtures/empty'");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Check load order is as expected
|
|
|
|
common.debug('load order');
|
|
|
|
|
|
|
|
var loadOrder = '../fixtures/module-load-order/',
|
|
|
|
msg = "Load order incorrect.";
|
|
|
|
|
|
|
|
require.registerExtension('.reg', function(content) { return content; });
|
|
|
|
require.registerExtension('.reg2', function(content) { return content; });
|
|
|
|
|
|
|
|
assert.equal(require(loadOrder + 'file1').file1, 'file1', msg);
|
|
|
|
assert.equal(require(loadOrder + 'file2').file2, 'file2.js', msg);
|
|
|
|
try {
|
|
|
|
require(loadOrder + 'file3');
|
|
|
|
} catch (e) {
|
|
|
|
// Not a real .node module, but we know we require'd the right thing.
|
|
|
|
assert.ok(e.message.match(/file3\.node/));
|
|
|
|
}
|
|
|
|
assert.equal(require(loadOrder + 'file4').file4, 'file4.reg', msg);
|
|
|
|
assert.equal(require(loadOrder + 'file5').file5, 'file5.reg2', msg);
|
|
|
|
assert.equal(require(loadOrder + 'file6').file6, 'file6/index.js', msg);
|
|
|
|
try {
|
|
|
|
require(loadOrder + 'file7');
|
|
|
|
} catch (e) {
|
|
|
|
assert.ok(e.message.match(/file7\/index\.node/));
|
|
|
|
}
|
|
|
|
assert.equal(require(loadOrder + 'file8').file8, 'file8/index.reg', msg);
|
|
|
|
assert.equal(require(loadOrder + 'file9').file9, 'file9/index.reg2', msg);
|
|
|
|
|
|
|
|
process.addListener("exit", function () {
|
|
|
|
assert.ok(common.indirectInstanceOf(a.A, Function));
|
|
|
|
assert.equal("A done", a.A());
|
|
|
|
|
|
|
|
assert.ok(common.indirectInstanceOf(a.C, Function));
|
|
|
|
assert.equal("C done", a.C());
|
|
|
|
|
|
|
|
assert.ok(common.indirectInstanceOf(a.D, Function));
|
|
|
|
assert.equal("D done", a.D());
|
|
|
|
|
|
|
|
assert.ok(common.indirectInstanceOf(d.D, Function));
|
|
|
|
assert.equal("D done", d.D());
|
|
|
|
|
|
|
|
assert.ok(common.indirectInstanceOf(d2.D, Function));
|
|
|
|
assert.equal("D done", d2.D());
|
|
|
|
|
|
|
|
assert.equal(true, errorThrown);
|
|
|
|
|
|
|
|
assert.equal(true, asyncRun);
|
|
|
|
|
|
|
|
assert.equal(true, errorThrownAsync);
|
|
|
|
|
|
|
|
assert.equal(true, asyncRequireDir);
|
|
|
|
|
|
|
|
console.log("exit");
|
|
|
|
});
|