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.
44 lines
1.2 KiB
44 lines
1.2 KiB
8 years ago
|
// Flags: --expose-http2
|
||
|
'use strict';
|
||
|
|
||
|
const common = require('../common');
|
||
|
const assert = require('assert');
|
||
|
const h2 = require('http2');
|
||
|
|
||
|
// Http2ServerResponse.flushHeaders
|
||
|
|
||
|
const server = h2.createServer();
|
||
|
server.listen(0, common.mustCall(function() {
|
||
|
const port = server.address().port;
|
||
|
server.once('request', common.mustCall(function(request, response) {
|
||
|
response.flushHeaders();
|
||
|
response.flushHeaders(); // Idempotent
|
||
|
response.writeHead(400, {'foo-bar': 'abc123'}); // Ignored
|
||
|
|
||
|
response.on('finish', common.mustCall(function() {
|
||
|
server.close();
|
||
|
}));
|
||
|
response.end();
|
||
|
}));
|
||
|
|
||
|
const url = `http://localhost:${port}`;
|
||
|
const client = h2.connect(url, common.mustCall(function() {
|
||
|
const headers = {
|
||
|
':path': '/',
|
||
|
':method': 'GET',
|
||
|
':scheme': 'http',
|
||
|
':authority': `localhost:${port}`
|
||
|
};
|
||
|
const request = client.request(headers);
|
||
|
request.on('response', common.mustCall(function(headers, flags) {
|
||
|
assert.strictEqual(headers['foo-bar'], undefined);
|
||
|
assert.strictEqual(headers[':status'], 200);
|
||
|
}, 1));
|
||
|
request.on('end', common.mustCall(function() {
|
||
|
client.destroy();
|
||
|
}));
|
||
|
request.end();
|
||
|
request.resume();
|
||
|
}));
|
||
|
}));
|