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.
 
 
 
 
 
 

47 lines
998 B

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);
});