mirror of https://github.com/lukechilds/node.git
Dmitriy Shalashov
15 years ago
committed by
Ryan Dahl
2 changed files with 49 additions and 2 deletions
@ -0,0 +1,47 @@ |
|||
require('../common'); |
|||
|
|||
http = require('http'); |
|||
net = require('net'); |
|||
|
|||
gotReq = false; |
|||
|
|||
server = http.createServer(function (req, res) { |
|||
error('got req'); |
|||
gotReq = true; |
|||
assert.equal('GET', req.method); |
|||
assert.equal('/blah', req.url); |
|||
assert.deepEqual({ |
|||
host: "mapdevel.trolologames.ru:443", |
|||
origin: "http://mapdevel.trolologames.ru", |
|||
cookie: "", |
|||
}, req.headers); |
|||
}); |
|||
|
|||
|
|||
server.listen(PORT, function () { |
|||
var c = net.createConnection(PORT); |
|||
|
|||
c.addListener('connect', function () { |
|||
error('client wrote message'); |
|||
c.write( "GET /blah HTTP/1.1\r\n" |
|||
+ "Host: mapdevel.trolologames.ru:443\r\n" |
|||
+ "Cookie:\r\n" |
|||
+ "Origin: http://mapdevel.trolologames.ru\r\n" |
|||
+ "\r\n\r\nhello world" |
|||
); |
|||
}); |
|||
|
|||
c.addListener('end', function () { |
|||
c.end(); |
|||
}); |
|||
|
|||
c.addListener('close', function () { |
|||
error('client close'); |
|||
server.close(); |
|||
}); |
|||
}); |
|||
|
|||
|
|||
process.addListener('exit', function () { |
|||
assert.ok(gotReq); |
|||
}); |
Loading…
Reference in new issue