mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
48e784043d
PR-URL: https://github.com/nodejs/node/pull/40852 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
59 lines
1.6 KiB
JavaScript
59 lines
1.6 KiB
JavaScript
'use strict';
|
|
|
|
// Verifies that uploading data from a client works
|
|
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
const assert = require('assert');
|
|
const http2 = require('http2');
|
|
const fs = require('fs');
|
|
const fixtures = require('../common/fixtures');
|
|
const Countdown = require('../common/countdown');
|
|
|
|
const loc = fixtures.path('person-large.jpg');
|
|
let fileData;
|
|
|
|
assert(fs.existsSync(loc));
|
|
|
|
fs.readFile(loc, common.mustSucceed((data) => {
|
|
fileData = data;
|
|
|
|
const server = http2.createServer();
|
|
let client;
|
|
|
|
const countdown = new Countdown(2, () => {
|
|
server.close();
|
|
client.close();
|
|
});
|
|
|
|
server.on('stream', common.mustCall((stream) => {
|
|
let data = Buffer.alloc(0);
|
|
stream.on('data', (chunk) => data = Buffer.concat([data, chunk]));
|
|
stream.on('end', common.mustCall(() => {
|
|
assert.deepStrictEqual(data, fileData);
|
|
}));
|
|
// Waiting on close avoids spurious ECONNRESET seen in windows CI.
|
|
// Not sure if this is actually a bug; more details at
|
|
// https://github.com/nodejs/node/issues/20750#issuecomment-511015247
|
|
stream.on('close', () => countdown.dec());
|
|
stream.respond();
|
|
stream.end();
|
|
}));
|
|
|
|
server.listen(0, common.mustCall(() => {
|
|
client = http2.connect(`http://localhost:${server.address().port}`);
|
|
|
|
const req = client.request({ ':method': 'POST' });
|
|
req.on('response', common.mustCall());
|
|
|
|
req.resume();
|
|
req.on('end', common.mustCall());
|
|
|
|
const str = fs.createReadStream(loc);
|
|
str.on('end', common.mustCall());
|
|
str.on('close', () => countdown.dec());
|
|
str.pipe(req);
|
|
}));
|
|
}));
|