2016-02-20 02:03:16 +01:00
|
|
|
'use strict';
|
2017-09-14 03:48:53 +02:00
|
|
|
const common = require('../common.js');
|
2017-12-30 03:57:01 +01:00
|
|
|
const { posix } = require('path');
|
2015-06-06 02:43:48 +02:00
|
|
|
|
2017-09-14 03:48:53 +02:00
|
|
|
const bench = common.createBenchmark(main, {
|
2016-02-06 04:23:29 +01:00
|
|
|
paths: [
|
|
|
|
'',
|
|
|
|
['', ''].join('|'),
|
|
|
|
['foo/bar', '/tmp/file/', '..', 'a/../subfile'].join('|'),
|
|
|
|
['a/b/c/', '../../..'].join('|')
|
|
|
|
],
|
|
|
|
n: [1e6]
|
2015-06-06 02:43:48 +02:00
|
|
|
});
|
|
|
|
|
2017-12-30 03:57:01 +01:00
|
|
|
function main({ n, paths }) {
|
|
|
|
const args = paths.split('|');
|
2015-06-06 02:43:48 +02:00
|
|
|
|
|
|
|
bench.start();
|
|
|
|
for (var i = 0; i < n; i++) {
|
2017-12-30 03:57:01 +01:00
|
|
|
posix.resolve.apply(null, args);
|
2015-06-06 02:43:48 +02:00
|
|
|
}
|
|
|
|
bench.end(n);
|
|
|
|
}
|