summaryrefslogtreecommitdiff
path: root/benchmark/assert/throws.js
blob: a8a7bd4509e1ca94d8094134dbd47e5fd7b7687e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
'use strict';

const common = require('../common.js');
const { throws, doesNotThrow } = require('assert');

const bench = common.createBenchmark(main, {
  n: [1e6],
  method: [
    'doesNotThrow',
    'throws',
    'throws_TypeError',
    'throws_RegExp'
  ]
});

function main({ n, method }) {
  const throwError = () => { throw new TypeError('foobar'); };
  const doNotThrowError = () => { return 'foobar'; };
  const regExp = /foobar/;
  const message = 'failure';
  var i;

  switch (method) {
    case '':
      // Empty string falls through to next line as default, mostly for tests.
    case 'doesNotThrow':
      bench.start();
      for (i = 0; i < n; ++i) {
        doesNotThrow(doNotThrowError);
      }
      bench.end(n);
      break;
    case 'throws':
      bench.start();
      for (i = 0; i < n; ++i) {
        throws(throwError);
      }
      bench.end(n);
      break;
    case 'throws_TypeError':
      bench.start();
      for (i = 0; i < n; ++i) {
        throws(throwError, TypeError, message);
      }
      bench.end(n);
      break;
    case 'throws_RegExp':
      bench.start();
      for (i = 0; i < n; ++i) {
        throws(throwError, regExp, message);
      }
      bench.end(n);
      break;
    default:
      throw new Error(`Unsupported method ${method}`);
  }
}