You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

51 lines
1.0 KiB

include("common.js");
PORT = 8888;
puts("hello world");
var body = "exports.A = function() { return 'A';}";
var server = node.http.createServer(function (req, res) {
puts("req?");
res.sendHeader(200, {
"Content-Length": body.length,
"Content-Type": "text/plain"
});
res.sendBody(body);
res.finish();
});
server.listen(PORT);
var errors = 0;
var successes = 0;
var promise = node.cat("http://localhost:"+PORT, "utf8");
promise.addCallback(function (content) {
assertEquals(body, content);
server.close();
successes += 1;
});
promise.addErrback(function () {
errors += 1;
});
var dirname = node.path.dirname(__filename);
var fixtures = node.path.join(dirname, "fixtures");
var x = node.path.join(fixtures, "x.txt");
promise = node.cat(x, "utf8");
promise.addCallback(function (content) {
assertEquals("xyz", content.replace(/[\r\n]/, ''));
successes += 1;
});
promise.addErrback(function () {
errors += 1;
});
process.addListener("exit", function () {
assertEquals(2, successes);
assertEquals(0, errors);
});