2020-06-01 18:26:55 +02:00
|
|
|
/*
|
|
|
|
* Fuzz testing the import endpoint
|
|
|
|
*/
|
2020-06-01 20:26:49 +02:00
|
|
|
/*
|
2020-10-08 07:37:17 +02:00
|
|
|
const common = require('../../common');
|
2020-06-01 19:52:46 +02:00
|
|
|
const settings = require(__dirname+'/../../../../tests/container/loadSettings.js').loadSettings();
|
2020-06-01 18:26:55 +02:00
|
|
|
const host = "http://" + settings.ip + ":" + settings.port;
|
2020-06-01 20:26:49 +02:00
|
|
|
const request = require(__dirname+'/../../../../src/node_modules/request');
|
2020-06-01 19:52:46 +02:00
|
|
|
const froth = require(__dirname+'/../../../../src/node_modules/mocha-froth');
|
2020-06-01 18:26:55 +02:00
|
|
|
|
2020-10-08 07:37:17 +02:00
|
|
|
const apiKey = common.apiKey;
|
2020-06-01 18:26:55 +02:00
|
|
|
var apiVersion = 1;
|
|
|
|
var testPadId = "TEST_fuzz" + makeid();
|
|
|
|
|
|
|
|
var endPoint = function(point, version){
|
|
|
|
version = version || apiVersion;
|
|
|
|
return '/api/'+version+'/'+point+'?apikey='+apiKey;
|
|
|
|
}
|
|
|
|
|
2020-06-01 20:26:49 +02:00
|
|
|
//console.log("Testing against padID", testPadId);
|
|
|
|
//console.log("To watch the test live visit " + host + "/p/" + testPadId);
|
|
|
|
//console.log("Tests will start in 5 seconds, click the URL now!");
|
2020-06-01 18:26:55 +02:00
|
|
|
|
|
|
|
setTimeout(function(){
|
2020-06-01 20:26:49 +02:00
|
|
|
for (let i=1; i<5; i++) { // 5000 runs
|
2020-06-01 18:26:55 +02:00
|
|
|
setTimeout( function timer(){
|
|
|
|
runTest(i);
|
|
|
|
}, i*100 ); // 100 ms
|
|
|
|
}
|
2020-06-01 20:26:49 +02:00
|
|
|
process.exit(0);
|
2020-06-01 18:26:55 +02:00
|
|
|
},5000); // wait 5 seconds
|
|
|
|
|
|
|
|
function runTest(number){
|
|
|
|
request(host + endPoint('createPad') + '&padID=' + testPadId, function(err, res, body){
|
|
|
|
var req = request.post(host + '/p/'+testPadId+'/import', function (err, res, body) {
|
|
|
|
if (err) {
|
|
|
|
throw new Error("FAILURE", err);
|
|
|
|
}else{
|
|
|
|
console.log("Success");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-06-01 20:26:49 +02:00
|
|
|
var fN = '/tmp/fuzztest.txt';
|
2020-06-01 18:26:55 +02:00
|
|
|
var cT = 'text/plain';
|
|
|
|
|
|
|
|
if (number % 2 == 0) {
|
|
|
|
fN = froth().toString();
|
|
|
|
cT = froth().toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
let form = req.form();
|
2020-06-01 20:26:49 +02:00
|
|
|
|
2020-06-01 18:26:55 +02:00
|
|
|
form.append('file', froth().toString(), {
|
|
|
|
filename: fN,
|
|
|
|
contentType: cT
|
|
|
|
});
|
2020-06-01 20:26:49 +02:00
|
|
|
console.log("here");
|
2020-06-01 18:26:55 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-11-21 19:37:57 +01:00
|
|
|
function makeid() {
|
2020-06-01 18:26:55 +02:00
|
|
|
var text = "";
|
|
|
|
var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
|
|
|
|
|
|
|
|
for( var i=0; i < 5; i++ ){
|
|
|
|
text += possible.charAt(Math.floor(Math.random() * possible.length));
|
|
|
|
}
|
|
|
|
return text;
|
|
|
|
}
|
2020-06-01 20:26:49 +02:00
|
|
|
*/
|