@testim/testim-cli
Version:
Command line interface for running Testing on you CI
40 lines (34 loc) • 1.19 kB
JavaScript
var assert = require('assert');
var http = require('http');
var net = require('net');
var multiparty = require('../../');
var client;
var attachmentCount = 510;
var server = http.createServer(function(req, res) {
var form = new multiparty.Form({maxFields: 10000});
form.parse(req, function(err, fieldsTable, filesTable, fieldsList, filesList) {
assert.strictEqual(err.code, "EMFILE");
res.end();
client.end();
server.close();
});
});
server.listen(function() {
client = net.connect(server.address().port);
var boundary = "------WebKitFormBoundaryvfUZhxgsZDO7FXLF\r\n";
var oneAttachment = boundary +
"Content-Disposition: form-data; name=\"upload\"; filename=\"blah1.txt\"\r\n" +
"Content-Type: text/plain\r\n" +
"\r\n" +
"hi1\r\n" +
"\r\n";
var payloadSize = oneAttachment.length * attachmentCount + boundary.length;
client.write("POST /upload HTTP/1.1\r\n" +
"Content-Length: " + payloadSize + "\r\n" +
"Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryvfUZhxgsZDO7FXLF\r\n" +
"\r\n");
for (var i = 0; i < attachmentCount; i += 1) {
client.write(oneAttachment);
}
client.write(boundary);
});