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) ![](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. Will be fixed in the future.

20
dev.ts
View File

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

View File

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

View File

@ -64,18 +64,25 @@ export async function sequentialReadTest(
} }
): Promise<Progress> { ): Promise<Progress> {
const { filePath, rounds, deleteAfter } = options; 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 totalMB = 0;
let totalDuration = 0;
let readResult; for (let round = 0; round < rounds; round++) {
while (!(readResult = await reader.read()).done) { const file = await Deno.open(filePath, { read: true });
totalMB += readResult.value.length / oneMB; 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 (deleteAfter) {
if (options.deleteAfter) {
Deno.removeSync(filePath); Deno.removeSync(filePath);
} }
return { totalMB, totalDuration }; return { totalMB, totalDuration };

View File

@ -128,7 +128,7 @@
</Button> </Button>
<small class="text-gray-500"> <small class="text-gray-500">
This extension's read speed may be inaccurate. Your OS may cache the test 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> </small>
<div class="grid h-96 w-full grid-cols-2"> <div class="grid h-96 w-full grid-cols-2">
<SpeedGauge <SpeedGauge

View File

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