node/benchmark/es/string-concatenations.js
Ethan Arrowood f1b4e7c001 test: add benchmark tests for es
Added parallel test benchmark for es

PR-URL: https://github.com/nodejs/node/pull/16076
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
2017-10-17 23:28:26 -07:00

72 lines
1.5 KiB
JavaScript

'use strict';
const common = require('../common.js');
const configs = {
n: [1e3],
mode: [
'multi-concat',
'multi-join',
'multi-template',
'to-string-string',
'to-string-concat',
'to-string-template',
],
};
const bench = common.createBenchmark(main, configs);
function main(conf) {
const n = +conf.n;
const str = 'abc';
const num = 123;
let string;
switch (conf.mode) {
case '':
// Empty string falls through to next line as default, mostly for tests.
case 'multi-concat':
bench.start();
for (let i = 0; i < n; i++)
string = '...' + str + ', ' + num + ', ' + str + ', ' + num + '.';
bench.end(n);
break;
case 'multi-join':
bench.start();
for (let i = 0; i < n; i++)
string = ['...', str, ', ', num, ', ', str, ', ', num, '.'].join('');
bench.end(n);
break;
case 'multi-template':
bench.start();
for (let i = 0; i < n; i++)
string = `...${str}, ${num}, ${str}, ${num}.`;
bench.end(n);
break;
case 'to-string-string':
bench.start();
for (let i = 0; i < n; i++)
string = String(num);
bench.end(n);
break;
case 'to-string-concat':
bench.start();
for (let i = 0; i < n; i++)
string = '' + num;
bench.end(n);
break;
case 'to-string-template':
bench.start();
for (let i = 0; i < n; i++)
string = `${num}`;
bench.end(n);
break;
default:
throw new Error('Unexpected method');
}
return string;
}