mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
e167ab71fb
PR-URL: https://github.com/nodejs/node/pull/13757 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
57 lines
1.2 KiB
JavaScript
57 lines
1.2 KiB
JavaScript
'use strict';
|
|
const common = require('../common.js');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
const searchStrings = [
|
|
'@',
|
|
'SQ',
|
|
'10x',
|
|
'--l',
|
|
'Alice',
|
|
'Gryphon',
|
|
'Panther',
|
|
'Ou est ma chatte?',
|
|
'found it very',
|
|
'among mad people',
|
|
'neighbouring pool',
|
|
'Soo--oop',
|
|
'aaaaaaaaaaaaaaaaa',
|
|
'venture to go near the house till she had brought herself down to',
|
|
'</i> to the Caterpillar'
|
|
];
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
search: searchStrings,
|
|
encoding: ['undefined', 'utf8', 'ucs2', 'binary'],
|
|
type: ['buffer', 'string'],
|
|
iter: [1]
|
|
});
|
|
|
|
function main(conf) {
|
|
const iter = (conf.iter) * 100000;
|
|
var aliceBuffer = fs.readFileSync(
|
|
path.resolve(__dirname, '../fixtures/alice.html')
|
|
);
|
|
var search = conf.search;
|
|
var encoding = conf.encoding;
|
|
|
|
if (encoding === 'undefined') {
|
|
encoding = undefined;
|
|
}
|
|
|
|
if (encoding === 'ucs2') {
|
|
aliceBuffer = Buffer.from(aliceBuffer.toString(), encoding);
|
|
}
|
|
|
|
if (conf.type === 'buffer') {
|
|
search = Buffer.from(Buffer.from(search).toString(), encoding);
|
|
}
|
|
|
|
bench.start();
|
|
for (var i = 0; i < iter; i++) {
|
|
aliceBuffer.indexOf(search, 0, encoding);
|
|
}
|
|
bench.end(iter);
|
|
}
|