2016-02-19 17:03:16 -08:00
|
|
|
'use strict';
|
2017-09-13 22:48:53 -03:00
|
|
|
const common = require('../common.js');
|
2018-01-23 13:14:21 +01:00
|
|
|
const { win32 } = require('path');
|
2016-02-05 22:23:29 -05:00
|
|
|
|
2017-09-13 22:48:53 -03:00
|
|
|
const bench = common.createBenchmark(main, {
|
2016-02-05 22:23:29 -05:00
|
|
|
pathext: [
|
|
|
|
'',
|
|
|
|
'C:\\',
|
|
|
|
'C:\\foo',
|
|
|
|
'D:\\foo\\.bar.baz',
|
2016-02-24 22:30:10 -08:00
|
|
|
['E:\\foo\\.bar.baz', '.baz'].join('|'),
|
2016-02-05 22:23:29 -05:00
|
|
|
'foo',
|
|
|
|
'foo\\bar.',
|
|
|
|
['foo\\bar.', '.'].join('|'),
|
|
|
|
'\\foo\\bar\\baz\\asdf\\quux.html',
|
2019-02-04 22:06:08 -08:00
|
|
|
['\\foo\\bar\\baz\\asdf\\quux.html', '.html'].join('|'),
|
2016-02-05 22:23:29 -05:00
|
|
|
],
|
2023-02-14 18:09:42 +01:00
|
|
|
n: [1e5],
|
2016-02-05 22:23:29 -05:00
|
|
|
});
|
|
|
|
|
2017-12-30 03:57:01 +01:00
|
|
|
function main({ n, pathext }) {
|
2020-01-31 16:50:00 +01:00
|
|
|
let ext;
|
2017-12-30 03:57:01 +01:00
|
|
|
const extIdx = pathext.indexOf('|');
|
2016-02-05 22:23:29 -05:00
|
|
|
if (extIdx !== -1) {
|
2017-12-30 03:57:01 +01:00
|
|
|
ext = pathext.slice(extIdx + 1);
|
|
|
|
pathext = pathext.slice(0, extIdx);
|
2016-02-05 22:23:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
bench.start();
|
2019-07-31 08:26:38 -05:00
|
|
|
for (let i = 0; i < n; i++) {
|
2018-12-30 00:26:36 +01:00
|
|
|
win32.basename(i % 3 === 0 ? `${pathext}${i}` : pathext, ext);
|
2016-02-05 22:23:29 -05:00
|
|
|
}
|
|
|
|
bench.end(n);
|
|
|
|
}
|