Files
node-v0.x-archive/test/mjsunit/test-remote-module-loading.js
Ryan Dahl 860d008d54 Truly synchronous require()
This is to reduce our dependency on wait(). For some reason this patch
affects the timer test:

  % ./node test/mjsunit/test-timers.js
  diff: 989
  diff: 989
  diff: 1989
  diff: 2989

Previously it showed:

  % ./node test/mjsunit/test-timers.js
  diff: 1000
  diff: 1000
  diff: 2000
  diff: 3000

I'm not sure what caused this change, and it's rather disturbing. However I
want to remove wait() as soon as possible and so am pushing this patch
through.

The module loading code is becoming increasingly ugly - this patch has not
helped. A refactor needs to be done soon.
2010-02-19 10:06:49 -08:00

42 lines
1.0 KiB
JavaScript

process.mixin(require("./common"));
var PORT = 8889;
var http = require('http');
var sys = require('sys');
var url = require("url");
var modulesLoaded = 0;
var server = http.createServer(function(req, res) {
var body = 'exports.httpPath = function() {'+
'return '+JSON.stringify(url.parse(req.url).pathname)+';'+
'};';
res.sendHeader(200, {'Content-Type': 'text/javascript'});
res.write(body);
res.close();
});
server.listen(PORT);
assert.throws(function () {
var httpModule = require('http://localhost:'+PORT+'/moduleA.js');
assert.equal('/moduleA.js', httpModule.httpPath());
modulesLoaded++;
});
var nodeBinary = process.ARGV[0];
var cmd = 'NODE_PATH='+libDir+' '+nodeBinary+' http://localhost:'+PORT+'/moduleB.js';
sys
.exec(cmd)
.addCallback(function() {
modulesLoaded++;
server.close();
})
.addErrback(function(code, stdout, stderr) {
assertUnreachable('node binary could not load module from url: ' + stderr);
});
process.addListener('exit', function() {
assert.equal(1, modulesLoaded);
});