mirror of https://github.com/lukechilds/node.git
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.
52 lines
1.1 KiB
52 lines
1.1 KiB
15 years ago
|
process.mixin(require("../common.js"));
|
||
15 years ago
|
http = require("/http.js");
|
||
16 years ago
|
|
||
15 years ago
|
puts("hello world");
|
||
|
|
||
16 years ago
|
var body = "exports.A = function() { return 'A';}";
|
||
15 years ago
|
var server = http.createServer(function (req, res) {
|
||
15 years ago
|
puts("req?");
|
||
|
res.sendHeader(200, {
|
||
|
"Content-Length": body.length,
|
||
|
"Content-Type": "text/plain"
|
||
|
});
|
||
16 years ago
|
res.sendBody(body);
|
||
|
res.finish();
|
||
|
});
|
||
|
server.listen(PORT);
|
||
|
|
||
16 years ago
|
var errors = 0;
|
||
|
var successes = 0;
|
||
|
|
||
15 years ago
|
var promise = process.cat("http://localhost:"+PORT, "utf8");
|
||
16 years ago
|
|
||
15 years ago
|
promise.addCallback(function (content) {
|
||
15 years ago
|
assert.equal(body, content);
|
||
15 years ago
|
server.close();
|
||
|
successes += 1;
|
||
|
});
|
||
16 years ago
|
|
||
15 years ago
|
promise.addErrback(function () {
|
||
|
errors += 1;
|
||
|
});
|
||
|
|
||
15 years ago
|
var dirname = process.path.dirname(__filename);
|
||
|
var fixtures = process.path.join(dirname, "fixtures");
|
||
|
var x = process.path.join(fixtures, "x.txt");
|
||
15 years ago
|
|
||
15 years ago
|
promise = process.cat(x, "utf8");
|
||
15 years ago
|
|
||
|
promise.addCallback(function (content) {
|
||
15 years ago
|
assert.equal("xyz", content.replace(/[\r\n]/, ''));
|
||
15 years ago
|
successes += 1;
|
||
|
});
|
||
|
|
||
|
promise.addErrback(function () {
|
||
|
errors += 1;
|
||
|
});
|
||
16 years ago
|
|
||
15 years ago
|
process.addListener("exit", function () {
|
||
15 years ago
|
assert.equal(2, successes);
|
||
|
assert.equal(0, errors);
|
||
15 years ago
|
});
|