mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.2 KiB
57 lines
1.2 KiB
'use strict';
|
|
|
|
const common = require('../common.js');
|
|
const assert = require('assert');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
n: [1e6],
|
|
method: [
|
|
'doesNotThrow',
|
|
'throws',
|
|
'throws_TypeError',
|
|
'throws_RegExp'
|
|
]
|
|
});
|
|
|
|
function main(conf) {
|
|
const n = +conf.n;
|
|
const throws = () => { throw new TypeError('foobar'); };
|
|
const doesNotThrow = () => { return 'foobar'; };
|
|
const regExp = /foobar/;
|
|
const message = 'failure';
|
|
var i;
|
|
|
|
switch (conf.method) {
|
|
case 'doesNotThrow':
|
|
bench.start();
|
|
for (i = 0; i < n; ++i) {
|
|
assert.doesNotThrow(doesNotThrow);
|
|
}
|
|
bench.end(n);
|
|
break;
|
|
case 'throws':
|
|
bench.start();
|
|
for (i = 0; i < n; ++i) {
|
|
// eslint-disable-next-line no-restricted-syntax
|
|
assert.throws(throws);
|
|
}
|
|
bench.end(n);
|
|
break;
|
|
case 'throws_TypeError':
|
|
bench.start();
|
|
for (i = 0; i < n; ++i) {
|
|
assert.throws(throws, TypeError, message);
|
|
}
|
|
bench.end(n);
|
|
break;
|
|
case 'throws_RegExp':
|
|
bench.start();
|
|
for (i = 0; i < n; ++i) {
|
|
assert.throws(throws, regExp, message);
|
|
}
|
|
bench.end(n);
|
|
break;
|
|
default:
|
|
throw new Error(`Unsupported method ${conf.method}`);
|
|
}
|
|
}
|
|
|