mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
f3257dd3ea
Rename different parameters with the same names to make it possible to run tests for url benchmarks. PR-URL: https://github.com/nodejs/node/pull/19084 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Khaidi Chu <i@2333.moe> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: James M Snell <jasnell@gmail.com>
23 lines
601 B
JavaScript
23 lines
601 B
JavaScript
'use strict';
|
|
const common = require('../common.js');
|
|
const { URLSearchParams } = require('url');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
accessMethod: ['get', 'getAll', 'has'],
|
|
param: ['one', 'two', 'three', 'nonexistent'],
|
|
n: [2e7]
|
|
});
|
|
|
|
const str = 'one=single&two=first&three=first&two=2nd&three=2nd&three=3rd';
|
|
|
|
function main({ accessMethod, param, n }) {
|
|
const params = new URLSearchParams(str);
|
|
if (!params[accessMethod])
|
|
throw new Error(`Unknown method ${accessMethod}`);
|
|
|
|
bench.start();
|
|
for (var i = 0; i < n; i += 1)
|
|
params[accessMethod](param);
|
|
bench.end(n);
|
|
}
|