Loadtest で POST する
node.js の loadtest で Content-Type を application/x-www-form-urlencoded にしたい場合は以下のような感じにする必要があります。という備忘録
const loadtest = require('loadtest'); const options = { url: 'http://localhost:8080/bench', method: 'post', contentType: 'application/x-www-form-urlencoded', body: 'url=https://google.com', maxRequests: 1, concurrency: 1, }; loadtest.loadTest(options, (err, result) => { if (err) { return console.error(err); } console.log('Tests run successfully:',result); });
おしまい