0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/mjsunit/test-http-client-race.js

43 lines
1.0 KiB
JavaScript
Raw Normal View History

node.mixin(require("common.js"));
2009-09-28 12:36:36 +02:00
http = require("/http.js");
PORT = 8888;
var body1_s = "1111111111111111";
var body2_s = "22222";
2009-09-28 12:36:36 +02:00
var server = http.createServer(function (req, res) {
var body = req.uri.path === "/1" ? body1_s : body2_s;
res.sendHeader(200, { "Content-Type": "text/plain"
, "Content-Length": body.length
});
res.sendBody(body);
res.finish();
});
server.listen(PORT);
2009-09-28 12:36:36 +02:00
var client = http.createClient(PORT);
var body1 = "";
var body2 = "";
2009-06-16 20:53:15 +02:00
client.get("/1").finish(function (res1) {
res1.setBodyEncoding("utf8");
2009-06-29 13:18:30 +02:00
res1.addListener("body", function (chunk) {
2009-06-27 20:40:43 +02:00
body1 += chunk;
});
2009-06-29 13:18:30 +02:00
res1.addListener("complete", function () {
2009-06-16 20:53:15 +02:00
client.get("/2").finish(function (res2) {
res2.setBodyEncoding("utf8");
2009-06-29 13:18:30 +02:00
res2.addListener("body", function (chunk) { body2 += chunk; });
res2.addListener("complete", function () { server.close(); });
});
2009-06-27 20:40:43 +02:00
});
});
process.addListener("exit", function () {
assertEquals(body1_s, body1);
assertEquals(body2_s, body2);
});