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.
68 lines
2.4 KiB
68 lines
2.4 KiB
7 years ago
|
// Flags: --expose-internals
|
||
|
'use strict';
|
||
|
|
||
|
require('../common');
|
||
|
|
||
|
// Test coverage for the updateOptionsBuffer method used internally
|
||
|
// by the http2 implementation.
|
||
|
|
||
|
const { updateOptionsBuffer } = require('internal/http2/util');
|
||
|
const { optionsBuffer } = process.binding('http2');
|
||
|
const { ok, strictEqual } = require('assert');
|
||
|
|
||
|
const IDX_OPTIONS_MAX_DEFLATE_DYNAMIC_TABLE_SIZE = 0;
|
||
|
const IDX_OPTIONS_MAX_RESERVED_REMOTE_STREAMS = 1;
|
||
|
const IDX_OPTIONS_MAX_SEND_HEADER_BLOCK_LENGTH = 2;
|
||
|
const IDX_OPTIONS_PEER_MAX_CONCURRENT_STREAMS = 3;
|
||
|
const IDX_OPTIONS_PADDING_STRATEGY = 4;
|
||
|
const IDX_OPTIONS_FLAGS = 5;
|
||
|
|
||
|
{
|
||
|
updateOptionsBuffer({
|
||
|
maxDeflateDynamicTableSize: 1,
|
||
|
maxReservedRemoteStreams: 2,
|
||
|
maxSendHeaderBlockLength: 3,
|
||
|
peerMaxConcurrentStreams: 4,
|
||
|
paddingStrategy: 5
|
||
|
});
|
||
|
|
||
|
strictEqual(optionsBuffer[IDX_OPTIONS_MAX_DEFLATE_DYNAMIC_TABLE_SIZE], 1);
|
||
|
strictEqual(optionsBuffer[IDX_OPTIONS_MAX_RESERVED_REMOTE_STREAMS], 2);
|
||
|
strictEqual(optionsBuffer[IDX_OPTIONS_MAX_SEND_HEADER_BLOCK_LENGTH], 3);
|
||
|
strictEqual(optionsBuffer[IDX_OPTIONS_PEER_MAX_CONCURRENT_STREAMS], 4);
|
||
|
strictEqual(optionsBuffer[IDX_OPTIONS_PADDING_STRATEGY], 5);
|
||
|
|
||
|
const flags = optionsBuffer[IDX_OPTIONS_FLAGS];
|
||
|
|
||
|
ok(flags & (1 << IDX_OPTIONS_MAX_DEFLATE_DYNAMIC_TABLE_SIZE));
|
||
|
ok(flags & (1 << IDX_OPTIONS_MAX_RESERVED_REMOTE_STREAMS));
|
||
|
ok(flags & (1 << IDX_OPTIONS_MAX_SEND_HEADER_BLOCK_LENGTH));
|
||
|
ok(flags & (1 << IDX_OPTIONS_PEER_MAX_CONCURRENT_STREAMS));
|
||
|
ok(flags & (1 << IDX_OPTIONS_PADDING_STRATEGY));
|
||
|
}
|
||
|
|
||
|
{
|
||
|
optionsBuffer[IDX_OPTIONS_MAX_SEND_HEADER_BLOCK_LENGTH] = 0;
|
||
|
|
||
|
updateOptionsBuffer({
|
||
|
maxDeflateDynamicTableSize: 1,
|
||
|
maxReservedRemoteStreams: 2,
|
||
|
peerMaxConcurrentStreams: 4,
|
||
|
paddingStrategy: 5
|
||
|
});
|
||
|
|
||
|
strictEqual(optionsBuffer[IDX_OPTIONS_MAX_DEFLATE_DYNAMIC_TABLE_SIZE], 1);
|
||
|
strictEqual(optionsBuffer[IDX_OPTIONS_MAX_RESERVED_REMOTE_STREAMS], 2);
|
||
|
strictEqual(optionsBuffer[IDX_OPTIONS_MAX_SEND_HEADER_BLOCK_LENGTH], 0);
|
||
|
strictEqual(optionsBuffer[IDX_OPTIONS_PEER_MAX_CONCURRENT_STREAMS], 4);
|
||
|
strictEqual(optionsBuffer[IDX_OPTIONS_PADDING_STRATEGY], 5);
|
||
|
|
||
|
const flags = optionsBuffer[IDX_OPTIONS_FLAGS];
|
||
|
|
||
|
ok(flags & (1 << IDX_OPTIONS_MAX_DEFLATE_DYNAMIC_TABLE_SIZE));
|
||
|
ok(flags & (1 << IDX_OPTIONS_MAX_RESERVED_REMOTE_STREAMS));
|
||
|
ok(!(flags & (1 << IDX_OPTIONS_MAX_SEND_HEADER_BLOCK_LENGTH)));
|
||
|
ok(flags & (1 << IDX_OPTIONS_PEER_MAX_CONCURRENT_STREAMS));
|
||
|
ok(flags & (1 << IDX_OPTIONS_PADDING_STRATEGY));
|
||
|
}
|