-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
benchmark: add strictEqual and notStrictEqual bench
PR-URL: #54734 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
- Loading branch information
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
'use strict'; | ||
|
||
const common = require('../common.js'); | ||
const assert = require('assert'); | ||
|
||
const bench = common.createBenchmark(main, { | ||
n: [25, 2e5], | ||
type: ['string', 'object', 'number'], | ||
method: ['strictEqual', 'notStrictEqual'], | ||
}); | ||
|
||
function main({ type, n, method }) { | ||
const fn = assert[method]; | ||
let actual, expected; | ||
switch (type) { | ||
case 'string': | ||
actual = expected = 'Hello World'; | ||
if (method === 'notStrictEqual') { | ||
expected += 'bar'; | ||
} | ||
break; | ||
case 'object': | ||
actual = expected = { a: 'Hello', b: 'World' }; | ||
if (method === 'notStrictEqual') { | ||
expected = { a: 'Hello', b: 'World' }; | ||
} | ||
break; | ||
case 'number': | ||
actual = expected = 1e9; | ||
if (method === 'notStrictEqual') { | ||
expected += 1; | ||
} | ||
break; | ||
default: | ||
throw new Error('Unexpected type'); | ||
} | ||
|
||
bench.start(); | ||
for (let i = 0; i < n; ++i) { | ||
fn(actual, expected); | ||
} | ||
bench.end(n); | ||
} |