mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
d610fad390
In three fs benchmarks, a temp file is created in the source tree. For tests, allow the location to be configurable so it gets written to the test temp directory instead. Additionally, shave about a second off the test running time by setting `dur` to `0.1` instead of `1`. PR-URL: https://github.com/nodejs/node/pull/17811 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jon Moss <me@jonathanmoss.me> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
54 lines
1.2 KiB
JavaScript
54 lines
1.2 KiB
JavaScript
// Call fs.readFile over and over again really fast.
|
|
// Then see how many times it got called.
|
|
// Yes, this is a silly benchmark. Most benchmarks are silly.
|
|
'use strict';
|
|
|
|
const path = require('path');
|
|
const common = require('../common.js');
|
|
const filename = path.resolve(process.env.NODE_TMPDIR || __dirname,
|
|
`.removeme-benchmark-garbage-${process.pid}`);
|
|
const fs = require('fs');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
dur: [5],
|
|
len: [1024, 16 * 1024 * 1024],
|
|
concurrent: [1, 10]
|
|
});
|
|
|
|
function main(conf) {
|
|
const len = +conf.len;
|
|
try { fs.unlinkSync(filename); } catch (e) {}
|
|
var data = Buffer.alloc(len, 'x');
|
|
fs.writeFileSync(filename, data);
|
|
data = null;
|
|
|
|
var reads = 0;
|
|
var bench_ended = false;
|
|
bench.start();
|
|
setTimeout(function() {
|
|
bench_ended = true;
|
|
bench.end(reads);
|
|
try { fs.unlinkSync(filename); } catch (e) {}
|
|
process.exit(0);
|
|
}, +conf.dur * 1000);
|
|
|
|
function read() {
|
|
fs.readFile(filename, afterRead);
|
|
}
|
|
|
|
function afterRead(er, data) {
|
|
if (er)
|
|
throw er;
|
|
|
|
if (data.length !== len)
|
|
throw new Error('wrong number of bytes returned');
|
|
|
|
reads++;
|
|
if (!bench_ended)
|
|
read();
|
|
}
|
|
|
|
var cur = +conf.concurrent;
|
|
while (cur--) read();
|
|
}
|