mirror of https://github.com/lukechilds/node.git
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.
42 lines
1.0 KiB
42 lines
1.0 KiB
'use strict';
|
|
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
const assert = require('assert');
|
|
const http2 = require('http2');
|
|
|
|
const msecs = common.platformTimeout(1);
|
|
const server = http2.createServer();
|
|
|
|
server.on('request', (req, res) => {
|
|
req.setTimeout(msecs, common.mustCall(() => {
|
|
res.end();
|
|
req.setTimeout(msecs, common.mustNotCall());
|
|
}));
|
|
res.on('finish', common.mustCall(() => {
|
|
req.setTimeout(msecs, common.mustNotCall());
|
|
process.nextTick(() => {
|
|
assert.doesNotThrow(
|
|
() => req.setTimeout(msecs, common.mustNotCall())
|
|
);
|
|
server.close();
|
|
});
|
|
}));
|
|
});
|
|
|
|
server.listen(0, common.mustCall(() => {
|
|
const port = server.address().port;
|
|
const client = http2.connect(`http://localhost:${port}`);
|
|
const req = client.request({
|
|
':path': '/',
|
|
':method': 'GET',
|
|
':scheme': 'http',
|
|
':authority': `localhost:${port}`
|
|
});
|
|
req.on('end', common.mustCall(() => {
|
|
client.destroy();
|
|
}));
|
|
req.resume();
|
|
req.end();
|
|
}));
|
|
|