Skip to content

Commit

Permalink
benchmark: Add some path benchmarks for #1778
Browse files Browse the repository at this point in the history
Path functions being benchmarked are:
* format
* isAbsolute
* join
* normalize
* relative
* resolve

PR-URL: #1778
Reviewed-By: Сковорода Никита Андреевич <[email protected]>
Reviewed-By: Roman Reiss <[email protected]>
  • Loading branch information
nwoltman authored and silverwind committed Jul 4, 2015
1 parent bca53dc commit 0d15161
Show file tree
Hide file tree
Showing 6 changed files with 138 additions and 0 deletions.
31 changes: 31 additions & 0 deletions benchmark/path/format.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
var common = require('../common.js');
var path = require('path');

var bench = common.createBenchmark(main, {
type: ['win32', 'posix'],
n: [1e7],
});

function main(conf) {
var n = +conf.n;
var p = path[conf.type];
var test = conf.type === 'win32' ? {
root: 'C:\\',
dir: 'C:\\path\\dir',
base: 'index.html',
ext: '.html',
name: 'index'
} : {
root : '/',
dir : '/home/user/dir',
base : 'index.html',
ext : '.html',
name : 'index'
};

bench.start();
for (var i = 0; i < n; i++) {
p.format(test);
}
bench.end(n);
}
27 changes: 27 additions & 0 deletions benchmark/path/isAbsolute.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
var common = require('../common.js');
var path = require('path');

var bench = common.createBenchmark(main, {
type: ['win32', 'posix'],
n: [1e6],
});

function main(conf) {
var n = +conf.n;
var p = path[conf.type];
var tests = conf.type === 'win32'
? ['//server', 'C:\\baz\\..', 'bar\\baz', '.']
: ['/foo/bar', '/baz/..', 'bar/baz', '.'];

bench.start();
for (var i = 0; i < n; i++) {
runTests(p, tests);
}
bench.end(n);
}

function runTests(p, tests) {
for (var i = 0; i < tests.length; i++) {
p.isAbsolute(tests[i]);
}
}
18 changes: 18 additions & 0 deletions benchmark/path/join.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
var common = require('../common.js');
var path = require('path');

var bench = common.createBenchmark(main, {
type: ['win32', 'posix'],
n: [1e6],
});

function main(conf) {
var n = +conf.n;
var p = path[conf.type];

bench.start();
for (var i = 0; i < n; i++) {
p.join('/foo', 'bar', '', 'baz/asdf', 'quux', '..');
}
bench.end(n);
}
18 changes: 18 additions & 0 deletions benchmark/path/normalize.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
var common = require('../common.js');
var path = require('path');

var bench = common.createBenchmark(main, {
type: ['win32', 'posix'],
n: [1e6],
});

function main(conf) {
var n = +conf.n;
var p = path[conf.type];

bench.start();
for (var i = 0; i < n; i++) {
p.normalize('/foo/bar//baz/asdf/quux/..');
}
bench.end(n);
}
26 changes: 26 additions & 0 deletions benchmark/path/relative.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
var common = require('../common.js');
var path = require('path');

var bench = common.createBenchmark(main, {
type: ['win32', 'posix'],
n: [1e5],
});

function main(conf) {
var n = +conf.n;
var runTest = conf.type === 'win32' ? runWin32Test : runPosixTest;

bench.start();
for (var i = 0; i < n; i++) {
runTest();
}
bench.end(n);
}

function runWin32Test() {
path.win32.relative('C:\\orandea\\test\\aaa', 'C:\\orandea\\impl\\bbb');
}

function runPosixTest() {
path.posix.relative('/data/orandea/test/aaa', '/data/orandea/impl/bbb');
}
18 changes: 18 additions & 0 deletions benchmark/path/resolve.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
var common = require('../common.js');
var path = require('path');

var bench = common.createBenchmark(main, {
type: ['win32', 'posix'],
n: [1e6],
});

function main(conf) {
var n = +conf.n;
var p = path[conf.type];

bench.start();
for (var i = 0; i < n; i++) {
p.resolve('foo/bar', '/tmp/file/', '..', 'a/../subfile');
}
bench.end(n);
}

0 comments on commit 0d15161

Please sign in to comment.