0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/parallel/test-http2-error-order.js
Myles Borins e03bcb1261
test: verify order of error in h2 server stream
Currently the order of error / closing of an h2 stream is consistent
in 10.x, 11.x, and master. There appears to be an unexpected behavior
difference in 8.x. This test will be used to bisect the commit that will
fix this behavior change and ensure there are no future regressions.

PR-URL: https://github.com/nodejs/node/pull/24685
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
2018-11-30 16:36:52 -05:00

44 lines
931 B
JavaScript

'use strict';
const common = require('../common');
if (!common.hasCrypto)
common.skip('missing crypto');
const assert = require('assert');
const { createServer, connect } = require('http2');
const messages = [];
const expected = [
'Stream:created',
'Stream:error',
'Stream:close',
'Request:error'
];
const server = createServer();
server.on('stream', (stream) => {
messages.push('Stream:created');
stream
.on('close', () => messages.push('Stream:close'))
.on('error', (err) => messages.push('Stream:error'))
.respondWithFile('dont exist');
});
server.listen(0);
const client = connect(`http://localhost:${server.address().port}`);
const req = client.request();
req.on('response', common.mustNotCall());
req.on('error', () => {
messages.push('Request:error');
client.close();
});
client.on('close', common.mustCall(() => {
assert.deepStrictEqual(messages, expected);
server.close();
}));