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.
53 lines
1.3 KiB
53 lines
1.3 KiB
'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 path = require('path');
|
|
|
|
const loc = path.join(common.fixturesDir, 'person.jpg');
|
|
let fileData;
|
|
|
|
assert(fs.existsSync(loc));
|
|
|
|
fs.readFile(loc, common.mustCall((err, data) => {
|
|
assert.ifError(err);
|
|
fileData = data;
|
|
|
|
const server = http2.createServer();
|
|
|
|
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);
|
|
}));
|
|
stream.respond();
|
|
stream.end();
|
|
}));
|
|
|
|
server.listen(0, common.mustCall(() => {
|
|
const client = http2.connect(`http://localhost:${server.address().port}`);
|
|
|
|
let remaining = 2;
|
|
function maybeClose() {
|
|
if (--remaining === 0) {
|
|
server.close();
|
|
client.destroy();
|
|
}
|
|
}
|
|
|
|
const req = client.request({ ':method': 'POST' });
|
|
req.on('response', common.mustCall());
|
|
req.resume();
|
|
req.on('end', common.mustCall(maybeClose));
|
|
const str = fs.createReadStream(loc);
|
|
str.on('end', common.mustCall(maybeClose));
|
|
str.pipe(req);
|
|
}));
|
|
}));
|
|
|