forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-http-connect-head.js
More file actions
72 lines (61 loc) · 1.97 KB
/
test-http-connect-head.js
File metadata and controls
72 lines (61 loc) · 1.97 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
'use strict';
const common = require('../common');
const assert = require('assert');
const http = require('http');
var server = http.createServer(function(req, res) {
assert(false);
});
server.on('connect', common.mustCall(function(req, socket, firstBodyChunk) {
assert.equal(req.method, 'CONNECT');
assert.equal(req.url, 'example.com:443');
console.error('Server got CONNECT request');
// It is legal for the server to send some data intended for the client
// along with the CONNECT response
socket.write(
'HTTP/1.1 200 Connection established\r\n' +
'Date: Tue, 15 Nov 1994 08:12:31 GMT\r\n' +
'\r\n' +
'Head'
);
var data = firstBodyChunk.toString();
socket.on('data', function(buf) {
data += buf.toString();
});
socket.on('end', function() {
socket.end(data);
});
}));
server.listen(common.PORT, common.mustCall(function() {
var req = http.request({
port: common.PORT,
method: 'CONNECT',
path: 'example.com:443'
}, function(res) {
assert(false);
});
req.on('close', common.mustCall(function() { }));
req.on('connect', common.mustCall(function(res, socket, firstBodyChunk) {
console.error('Client got CONNECT request');
// Make sure this request got removed from the pool.
var name = 'localhost:' + common.PORT;
assert(!http.globalAgent.sockets.hasOwnProperty(name));
assert(!http.globalAgent.requests.hasOwnProperty(name));
// Make sure this socket has detached.
assert(!socket.ondata);
assert(!socket.onend);
assert.equal(socket.listeners('connect').length, 0);
assert.equal(socket.listeners('data').length, 0);
var data = firstBodyChunk.toString();
// test that the firstBodyChunk was not parsed as HTTP
assert.equal(data, 'Head');
socket.on('data', function(buf) {
data += buf.toString();
});
socket.on('end', function() {
assert.equal(data, 'HeadRequestEnd');
server.close();
});
socket.end('End');
}));
req.end('Request');
}));