-
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 some path benchmarks for #1778
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
1 parent
bca53dc
commit 0d15161
Showing
6 changed files
with
138 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,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); | ||
} |
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,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]); | ||
} | ||
} |
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,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); | ||
} |
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,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); | ||
} |
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,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'); | ||
} |
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,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); | ||
} |