2024-01-01 14:58:21 -05:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2024-07-25 01:30:28 -04:00
|
|
|
import { assertEquals, fail } from "@std/assert";
|
2023-03-19 12:10:39 -04:00
|
|
|
import { fdatasync, fdatasyncSync } from "node:fs";
|
|
|
|
|
|
|
|
Deno.test({
|
|
|
|
name:
|
|
|
|
"ASYNC: flush any pending data operations of the given file stream to disk",
|
2024-08-28 20:09:06 -04:00
|
|
|
// TODO(bartlomieju): this test is broken in Deno 2, because `file.rid` is undefined.
|
|
|
|
// The fs APIs should be rewritten to use actual FDs, not RIDs
|
|
|
|
ignore: true,
|
2023-03-19 12:10:39 -04:00
|
|
|
async fn() {
|
2024-01-24 09:59:55 -05:00
|
|
|
const filePath = await Deno.makeTempFile();
|
|
|
|
using file = await Deno.open(filePath, {
|
2023-03-19 12:10:39 -04:00
|
|
|
read: true,
|
|
|
|
write: true,
|
|
|
|
create: true,
|
|
|
|
});
|
|
|
|
const data = new Uint8Array(64);
|
2024-01-24 10:36:13 -05:00
|
|
|
await file.write(data);
|
2023-03-19 12:10:39 -04:00
|
|
|
|
|
|
|
await new Promise<void>((resolve, reject) => {
|
2024-09-10 17:19:34 -04:00
|
|
|
// @ts-ignore (iuioiua) `file.rid` should no longer be needed once FDs are used
|
2024-01-24 09:59:55 -05:00
|
|
|
fdatasync(file.rid, (err: Error | null) => {
|
2023-03-19 12:10:39 -04:00
|
|
|
if (err !== null) reject();
|
|
|
|
else resolve();
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.then(
|
|
|
|
async () => {
|
2024-01-24 09:59:55 -05:00
|
|
|
assertEquals(await Deno.readFile(filePath), data);
|
2023-03-19 12:10:39 -04:00
|
|
|
},
|
|
|
|
() => {
|
|
|
|
fail("No error expected");
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.finally(async () => {
|
2024-01-24 09:59:55 -05:00
|
|
|
await Deno.remove(filePath);
|
2023-03-19 12:10:39 -04:00
|
|
|
});
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
Deno.test({
|
|
|
|
name:
|
|
|
|
"SYNC: flush any pending data operations of the given file stream to disk.",
|
2024-08-28 20:09:06 -04:00
|
|
|
// TODO(bartlomieju): this test is broken in Deno 2, because `file.rid` is undefined.
|
|
|
|
// The fs APIs should be rewritten to use actual FDs, not RIDs
|
|
|
|
ignore: true,
|
2023-03-19 12:10:39 -04:00
|
|
|
fn() {
|
2024-01-24 09:59:55 -05:00
|
|
|
const filePath = Deno.makeTempFileSync();
|
|
|
|
using file = Deno.openSync(filePath, {
|
2023-03-19 12:10:39 -04:00
|
|
|
read: true,
|
|
|
|
write: true,
|
|
|
|
create: true,
|
|
|
|
});
|
|
|
|
const data = new Uint8Array(64);
|
2024-03-20 13:39:25 -04:00
|
|
|
file.writeSync(data);
|
2023-03-19 12:10:39 -04:00
|
|
|
|
|
|
|
try {
|
2024-09-10 17:19:34 -04:00
|
|
|
// @ts-ignore (iuioiua) `file.rid` should no longer be needed once FDs are used
|
2024-01-24 09:59:55 -05:00
|
|
|
fdatasyncSync(file.rid);
|
|
|
|
assertEquals(Deno.readFileSync(filePath), data);
|
2023-03-19 12:10:39 -04:00
|
|
|
} finally {
|
2024-01-24 09:59:55 -05:00
|
|
|
Deno.removeSync(filePath);
|
2023-03-19 12:10:39 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|