-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
http2: improved coverage of Http2Stream destroy
Refs: #14985 PR-URL: #15461 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
- Loading branch information
1 parent
757c342
commit 66a5f99
Showing
3 changed files
with
119 additions
and
0 deletions.
There are no files selected for viewing
41 changes: 41 additions & 0 deletions
41
test/parallel/test-http2-server-destroy-before-priority.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// Flags: --expose-http2 | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
if (!common.hasCrypto) | ||
common.skip('missing crypto'); | ||
const assert = require('assert'); | ||
const http2 = require('http2'); | ||
|
||
const server = http2.createServer(); | ||
|
||
// Test that ERR_HTTP2_INVALID_STREAM is thrown when a stream is destroyed | ||
// before calling stream.priority | ||
server.on('stream', common.mustCall(onStream)); | ||
|
||
function onStream(stream, headers, flags) { | ||
stream.session.destroy(); | ||
assert.throws(() => stream.priority(), | ||
common.expectsError({ | ||
code: 'ERR_HTTP2_INVALID_STREAM', | ||
message: /^The stream has been destroyed$/ | ||
})); | ||
} | ||
|
||
server.listen(0); | ||
|
||
server.on('listening', common.mustCall(() => { | ||
|
||
const client = http2.connect(`http://localhost:${server.address().port}`); | ||
|
||
const req = client.request({ ':path': '/' }); | ||
|
||
req.on('response', common.mustNotCall()); | ||
req.resume(); | ||
req.on('end', common.mustCall(() => { | ||
server.close(); | ||
client.destroy(); | ||
})); | ||
req.end(); | ||
|
||
})); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// Flags: --expose-http2 | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
if (!common.hasCrypto) | ||
common.skip('missing crypto'); | ||
const assert = require('assert'); | ||
const http2 = require('http2'); | ||
|
||
const server = http2.createServer(); | ||
|
||
// Test that ERR_HTTP2_INVALID_STREAM is thrown when a stream is destroyed | ||
// before calling stream.rstStream | ||
server.on('stream', common.mustCall(onStream)); | ||
|
||
function onStream(stream, headers, flags) { | ||
stream.session.destroy(); | ||
assert.throws(() => stream.rstStream(), | ||
common.expectsError({ | ||
code: 'ERR_HTTP2_INVALID_STREAM', | ||
message: /^The stream has been destroyed$/ | ||
})); | ||
} | ||
|
||
server.listen(0); | ||
|
||
server.on('listening', common.mustCall(() => { | ||
|
||
const client = http2.connect(`http://localhost:${server.address().port}`); | ||
|
||
const req = client.request({ ':path': '/' }); | ||
|
||
req.on('response', common.mustNotCall()); | ||
req.resume(); | ||
req.on('end', common.mustCall(() => { | ||
server.close(); | ||
client.destroy(); | ||
})); | ||
req.end(); | ||
|
||
})); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// Flags: --expose-http2 | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
if (!common.hasCrypto) | ||
common.skip('missing crypto'); | ||
const assert = require('assert'); | ||
const http2 = require('http2'); | ||
|
||
const server = http2.createServer(); | ||
|
||
// Test that stream.state getter returns and empty object | ||
// if the stream session has been destroyed | ||
server.on('stream', common.mustCall(onStream)); | ||
|
||
function onStream(stream, headers, flags) { | ||
stream.session.destroy(); | ||
assert.deepStrictEqual(Object.create(null), stream.state); | ||
} | ||
|
||
server.listen(0); | ||
|
||
server.on('listening', common.mustCall(() => { | ||
|
||
const client = http2.connect(`http://localhost:${server.address().port}`); | ||
|
||
const req = client.request({ ':path': '/' }); | ||
|
||
req.on('response', common.mustNotCall()); | ||
req.resume(); | ||
req.on('end', common.mustCall(() => { | ||
server.close(); | ||
client.destroy(); | ||
})); | ||
req.end(); | ||
|
||
})); |