summaryrefslogtreecommitdiff
path: root/benchmark
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark')
-rw-r--r--benchmark/fs/bench-opendir.js51
1 files changed, 51 insertions, 0 deletions
diff --git a/benchmark/fs/bench-opendir.js b/benchmark/fs/bench-opendir.js
new file mode 100644
index 0000000000..419c3a231a
--- /dev/null
+++ b/benchmark/fs/bench-opendir.js
@@ -0,0 +1,51 @@
+'use strict';
+
+const common = require('../common');
+const fs = require('fs');
+const path = require('path');
+
+const bench = common.createBenchmark(main, {
+ n: [100],
+ dir: [ 'lib', 'test/parallel'],
+ mode: [ 'async', 'sync', 'callback' ]
+});
+
+async function main({ n, dir, mode }) {
+ const fullPath = path.resolve(__dirname, '../../', dir);
+
+ bench.start();
+
+ let counter = 0;
+ for (let i = 0; i < n; i++) {
+ if (mode === 'async') {
+ // eslint-disable-next-line no-unused-vars
+ for await (const entry of await fs.promises.opendir(fullPath))
+ counter++;
+ } else if (mode === 'callback') {
+ const dir = await fs.promises.opendir(fullPath);
+ await new Promise((resolve, reject) => {
+ function read() {
+ dir.read((err, entry) => {
+ if (err) {
+ reject(err);
+ } else if (entry === null) {
+ resolve(dir.close());
+ } else {
+ counter++;
+ read();
+ }
+ });
+ }
+
+ read();
+ });
+ } else {
+ const dir = fs.opendirSync(fullPath);
+ while (dir.readSync() !== null)
+ counter++;
+ dir.closeSync();
+ }
+ }
+
+ bench.end(counter);
+}