mirror of
https://github.com/nodejs/node.git
synced 2025-05-01 17:03:34 +00:00

This commit adds a mustNotCall() helper for testing. This provides an alternative to using common.fail() as a callback, or creating a callback function for the sole purpose of calling common.fail(). PR-URL: https://github.com/nodejs/node/pull/11152 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
69 lines
2.0 KiB
JavaScript
69 lines
2.0 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const http = require('http');
|
|
|
|
const server = http.createServer(common.mustNotCall());
|
|
server.on('connect', common.mustCall(function(req, socket, firstBodyChunk) {
|
|
assert.strictEqual(req.method, 'CONNECT');
|
|
assert.strictEqual(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'
|
|
);
|
|
|
|
let data = firstBodyChunk.toString();
|
|
socket.on('data', function(buf) {
|
|
data += buf.toString();
|
|
});
|
|
socket.on('end', function() {
|
|
socket.end(data);
|
|
});
|
|
}));
|
|
server.listen(0, common.mustCall(function() {
|
|
const req = http.request({
|
|
port: this.address().port,
|
|
method: 'CONNECT',
|
|
path: 'example.com:443'
|
|
}, common.mustNotCall());
|
|
|
|
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.
|
|
const name = 'localhost:' + server.address().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.strictEqual(socket.listeners('connect').length, 0);
|
|
assert.strictEqual(socket.listeners('data').length, 0);
|
|
|
|
let data = firstBodyChunk.toString();
|
|
|
|
// test that the firstBodyChunk was not parsed as HTTP
|
|
assert.strictEqual(data, 'Head');
|
|
|
|
socket.on('data', function(buf) {
|
|
data += buf.toString();
|
|
});
|
|
socket.on('end', function() {
|
|
assert.strictEqual(data, 'HeadRequestEnd');
|
|
server.close();
|
|
});
|
|
socket.end('End');
|
|
}));
|
|
|
|
req.end('Request');
|
|
}));
|