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.
32 lines
725 B
32 lines
725 B
15 years ago
|
include("mjsunit.js");
|
||
|
|
||
|
// Make sure no exceptions are thrown when receiving malformed HTTP
|
||
|
// requests.
|
||
|
port = 9999;
|
||
|
|
||
|
nrequests_completed = 0;
|
||
|
nrequests_expected = 1;
|
||
|
|
||
|
var s = node.http.createServer(function (req, res) {
|
||
|
puts("req: " + JSON.stringify(req.uri));
|
||
|
|
||
|
res.sendHeader(200, {"Content-Type": "text/plain"});
|
||
|
res.sendBody("Hello World");
|
||
|
res.finish();
|
||
|
|
||
|
if (++nrequests_completed == nrequests_expected) s.close();
|
||
|
});
|
||
|
s.listen(port);
|
||
|
|
||
|
var c = node.tcp.createConnection(port);
|
||
|
c.addListener("connect", function () {
|
||
|
c.send("GET /hello?foo=%99bar HTTP/1.1\r\n\r\n");
|
||
|
c.close();
|
||
|
});
|
||
|
|
||
|
// TODO add more!
|
||
|
|
||
|
process.addListener("exit", function () {
|
||
|
assertEquals(nrequests_expected, nrequests_completed);
|
||
|
});
|