0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-21 21:19:50 +01:00
nodejs/test/parallel/test-http2-error-order.js
Rich Trott 330f25ef82 test: prepare for consistent comma-dangle lint rule
Make changes so that tests will pass when the comma-dangle settings
applied to the rest of the code base are also applied to tests.

PR-URL: https://github.com/nodejs/node/pull/37930
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Derek Lewis <DerekNonGeneric@inf.is>
2021-04-01 23:14:29 -07:00

44 lines
932 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();
}));