-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
benchmark: add new module loading benchmarks
PR-URL: #26970 Refs: #25362 Reviewed-By: Guy Bedford <guybedford@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Signed-off-by: Beth Griggs <Bethany.Griggs@uk.ibm.com>
- Loading branch information
1 parent
32ec034
commit 09d6dfb
Showing
1 changed file
with
51 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,51 @@ | ||
'use strict'; | ||
const fs = require('fs'); | ||
const path = require('path'); | ||
const common = require('../common.js'); | ||
|
||
const tmpdir = require('../../test/common/tmpdir'); | ||
const benchmarkDirectory = path.join(tmpdir.path, 'nodejs-benchmark-module'); | ||
|
||
const bench = common.createBenchmark(main, { | ||
ext: ['', '.js'], | ||
files: [1e3], | ||
cache: ['true', 'false'] | ||
}); | ||
|
||
function main({ ext, cache, files }) { | ||
tmpdir.refresh(); | ||
fs.mkdirSync(benchmarkDirectory); | ||
fs.writeFileSync( | ||
`${benchmarkDirectory}/a.js`, | ||
'module.exports = {};' | ||
); | ||
for (var i = 0; i <= files; i++) { | ||
fs.mkdirSync(`${benchmarkDirectory}/${i}`); | ||
fs.writeFileSync( | ||
`${benchmarkDirectory}/${i}/package.json`, | ||
'{"main": "index.js"}' | ||
); | ||
fs.writeFileSync( | ||
`${benchmarkDirectory}/${i}/index.js`, | ||
`require('../a${ext}');` | ||
); | ||
} | ||
|
||
measureDir(cache === 'true', files); | ||
|
||
tmpdir.refresh(); | ||
} | ||
|
||
function measureDir(cache, files) { | ||
var i; | ||
if (cache) { | ||
for (i = 0; i <= files; i++) { | ||
require(`${benchmarkDirectory}/${i}`); | ||
} | ||
} | ||
bench.start(); | ||
for (i = 0; i <= files; i++) { | ||
require(`${benchmarkDirectory}/${i}`); | ||
} | ||
bench.end(files); | ||
} |