mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
bf31d3c3b1
Fixes: https://github.com/nodejs/node/issues/36246 PR-URL: https://github.com/nodejs/node/pull/36248 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
47 lines
1.2 KiB
JavaScript
47 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
const assert = require('assert');
|
|
const http2 = require('http2');
|
|
const net = require('net');
|
|
|
|
const server = http2.createServer();
|
|
server.on('stream', common.mustCall((stream) => {
|
|
stream.respond();
|
|
stream.end('ok');
|
|
}));
|
|
|
|
server.listen(0, common.mustCall(() => {
|
|
const client = http2.connect(`http://localhost:${server.address().port}`);
|
|
const socket = client.socket;
|
|
const req = client.request();
|
|
req.resume();
|
|
req.on('close', common.mustCall(() => {
|
|
client.close();
|
|
server.close();
|
|
|
|
// Tests to make sure accessing the socket proxy fails with an
|
|
// informative error.
|
|
setImmediate(common.mustCall(() => {
|
|
assert.throws(() => {
|
|
socket.example; // eslint-disable-line no-unused-expressions
|
|
}, {
|
|
code: 'ERR_HTTP2_SOCKET_UNBOUND'
|
|
});
|
|
assert.throws(() => {
|
|
socket.example = 1;
|
|
}, {
|
|
code: 'ERR_HTTP2_SOCKET_UNBOUND'
|
|
});
|
|
assert.throws(() => {
|
|
// eslint-disable-next-line no-unused-expressions
|
|
socket instanceof net.Socket;
|
|
}, {
|
|
code: 'ERR_HTTP2_SOCKET_UNBOUND'
|
|
});
|
|
}));
|
|
}));
|
|
}));
|