forked from nodejs/node-v0.x-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-http-blank-header.js
More file actions
47 lines (38 loc) · 1.06 KB
/
Copy pathtest-http-blank-header.js
File metadata and controls
47 lines (38 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
var common = require('../common');
var assert = require('assert');
var http = require('http');
var net = require('net');
var gotReq = false;
var server = http.createServer(function(req, res) {
common.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(common.PORT, function() {
var c = net.createConnection(common.PORT);
c.addListener('connect', function() {
common.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() {
common.error('client close');
server.close();
});
});
process.addListener('exit', function() {
assert.ok(gotReq);
});