mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 07:27:22 +01:00
5442c28b65
This reduces the runtime and makes sure the strict and loose options can be tested individually. Besides that a couple of redundant cases were removed. PR-URL: https://github.com/nodejs/node/pull/22211 Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
79 lines
2.4 KiB
JavaScript
79 lines
2.4 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common.js');
|
|
const { deepEqual, deepStrictEqual, notDeepEqual, notDeepStrictEqual } =
|
|
require('assert');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
n: [5e2],
|
|
len: [5e2],
|
|
strict: [0, 1],
|
|
method: [
|
|
'deepEqual_primitiveOnly',
|
|
'deepEqual_objectOnly',
|
|
'deepEqual_mixed',
|
|
'notDeepEqual_primitiveOnly',
|
|
'notDeepEqual_objectOnly',
|
|
'notDeepEqual_mixed'
|
|
]
|
|
});
|
|
|
|
function benchmark(method, n, values, values2) {
|
|
const actual = new Set(values);
|
|
// Prevent reference equal elements
|
|
const deepCopy = JSON.parse(JSON.stringify(values2 ? values2 : values));
|
|
const expected = new Set(deepCopy);
|
|
bench.start();
|
|
for (var i = 0; i < n; ++i) {
|
|
method(actual, expected);
|
|
}
|
|
bench.end(n);
|
|
}
|
|
|
|
function main({ n, len, method, strict }) {
|
|
const array = Array(len).fill(1);
|
|
|
|
var values, values2;
|
|
|
|
switch (method) {
|
|
case '':
|
|
// Empty string falls through to next line as default, mostly for tests.
|
|
case 'deepEqual_primitiveOnly':
|
|
values = array.map((_, i) => `str_${i}`);
|
|
benchmark(strict ? deepStrictEqual : deepEqual, n, values);
|
|
break;
|
|
case 'deepEqual_objectOnly':
|
|
values = array.map((_, i) => [`str_${i}`, null]);
|
|
benchmark(strict ? deepStrictEqual : deepEqual, n, values);
|
|
break;
|
|
case 'deepEqual_mixed':
|
|
values = array.map((_, i) => {
|
|
return i % 2 ? [`str_${i}`, null] : `str_${i}`;
|
|
});
|
|
benchmark(strict ? deepStrictEqual : deepEqual, n, values);
|
|
break;
|
|
case 'notDeepEqual_primitiveOnly':
|
|
values = array.map((_, i) => `str_${i}`);
|
|
values2 = values.slice(0);
|
|
values2[Math.floor(len / 2)] = 'w00t';
|
|
benchmark(strict ? notDeepStrictEqual : notDeepEqual, n, values, values2);
|
|
break;
|
|
case 'notDeepEqual_objectOnly':
|
|
values = array.map((_, i) => [`str_${i}`, null]);
|
|
values2 = values.slice(0);
|
|
values2[Math.floor(len / 2)] = ['w00t'];
|
|
benchmark(strict ? notDeepStrictEqual : notDeepEqual, n, values, values2);
|
|
break;
|
|
case 'notDeepEqual_mixed':
|
|
values = array.map((_, i) => {
|
|
return i % 2 ? [`str_${i}`, null] : `str_${i}`;
|
|
});
|
|
values2 = values.slice();
|
|
values2[0] = 'w00t';
|
|
benchmark(strict ? notDeepStrictEqual : notDeepEqual, n, values, values2);
|
|
break;
|
|
default:
|
|
throw new Error(`Unsupported method "${method}"`);
|
|
}
|
|
}
|