mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
e738edce6a
Subsystems: blob, child_process, common, crypto, http, http2, readline, repl, snapshot, trace_events PR-URL: https://github.com/nodejs/node/pull/49127 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Debadree Chatterjee <debadree333@gmail.com>
55 lines
1.4 KiB
JavaScript
55 lines
1.4 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
if (common.isWindows)
|
|
common.skip('no mkfifo on Windows');
|
|
const child_process = require('child_process');
|
|
const fs = require('fs');
|
|
const http2 = require('http2');
|
|
const assert = require('assert');
|
|
|
|
const tmpdir = require('../common/tmpdir');
|
|
tmpdir.refresh();
|
|
|
|
const pipeName = tmpdir.resolve('pipe');
|
|
|
|
const mkfifo = child_process.spawnSync('mkfifo', [ pipeName ]);
|
|
if (mkfifo.error && mkfifo.error.code === 'ENOENT') {
|
|
common.skip('missing mkfifo');
|
|
}
|
|
|
|
const server = http2.createServer();
|
|
server.on('stream', (stream) => {
|
|
stream.respondWithFile(pipeName, {
|
|
'content-type': 'text/plain'
|
|
}, {
|
|
onError: common.mustNotCall(),
|
|
statCheck: common.mustCall()
|
|
});
|
|
});
|
|
|
|
server.listen(0, () => {
|
|
const client = http2.connect(`http://localhost:${server.address().port}`);
|
|
const req = client.request();
|
|
|
|
req.on('response', common.mustCall((headers) => {
|
|
assert.strictEqual(headers[':status'], 200);
|
|
}));
|
|
let body = '';
|
|
req.setEncoding('utf8');
|
|
req.on('data', (chunk) => body += chunk);
|
|
req.on('end', common.mustCall(() => {
|
|
assert.strictEqual(body, 'Hello, world!\n');
|
|
client.close();
|
|
server.close();
|
|
}));
|
|
req.end();
|
|
});
|
|
|
|
fs.open(pipeName, 'w', common.mustSucceed((fd) => {
|
|
fs.writeSync(fd, 'Hello, world!\n');
|
|
fs.closeSync(fd);
|
|
}));
|