summaryrefslogtreecommitdiff
path: root/benchmark/fs/bench-realpathSync.js
blob: 27a66631ab3ebbd00085306420bd5f049e289a84 (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
'use strict';

const common = require('../common');
const fs = require('fs');
const path = require('path');

process.chdir(__dirname);
const resolved_path = path.resolve(__dirname, '../../lib/');
const relative_path = path.relative(__dirname, '../../lib/');

const bench = common.createBenchmark(main, {
  n: [1e4],
  type: ['relative', 'resolved'],
});


function main(conf) {
  const n = conf.n >>> 0;
  const type = conf.type;

  bench.start();
  if (type === 'relative')
    relativePath(n);
  else if (type === 'resolved')
    resolvedPath(n);
  else
    throw new Error(`unknown "type": ${type}`);
  bench.end(n);
}

function relativePath(n) {
  for (var i = 0; i < n; i++) {
    fs.realpathSync(relative_path);
  }
}

function resolvedPath(n) {
  for (var i = 0; i < n; i++) {
    fs.realpathSync(resolved_path);
  }
}