2024-01-01 14:58:21 -05:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2020-06-12 02:36:20 +10:00
|
|
|
import {
|
|
|
|
assert,
|
|
|
|
assertEquals,
|
2021-09-22 21:21:11 +08:00
|
|
|
assertRejects,
|
2020-06-25 06:57:08 +08:00
|
|
|
assertThrows,
|
2020-06-12 02:36:20 +10:00
|
|
|
pathToAbsoluteFileUrl,
|
2021-12-16 12:57:26 +01:00
|
|
|
unreachable,
|
2020-06-12 02:36:20 +10:00
|
|
|
} from "./test_util.ts";
|
2018-09-09 20:25:43 -04:00
|
|
|
|
2021-11-23 17:45:18 +01:00
|
|
|
Deno.test({ permissions: { read: true } }, function readFileSyncSuccess() {
|
2022-09-19 09:32:21 -05: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 17:45:18 +01:00
|
|
|
Deno.test({ permissions: { read: true } }, function readFileSyncUrl() {
|
2020-06-12 02:36:20 +10:00
|
|
|
const data = Deno.readFileSync(
|
2022-09-19 09:32:21 -05:00
|
|
|
pathToAbsoluteFileUrl("cli/tests/testdata/assets/fixture.json"),
|
2020-06-12 02:36:20 +10: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 17:45:18 +01:00
|
|
|
Deno.test({ permissions: { read: false } }, function readFileSyncPerm() {
|
2020-06-25 06:57:08 +08:00
|
|
|
assertThrows(() => {
|
2022-09-19 09:32:21 -05:00
|
|
|
Deno.readFileSync("cli/tests/testdata/assets/fixture.json");
|
2020-06-25 06:57:08 +08:00
|
|
|
}, Deno.errors.PermissionDenied);
|
2019-02-08 23:59:38 +03:00
|
|
|
});
|
|
|
|
|
2021-11-23 17:45:18 +01:00
|
|
|
Deno.test({ permissions: { read: true } }, function readFileSyncNotFound() {
|
2020-06-25 06:57:08 +08:00
|
|
|
assertThrows(() => {
|
|
|
|
Deno.readFileSync("bad_filename");
|
|
|
|
}, Deno.errors.NotFound);
|
2018-09-09 20:25:43 -04:00
|
|
|
});
|
|
|
|
|
2021-11-23 17:45:18 +01:00
|
|
|
Deno.test({ permissions: { read: true } }, async function readFileUrl() {
|
2020-06-12 02:36:20 +10:00
|
|
|
const data = await Deno.readFile(
|
2022-09-19 09:32:21 -05:00
|
|
|
pathToAbsoluteFileUrl("cli/tests/testdata/assets/fixture.json"),
|
2020-06-12 02:36:20 +10: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 17:45:18 +01:00
|
|
|
Deno.test({ permissions: { read: true } }, async function readFileSuccess() {
|
2022-09-19 09:32:21 -05: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 23:59:38 +03:00
|
|
|
|
2021-11-23 17:45:18 +01:00
|
|
|
Deno.test({ permissions: { read: false } }, async function readFilePerm() {
|
2021-09-22 21:21:11 +08:00
|
|
|
await assertRejects(async () => {
|
2022-09-19 09:32:21 -05:00
|
|
|
await Deno.readFile("cli/tests/testdata/assets/fixture.json");
|
2020-06-25 06:57:08 +08:00
|
|
|
}, Deno.errors.PermissionDenied);
|
2019-02-08 23:59:38 +03:00
|
|
|
});
|
2020-04-15 20:43:19 -04:00
|
|
|
|
2021-11-23 17:45:18 +01: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 09:32:21 -05:00
|
|
|
Deno.readFileSync("cli/tests/testdata/assets/fixture.json");
|
2020-04-15 20:43:19 -04:00
|
|
|
}
|
|
|
|
});
|
2021-04-08 20:06:52 +05:30
|
|
|
|
2021-11-23 17:45:18 +01:00
|
|
|
Deno.test(
|
2021-09-23 07:50:50 +08:00
|
|
|
{ permissions: { read: true } },
|
2021-08-05 13:08:58 +02:00
|
|
|
async function readFileDoesNotLeakResources() {
|
2021-04-08 20:06:52 +05:30
|
|
|
const resourcesBefore = Deno.resources();
|
2021-09-22 21:21:11 +08:00
|
|
|
await assertRejects(async () => await Deno.readFile("cli"));
|
2021-04-08 20:06:52 +05:30
|
|
|
assertEquals(resourcesBefore, Deno.resources());
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2021-11-23 17:45:18 +01:00
|
|
|
Deno.test(
|
2021-09-23 07:50:50 +08:00
|
|
|
{ permissions: { read: true } },
|
2021-08-05 13:08:58 +02:00
|
|
|
function readFileSyncDoesNotLeakResources() {
|
2021-04-08 20:06:52 +05:30
|
|
|
const resourcesBefore = Deno.resources();
|
|
|
|
assertThrows(() => Deno.readFileSync("cli"));
|
|
|
|
assertEquals(resourcesBefore, Deno.resources());
|
|
|
|
},
|
|
|
|
);
|
2021-06-22 18:45:26 +03:00
|
|
|
|
2021-11-23 17:45:18 +01:00
|
|
|
Deno.test(
|
2021-09-23 07:50:50 +08:00
|
|
|
{ permissions: { read: true } },
|
2021-08-05 13:08:58 +02:00
|
|
|
async function readFileWithAbortSignal() {
|
2021-06-22 18:45:26 +03:00
|
|
|
const ac = new AbortController();
|
|
|
|
queueMicrotask(() => ac.abort());
|
2022-10-17 18:57:31 -04:00
|
|
|
const error = await assertRejects(
|
2021-12-16 12:57:26 +01:00
|
|
|
async () => {
|
2022-09-19 09:32:21 -05:00
|
|
|
await Deno.readFile("cli/tests/testdata/assets/fixture.json", {
|
2021-12-16 12:57:26 +01:00
|
|
|
signal: ac.signal,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
);
|
2022-10-17 18:57:31 -04:00
|
|
|
assert(error instanceof DOMException);
|
|
|
|
assertEquals(error.name, "AbortError");
|
2021-12-16 12:57:26 +01:00
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
Deno.test(
|
|
|
|
{ permissions: { read: true } },
|
|
|
|
async function readFileWithAbortSignalReason() {
|
|
|
|
const ac = new AbortController();
|
|
|
|
const abortReason = new Error();
|
|
|
|
queueMicrotask(() => ac.abort(abortReason));
|
2022-10-17 18:57:31 -04:00
|
|
|
const error = await assertRejects(
|
2021-12-16 12:57:26 +01:00
|
|
|
async () => {
|
2022-09-19 09:32:21 -05:00
|
|
|
await Deno.readFile("cli/tests/testdata/assets/fixture.json", {
|
2021-12-16 12:57:26 +01:00
|
|
|
signal: ac.signal,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
);
|
2022-10-17 18:57:31 -04:00
|
|
|
assertEquals(error, abortReason);
|
2021-12-16 12:57:26 +01:00
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
Deno.test(
|
|
|
|
{ permissions: { read: true } },
|
|
|
|
async function readFileWithAbortSignalPrimitiveReason() {
|
|
|
|
const ac = new AbortController();
|
|
|
|
queueMicrotask(() => ac.abort("Some string"));
|
|
|
|
try {
|
2022-09-19 09:32:21 -05:00
|
|
|
await Deno.readFile("cli/tests/testdata/assets/fixture.json", {
|
2021-08-11 10:20:47 -04:00
|
|
|
signal: ac.signal,
|
|
|
|
});
|
2021-12-16 12:57:26 +01:00
|
|
|
unreachable();
|
|
|
|
} catch (e) {
|
|
|
|
assertEquals(e, "Some string");
|
|
|
|
}
|
2021-06-22 18:45:26 +03:00
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2023-02-11 13:19:13 +01:00
|
|
|
// Test that AbortController's cancel handle is cleaned-up correctly, and do not leak resources.
|
|
|
|
Deno.test(
|
|
|
|
{ permissions: { read: true } },
|
|
|
|
async function readFileWithAbortSignalNotCalled() {
|
|
|
|
const ac = new AbortController();
|
|
|
|
await Deno.readFile("cli/tests/testdata/assets/fixture.json", {
|
|
|
|
signal: ac.signal,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2021-11-23 17:45:18 +01:00
|
|
|
Deno.test(
|
2021-11-22 16:53:58 +01: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 18:45:26 +03:00
|
|
|
},
|
|
|
|
);
|
2023-03-19 01:01:50 +01:00
|
|
|
|
|
|
|
Deno.test(
|
|
|
|
{ permissions: { read: true } },
|
|
|
|
async function readFileNotFoundErrorCode() {
|
|
|
|
try {
|
|
|
|
await Deno.readFile("definitely-not-found.json");
|
|
|
|
} catch (e) {
|
|
|
|
assertEquals(e.code, "ENOENT");
|
|
|
|
}
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
Deno.test(
|
|
|
|
{ permissions: { read: true } },
|
|
|
|
async function readFileIsDirectoryErrorCode() {
|
|
|
|
try {
|
|
|
|
await Deno.readFile("cli/tests/testdata/assets/");
|
|
|
|
} catch (e) {
|
|
|
|
if (Deno.build.os === "windows") {
|
|
|
|
assertEquals(e.code, "ENOENT");
|
|
|
|
} else {
|
|
|
|
assertEquals(e.code, "EISDIR");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
);
|