fix all tests to run with node.js

This commit is contained in:
Fabian Jakobs 2010-12-14 15:09:24 +01:00
commit f07745839c
15 changed files with 181 additions and 125 deletions

View file

@ -1,6 +1,6 @@
var path = require("path");
var fs = require("fs");
var currentModule, defaultCompile = module.constructor.prototype._compile;
//console.log(module.id);
module.constructor.prototype._compile = function(content, filename){
currentModule = this;
@ -21,15 +21,29 @@ global.define = function (id, injects, factory) {
var module = currentModule;
var req = function(relativeId) {
var req = function(relativeId, callback) {
if (Array.isArray(relativeId)) {
// async require
return callback.apply(this, relativeId.map(req))
}
var chunks = relativeId.split("!");
if (chunks.length >= 2) {
var prefix = chunks[0];
relativeId = chunks.slice(1).join("!")
}
if (relativeId.charAt(0) === '.') {
var rootPath = path.dirname(path.dirname(requireModule.filename)) + "/",
absolutePath = path.dirname(module.filename) + "/" + relativeId;
relativeId = "../" + absolutePath.match(new RegExp(rootPath + "(.*)"))[1];
}
return require(relativeId);
if (prefix == "text") {
return fs.readFileSync(findModulePath(relativeId))
} else
return require(relativeId);
};
if (!factory) {
// two or less arguments
@ -77,3 +91,57 @@ global.define = function (id, injects, factory) {
module.exports = returned;
}
};
// slighly modified version of
// https://github.com/ry/node/blob/1dad95a3a960c645ffec28f9ec023dad6a17c0d4/src/node.js#L159
//
// given a module name, and a list of paths to test, returns the first
// matching file in the following precedence.
//
// require("a.<ext>")
// -> a.<ext>
//
// require("a")
// -> a
// -> a.<ext>
// -> a/index.<ext>
function findModulePath(request) {
var fs = require('fs'),
exts = ["js"],
paths = ['.'].concat(require.paths)
paths = request.charAt(0) === '/' ? [''] : paths;
// check if the file exists and is not a directory
var tryFile = function(requestPath) {
try {
var stats = fs.statSync(requestPath);
if (stats && !stats.isDirectory()) {
return requestPath;
}
} catch (e) {}
return false;
};
// given a path check a the file exists with any of the set extensions
var tryExtensions = function(p, extension) {
for (var i = 0, EL = exts.length; i < EL; i++) {
f = tryFile(p + exts[i]);
if (f) { return f; }
}
return false;
};
// For each path
for (var i = 0, PL = paths.length; i < PL; i++) {
var p = paths[i],
// try to join the request to the path
f = tryFile(path.join(p, request)) ||
// try it with each of the extensions
tryExtensions(path.join(p, request)) ||
// try it with each of the extensions at "index"
tryExtensions(path.join(p, request, 'index'));
if (f) { return f; }
}
return false;
}