2009-06-21 16:40:08 +02:00
|
|
|
include("mjsunit.js");
|
|
|
|
PORT = 8888;
|
|
|
|
|
|
|
|
var body = "exports.A = function() { return 'A';}";
|
|
|
|
var server = new node.http.Server(function (req, res) {
|
|
|
|
res.sendHeader(200, [
|
|
|
|
["Content-Length", body.length],
|
|
|
|
["Content-Type", "text/plain"]
|
|
|
|
]);
|
|
|
|
res.sendBody(body);
|
|
|
|
res.finish();
|
|
|
|
});
|
|
|
|
server.listen(PORT);
|
|
|
|
|
|
|
|
function onLoad() {
|
|
|
|
node.cat("http://localhost:"+PORT, "utf8", function(status, content) {
|
|
|
|
assertEquals(body, content);
|
2009-06-21 16:59:11 +02:00
|
|
|
assertEquals(0, status)
|
2009-06-21 16:40:08 +02:00
|
|
|
server.close()
|
|
|
|
})
|
|
|
|
|
|
|
|
var dirname = node.path.dirname(__filename);
|
|
|
|
var fixtures = node.path.join(dirname, "fixtures");
|
|
|
|
var x = node.path.join(fixtures, "x.txt");
|
|
|
|
node.cat(x, "utf8", function(status, content) {
|
2009-06-21 16:59:11 +02:00
|
|
|
assertEquals(0, status)
|
2009-06-21 16:40:08 +02:00
|
|
|
assertEquals("xyz", content.replace(/[\r\n]/, ''))
|
|
|
|
})
|
|
|
|
}
|