2022-01-20 02:10:16 -05:00
|
|
|
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2020-06-11 12:36:20 -04:00
|
|
|
import {
|
|
|
|
assert,
|
|
|
|
assertEquals,
|
2021-09-22 09:21:11 -04:00
|
|
|
assertRejects,
|
2020-06-24 18:57:08 -04:00
|
|
|
assertThrows,
|
2020-06-11 12:36:20 -04:00
|
|
|
pathToAbsoluteFileUrl,
|
2021-12-16 06:57:26 -05:00
|
|
|
unreachable,
|
2020-06-11 12:36:20 -04:00
|
|
|
} from "./test_util.ts";
|
2018-09-09 20:25:43 -04:00
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test({ permissions: { read: true } }, function readFileSyncSuccess() {
|
2022-09-19 10:32:21 -04:00
|
|
|
const data = Deno.readFileSync("cli/tests/testdata/assets/fixture.json");
|
2018-09-09 20:25:43 -04:00
|
|
|
assert(data.byteLength > 0);
|
|
|
|
const decoder = new TextDecoder("utf-8");
|
|
|
|
const json = decoder.decode(data);
|
|
|
|
const pkg = JSON.parse(json);
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(pkg.name, "deno");
|
2018-09-09 20:25:43 -04:00
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test({ permissions: { read: true } }, function readFileSyncUrl() {
|
2020-06-11 12:36:20 -04:00
|
|
|
const data = Deno.readFileSync(
|
2022-09-19 10:32:21 -04:00
|
|
|
pathToAbsoluteFileUrl("cli/tests/testdata/assets/fixture.json"),
|
2020-06-11 12:36:20 -04:00
|
|
|
);
|
|
|
|
assert(data.byteLength > 0);
|
|
|
|
const decoder = new TextDecoder("utf-8");
|
|
|
|
const json = decoder.decode(data);
|
|
|
|
const pkg = JSON.parse(json);
|
|
|
|
assertEquals(pkg.name, "deno");
|
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test({ permissions: { read: false } }, function readFileSyncPerm() {
|
2020-06-24 18:57:08 -04:00
|
|
|
assertThrows(() => {
|
2022-09-19 10:32:21 -04:00
|
|
|
Deno.readFileSync("cli/tests/testdata/assets/fixture.json");
|
2020-06-24 18:57:08 -04:00
|
|
|
}, Deno.errors.PermissionDenied);
|
2019-02-08 15:59:38 -05:00
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test({ permissions: { read: true } }, function readFileSyncNotFound() {
|
2020-06-24 18:57:08 -04:00
|
|
|
assertThrows(() => {
|
|
|
|
Deno.readFileSync("bad_filename");
|
|
|
|
}, Deno.errors.NotFound);
|
2018-09-09 20:25:43 -04:00
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test({ permissions: { read: true } }, async function readFileUrl() {
|
2020-06-11 12:36:20 -04:00
|
|
|
const data = await Deno.readFile(
|
2022-09-19 10:32:21 -04:00
|
|
|
pathToAbsoluteFileUrl("cli/tests/testdata/assets/fixture.json"),
|
2020-06-11 12:36:20 -04:00
|
|
|
);
|
|
|
|
assert(data.byteLength > 0);
|
|
|
|
const decoder = new TextDecoder("utf-8");
|
|
|
|
const json = decoder.decode(data);
|
|
|
|
const pkg = JSON.parse(json);
|
|
|
|
assertEquals(pkg.name, "deno");
|
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test({ permissions: { read: true } }, async function readFileSuccess() {
|
2022-09-19 10:32:21 -04:00
|
|
|
const data = await Deno.readFile("cli/tests/testdata/assets/fixture.json");
|
2018-09-09 20:25:43 -04:00
|
|
|
assert(data.byteLength > 0);
|
|
|
|
const decoder = new TextDecoder("utf-8");
|
|
|
|
const json = decoder.decode(data);
|
|
|
|
const pkg = JSON.parse(json);
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(pkg.name, "deno");
|
2018-09-09 20:25:43 -04:00
|
|
|
});
|
2019-02-08 15:59:38 -05:00
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test({ permissions: { read: false } }, async function readFilePerm() {
|
2021-09-22 09:21:11 -04:00
|
|
|
await assertRejects(async () => {
|
2022-09-19 10:32:21 -04:00
|
|
|
await Deno.readFile("cli/tests/testdata/assets/fixture.json");
|
2020-06-24 18:57:08 -04:00
|
|
|
}, Deno.errors.PermissionDenied);
|
2019-02-08 15:59:38 -05:00
|
|
|
});
|
2020-04-15 20:43:19 -04:00
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test({ permissions: { read: true } }, function readFileSyncLoop() {
|
2020-04-15 20:43:19 -04:00
|
|
|
for (let i = 0; i < 256; i++) {
|
2022-09-19 10:32:21 -04:00
|
|
|
Deno.readFileSync("cli/tests/testdata/assets/fixture.json");
|
2020-04-15 20:43:19 -04:00
|
|
|
}
|
|
|
|
});
|
2021-04-08 10:36:52 -04:00
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2021-09-22 19:50:50 -04:00
|
|
|
{ permissions: { read: true } },
|
2021-08-05 07:08:58 -04:00
|
|
|
async function readFileDoesNotLeakResources() {
|
2021-04-08 10:36:52 -04:00
|
|
|
const resourcesBefore = Deno.resources();
|
2021-09-22 09:21:11 -04:00
|
|
|
await assertRejects(async () => await Deno.readFile("cli"));
|
2021-04-08 10:36:52 -04:00
|
|
|
assertEquals(resourcesBefore, Deno.resources());
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2021-09-22 19:50:50 -04:00
|
|
|
{ permissions: { read: true } },
|
2021-08-05 07:08:58 -04:00
|
|
|
function readFileSyncDoesNotLeakResources() {
|
2021-04-08 10:36:52 -04:00
|
|
|
const resourcesBefore = Deno.resources();
|
|
|
|
assertThrows(() => Deno.readFileSync("cli"));
|
|
|
|
assertEquals(resourcesBefore, Deno.resources());
|
|
|
|
},
|
|
|
|
);
|
2021-06-22 11:45:26 -04:00
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2021-09-22 19:50:50 -04:00
|
|
|
{ permissions: { read: true } },
|
2021-08-05 07:08:58 -04:00
|
|
|
async function readFileWithAbortSignal() {
|
2021-06-22 11:45:26 -04:00
|
|
|
const ac = new AbortController();
|
|
|
|
queueMicrotask(() => ac.abort());
|
2021-12-16 06:57:26 -05:00
|
|
|
await assertRejects(
|
|
|
|
async () => {
|
2022-09-19 10:32:21 -04:00
|
|
|
await Deno.readFile("cli/tests/testdata/assets/fixture.json", {
|
2021-12-16 06:57:26 -05:00
|
|
|
signal: ac.signal,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
(error: Error) => {
|
|
|
|
assert(error instanceof DOMException);
|
|
|
|
assertEquals(error.name, "AbortError");
|
|
|
|
},
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
Deno.test(
|
|
|
|
{ permissions: { read: true } },
|
|
|
|
async function readFileWithAbortSignalReason() {
|
|
|
|
const ac = new AbortController();
|
|
|
|
const abortReason = new Error();
|
|
|
|
queueMicrotask(() => ac.abort(abortReason));
|
|
|
|
await assertRejects(
|
|
|
|
async () => {
|
2022-09-19 10:32:21 -04:00
|
|
|
await Deno.readFile("cli/tests/testdata/assets/fixture.json", {
|
2021-12-16 06:57:26 -05:00
|
|
|
signal: ac.signal,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
(error: Error) => {
|
|
|
|
assertEquals(error, abortReason);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
Deno.test(
|
|
|
|
{ permissions: { read: true } },
|
|
|
|
async function readFileWithAbortSignalPrimitiveReason() {
|
|
|
|
const ac = new AbortController();
|
|
|
|
queueMicrotask(() => ac.abort("Some string"));
|
|
|
|
try {
|
2022-09-19 10:32:21 -04:00
|
|
|
await Deno.readFile("cli/tests/testdata/assets/fixture.json", {
|
2021-08-11 10:20:47 -04:00
|
|
|
signal: ac.signal,
|
|
|
|
});
|
2021-12-16 06:57:26 -05:00
|
|
|
unreachable();
|
|
|
|
} catch (e) {
|
|
|
|
assertEquals(e, "Some string");
|
|
|
|
}
|
2021-06-22 11:45:26 -04:00
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2021-11-22 10:53:58 -05:00
|
|
|
{ permissions: { read: true }, ignore: Deno.build.os !== "linux" },
|
|
|
|
async function readFileProcFs() {
|
|
|
|
const data = await Deno.readFile("/proc/self/stat");
|
|
|
|
assert(data.byteLength > 0);
|
2021-06-22 11:45:26 -04:00
|
|
|
},
|
|
|
|
);
|