node/benchmark/url/url-format.js
Ruben Bridgewater bb6125bac7
benchmark: remove special test entries
This reverts commit 7cfbc9f90f.

PR-URL: https://github.com/nodejs/node/pull/31755
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Vladimir de Turckheim <vlad2t@hotmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
2020-03-09 22:35:54 +01:00

28 lines
631 B
JavaScript

'use strict';
const common = require('../common.js');
const url = require('url');
const inputs = {
slashes: { slashes: true, host: 'localhost' },
file: { protocol: 'file:', pathname: '/foo' },
};
const bench = common.createBenchmark(main, {
type: Object.keys(inputs),
n: [25e6]
});
function main({ type, n }) {
const input = inputs[type];
// Force-optimize url.format() so that the benchmark doesn't get
// disrupted by the optimizer kicking in halfway through.
for (const name in inputs)
url.format(inputs[name]);
bench.start();
for (let i = 0; i < n; i += 1)
url.format(input);
bench.end(n);
}