0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 07:27:22 +01:00
nodejs/test/mjsunit/test-node-cat.js

51 lines
1.0 KiB
JavaScript
Raw Normal View History

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