mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 21:19:50 +01: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>
66 lines
1.7 KiB
JavaScript
66 lines
1.7 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'
|
|
}, {
|
|
offset: 10,
|
|
onError(err) {
|
|
common.expectsError({
|
|
code: 'ERR_HTTP2_SEND_FILE_NOSEEK',
|
|
name: 'Error',
|
|
message: 'Offset or length can only be specified for regular files'
|
|
})(err);
|
|
|
|
stream.respond({ ':status': 404 });
|
|
stream.end();
|
|
},
|
|
statCheck: common.mustNotCall()
|
|
});
|
|
});
|
|
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'], 404);
|
|
}));
|
|
req.on('data', common.mustNotCall());
|
|
req.on('end', common.mustCall(() => {
|
|
client.close();
|
|
server.close();
|
|
}));
|
|
req.end();
|
|
});
|
|
|
|
fs.writeFile(pipeName, 'Hello, world!\n', common.mustCall((err) => {
|
|
// It's possible for the reading end of the pipe to get the expected error
|
|
// and break everything down before we're finished, so allow `EPIPE` but
|
|
// no other errors.
|
|
if (err?.code !== 'EPIPE') {
|
|
assert.ifError(err);
|
|
}
|
|
}));
|