-
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 require-esm benchmark
PR-URL: #52166 Refs: #52134 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Guy Bedford <guybedford@gmail.com> Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
- Loading branch information
1 parent
4d5d8b4
commit dca8007
Showing
1 changed file
with
79 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,79 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const fs = require('fs'); | ||
const tmpdir = require('../../test/common/tmpdir'); | ||
const path = require('path'); | ||
const assert = require('assert'); | ||
|
||
const bench = common.createBenchmark(main, { | ||
type: ['all', 'access', 'load'], | ||
exports: ['default', 'named'], | ||
n: [1000], | ||
}, { | ||
flags: ['--experimental-require-module', '--no-warnings'], | ||
}); | ||
|
||
function prepare(count, useDefault) { | ||
tmpdir.refresh(); | ||
const dir = tmpdir.resolve('modules'); | ||
fs.mkdirSync(dir, { recursive: true }); | ||
let mainSource = ''; | ||
let useSource = 'exports.access = function() { return 0'; | ||
for (let i = 0; i < count; ++i) { | ||
let modSource = `const value${i} = 1;\n`; | ||
if (useDefault) { | ||
modSource += `export default { value${i} }\n`; | ||
} else { | ||
modSource += `export { value${i} };\n`; | ||
} | ||
const filename = `mod${i}.mjs`; | ||
fs.writeFileSync( | ||
path.resolve(dir, filename), | ||
modSource, | ||
'utf8', | ||
); | ||
mainSource += `const mod${i} = require('./modules/${filename}');\n`; | ||
if (useDefault) { | ||
useSource += ` + mod${i}.default.value${i}`; | ||
} else { | ||
useSource += ` + mod${i}.value${i}`; | ||
} | ||
} | ||
useSource += '; };\n'; | ||
const script = tmpdir.resolve('main.js'); | ||
fs.writeFileSync(script, mainSource + useSource, 'utf8'); | ||
return script; | ||
} | ||
|
||
function main({ n, exports, type }) { | ||
const script = prepare(n, exports === 'default'); | ||
switch (type) { | ||
case 'all': { | ||
bench.start(); | ||
const result = require(script).access(); | ||
bench.end(n); | ||
assert.strictEqual(result, n); | ||
break; | ||
} | ||
case 'access': { | ||
const { access } = require(script); | ||
bench.start(); | ||
let result = access(); | ||
for (let i = 0; i < 99; ++i) { | ||
result = access(); | ||
} | ||
bench.end(n * 100); | ||
assert.strictEqual(result, n); | ||
break; | ||
} | ||
case 'load': { | ||
bench.start(); | ||
const { access } = require(script); | ||
bench.end(n); | ||
const result = access(); | ||
assert.strictEqual(result, n); | ||
break; | ||
} | ||
} | ||
} |