mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
a58ffad656
PR-URL: https://github.com/nodejs/node/pull/49756 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
69 lines
1.2 KiB
JavaScript
69 lines
1.2 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
n: [1e7],
|
|
value: [
|
|
'[]',
|
|
'[1,2,3]',
|
|
],
|
|
}, {
|
|
flags: ['--expose-internals'],
|
|
});
|
|
|
|
function getValidateFactory() {
|
|
const {
|
|
validateArray,
|
|
} = require('internal/validators');
|
|
|
|
return (n) => validateArray(n, 'n');
|
|
}
|
|
|
|
function main({ n, value }) {
|
|
const validate = getValidateFactory();
|
|
|
|
switch (value) {
|
|
case '[]':
|
|
value = [];
|
|
break;
|
|
case '[1,2,3]':
|
|
value = [1, 2, 3];
|
|
break;
|
|
}
|
|
|
|
// Warm up.
|
|
const length = 1024;
|
|
const array = [];
|
|
let errCase = false;
|
|
|
|
for (let i = 0; i < length; ++i) {
|
|
try {
|
|
array.push(validate(value));
|
|
} catch (e) {
|
|
errCase = true;
|
|
array.push(e);
|
|
}
|
|
}
|
|
|
|
bench.start();
|
|
|
|
for (let i = 0; i < n; ++i) {
|
|
const index = i % length;
|
|
try {
|
|
array[index] = validate(value);
|
|
} catch (e) {
|
|
array[index] = e;
|
|
}
|
|
}
|
|
|
|
bench.end(n);
|
|
|
|
// Verify the entries to prevent dead code elimination from making
|
|
// the benchmark invalid.
|
|
for (let i = 0; i < length; ++i) {
|
|
assert.strictEqual(typeof array[i], errCase ? 'object' : 'undefined');
|
|
}
|
|
}
|