blob: b45713deb3ca6064a388e10505022e45ba629897 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
'use strict';
const common = require('../common');
if (!common.hasCrypto)
common.skip('missing crypto');
const assert = require('assert');
const http2 = require('http2');
const options = {};
const server = http2.createServer(options);
// options are defaulted but the options are not modified
assert.deepStrictEqual(Object.keys(options), []);
server.on('stream', common.mustCall((stream) => {
const headers = {};
const options = {};
stream.respond(headers, options);
// The headers are defaulted but the original object is not modified
assert.deepStrictEqual(Object.keys(headers), []);
// Options are defaulted but the original object is not modified
assert.deepStrictEqual(Object.keys(options), []);
stream.end();
}));
server.listen(0, common.mustCall(() => {
const client = http2.connect(`http://localhost:${server.address().port}`);
const headers = {};
const options = {};
const req = client.request(headers, options);
// The headers are defaulted but the original object is not modified
assert.deepStrictEqual(Object.keys(headers), []);
// Options are defaulted but the original object is not modified
assert.deepStrictEqual(Object.keys(options), []);
req.resume();
req.on('end', common.mustCall(() => {
server.close();
client.close();
}));
}));
|