Update sequential write test parameters, enhance logging for write and read results, improve read test duration calculation, and change default target directory in store.

This commit is contained in:
Huakun Shen 2025-03-23 08:24:42 -04:00
parent 6614a47a98
commit bdeaf25007
No known key found for this signature in database
6 changed files with 33 additions and 20 deletions

View File

@ -5,5 +5,5 @@
![](https://i.imgur.com/8ISVrRe.png)
This extension's read speed is not accurate. Your OS may cache the test data and result in a much higher speed.
This extension's read speed is not accurate. Your OS may cache the test data and result in a much higher or lower speed.
Will be fixed in the future.

20
dev.ts
View File

@ -6,22 +6,28 @@ const testPath = "./test.txt";
const writeResult = await sequentialWriteTest(
{
filePath: testPath,
sizeInMB: 200,
rounds: 10,
sizeInMB: 1000,
rounds: 5,
bufferSizeMB: 1,
keepTheFile: true,
},
(progress) => {
console.log(progress);
console.log("Write progress:", progress);
}
);
console.log(writeResult);
console.log(writeResult.totalMB / writeResult.totalDuration);
console.log("Write result:", writeResult);
console.log(
"Write speed (MB/s):",
writeResult.totalMB / writeResult.totalDuration
);
const readResult = await sequentialReadTest({
filePath: testPath,
rounds: 3,
deleteAfter: false,
});
console.log(readResult);
console.log("read speed: ", readResult.totalMB / readResult.totalDuration);
console.log("Read result:", readResult);
console.log(
"Read speed (MB/s):",
readResult.totalMB / readResult.totalDuration
);

View File

@ -3,7 +3,7 @@
"name": "kunkun-ext-disk-speed",
"license": "MIT",
"repository": "https://github.com/kunkunsh/kunkun-ext-disk-speed",
"version": "0.0.8",
"version": "0.0.9",
"type": "module",
"kunkun": {
"name": "Disk Speed",

View File

@ -64,18 +64,25 @@ export async function sequentialReadTest(
}
): Promise<Progress> {
const { filePath, rounds, deleteAfter } = options;
const file = await Deno.open(filePath, { read: true });
const reader = file.readable.getReader();
const start = performance.now();
let totalMB = 0;
let totalDuration = 0;
let readResult;
while (!(readResult = await reader.read()).done) {
totalMB += readResult.value.length / oneMB;
for (let round = 0; round < rounds; round++) {
const file = await Deno.open(filePath, { read: true });
const reader = file.readable.getReader();
const start = performance.now();
let readResult;
while (!(readResult = await reader.read()).done) {
totalMB += readResult.value.length / oneMB;
}
const roundDuration = (performance.now() - start) / 1000;
totalDuration += roundDuration;
await reader.releaseLock();
}
const totalDuration = (performance.now() - start) / 1000;
// file.close();
if (options.deleteAfter) {
if (deleteAfter) {
Deno.removeSync(filePath);
}
return { totalMB, totalDuration };

View File

@ -128,7 +128,7 @@
</Button>
<small class="text-gray-500">
This extension's read speed may be inaccurate. Your OS may cache the test
data and result in a much higher speed. Will be fixed in the future.
data and result in a higher or lower speed. Will be fixed in the future.
</small>
<div class="grid h-96 w-full grid-cols-2">
<SpeedGauge

View File

@ -1,4 +1,4 @@
import { writable } from "svelte/store";
export const stress = writable(1);
export const targetDir = writable<string | undefined>("/Users/kunkun/Desktop");
export const targetDir = writable<string | undefined>("/Volumes/Portable2TB");