2022-01-20 02:10:16 -05:00
|
|
|
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2021-11-23 11:45:18 -05:00
|
|
|
import { assertEquals } from "./test_util.ts";
|
2020-06-21 09:29:44 -04:00
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2021-09-22 19:50:50 -04:00
|
|
|
{ permissions: { read: true, write: true } },
|
2021-08-05 07:08:58 -04:00
|
|
|
function fdatasyncSyncSuccess() {
|
2020-06-26 08:36:35 -04:00
|
|
|
const filename = Deno.makeTempDirSync() + "/test_fdatasyncSync.txt";
|
|
|
|
const file = Deno.openSync(filename, {
|
|
|
|
read: true,
|
|
|
|
write: true,
|
|
|
|
create: true,
|
|
|
|
});
|
|
|
|
const data = new Uint8Array(64);
|
|
|
|
Deno.writeSync(file.rid, data);
|
|
|
|
Deno.fdatasyncSync(file.rid);
|
|
|
|
assertEquals(Deno.readFileSync(filename), data);
|
|
|
|
Deno.close(file.rid);
|
|
|
|
Deno.removeSync(filename);
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-06-26 08:36:35 -04:00
|
|
|
);
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2021-09-22 19:50:50 -04:00
|
|
|
{ permissions: { read: true, write: true } },
|
2021-08-05 07:08:58 -04:00
|
|
|
async function fdatasyncSuccess() {
|
2020-06-26 08:36:35 -04:00
|
|
|
const filename = (await Deno.makeTempDir()) + "/test_fdatasync.txt";
|
|
|
|
const file = await Deno.open(filename, {
|
|
|
|
read: true,
|
|
|
|
write: true,
|
|
|
|
create: true,
|
|
|
|
});
|
|
|
|
const data = new Uint8Array(64);
|
|
|
|
await Deno.write(file.rid, data);
|
|
|
|
await Deno.fdatasync(file.rid);
|
|
|
|
assertEquals(await Deno.readFile(filename), data);
|
|
|
|
Deno.close(file.rid);
|
|
|
|
await Deno.remove(filename);
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-06-26 08:36:35 -04:00
|
|
|
);
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2021-09-22 19:50:50 -04:00
|
|
|
{ permissions: { read: true, write: true } },
|
2021-08-05 07:08:58 -04:00
|
|
|
function fsyncSyncSuccess() {
|
2020-06-21 09:29:44 -04:00
|
|
|
const filename = Deno.makeTempDirSync() + "/test_fsyncSync.txt";
|
|
|
|
const file = Deno.openSync(filename, {
|
|
|
|
read: true,
|
|
|
|
write: true,
|
|
|
|
create: true,
|
|
|
|
});
|
|
|
|
const size = 64;
|
|
|
|
Deno.ftruncateSync(file.rid, size);
|
|
|
|
Deno.fsyncSync(file.rid);
|
|
|
|
assertEquals(Deno.statSync(filename).size, size);
|
|
|
|
Deno.close(file.rid);
|
|
|
|
Deno.removeSync(filename);
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-06-21 09:29:44 -04:00
|
|
|
);
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2021-09-22 19:50:50 -04:00
|
|
|
{ permissions: { read: true, write: true } },
|
2021-08-05 07:08:58 -04:00
|
|
|
async function fsyncSuccess() {
|
2020-06-21 09:29:44 -04:00
|
|
|
const filename = (await Deno.makeTempDir()) + "/test_fsync.txt";
|
|
|
|
const file = await Deno.open(filename, {
|
|
|
|
read: true,
|
|
|
|
write: true,
|
|
|
|
create: true,
|
|
|
|
});
|
|
|
|
const size = 64;
|
|
|
|
await Deno.ftruncate(file.rid, size);
|
|
|
|
await Deno.fsync(file.rid);
|
|
|
|
assertEquals((await Deno.stat(filename)).size, size);
|
|
|
|
Deno.close(file.rid);
|
|
|
|
await Deno.remove(filename);
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-06-21 09:29:44 -04:00
|
|
|
);
|