node/test/mjsunit/test-node-cat.js

51 lines
1.0 KiB
JavaScript
Raw Normal View History

2009-06-21 22:40:08 +08:00
include("mjsunit.js");
PORT = 8888;
var body = "exports.A = function() { return 'A';}";
var server = node.http.createServer(function (req, res) {
2009-06-21 22:40:08 +08:00
res.sendHeader(200, [
["Content-Length", body.length],
["Content-Type", "text/plain"]
]);
res.sendBody(body);
res.finish();
});
server.listen(PORT);
2009-06-29 01:05:58 +08:00
var errors = 0;
var successes = 0;
2009-06-29 02:11:55 +08:00
function onLoad () {
2009-06-29 01:05:58 +08:00
var promise = node.cat("http://localhost:"+PORT, "utf8");
promise.addCallback(function (content) {
2009-06-21 22:40:08 +08:00
assertEquals(body, content);
2009-07-01 06:49:56 +08:00
server.close();
2009-06-29 01:05:58 +08:00
successes += 1;
});
promise.addErrback(function () {
errors += 1;
});
2009-06-21 22:40:08 +08:00
var dirname = node.path.dirname(__filename);
var fixtures = node.path.join(dirname, "fixtures");
var x = node.path.join(fixtures, "x.txt");
2009-06-29 01:05:58 +08:00
promise = node.cat(x, "utf8");
promise.addCallback(function (content) {
2009-07-01 06:49:56 +08:00
assertEquals("xyz", content.replace(/[\r\n]/, ''));
2009-06-29 01:05:58 +08:00
successes += 1;
});
promise.addErrback(function () {
errors += 1;
});
}
function onExit () {
assertEquals(2, successes);
assertEquals(0, errors);
2009-06-21 22:40:08 +08:00
}