Browse Source

test: http2 stored settings returned when present

Refs: #14985
PR-URL: https://github.com/nodejs/node/pull/15751
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
v9.x-staging
Trivikram Kamat 7 years ago
committed by Matteo Collina
parent
commit
fabd618eef
  1. 10
      test/parallel/test-http2-session-settings.js

10
test/parallel/test-http2-session-settings.js

@ -22,8 +22,14 @@ function assertSettings(settings) {
function onStream(stream, headers, flags) {
assertSettings(stream.session.localSettings);
assertSettings(stream.session.remoteSettings);
const localSettings = stream.session.localSettings;
const remoteSettings = stream.session.remoteSettings;
assertSettings(localSettings);
assertSettings(remoteSettings);
// Test that stored settings are returned when called for second time
assert.strictEqual(stream.session.localSettings, localSettings);
assert.strictEqual(stream.session.remoteSettings, remoteSettings);
stream.respond({
'content-type': 'text/html',

Loading…
Cancel
Save