2020-06-11 12:36:20 -04:00
|
|
|
import {
|
|
|
|
assert,
|
|
|
|
assertEquals,
|
2020-06-24 18:57:08 -04:00
|
|
|
assertThrows,
|
|
|
|
assertThrowsAsync,
|
2020-06-11 12:36:20 -04:00
|
|
|
pathToAbsoluteFileUrl,
|
2020-09-27 06:22:32 -04:00
|
|
|
unitTest,
|
2020-06-11 12:36:20 -04:00
|
|
|
} from "./test_util.ts";
|
2020-04-28 01:35:20 -04:00
|
|
|
|
2021-08-05 07:08:58 -04:00
|
|
|
unitTest({ perms: { read: true } }, function readTextFileSyncSuccess() {
|
2021-08-11 10:20:47 -04:00
|
|
|
const data = Deno.readTextFileSync("cli/tests/testdata/fixture.json");
|
2020-04-28 01:35:20 -04:00
|
|
|
assert(data.length > 0);
|
|
|
|
const pkg = JSON.parse(data);
|
|
|
|
assertEquals(pkg.name, "deno");
|
|
|
|
});
|
|
|
|
|
2021-08-05 07:08:58 -04:00
|
|
|
unitTest({ perms: { read: true } }, function readTextFileSyncByUrl() {
|
2020-06-11 12:36:20 -04:00
|
|
|
const data = Deno.readTextFileSync(
|
2021-08-11 10:20:47 -04:00
|
|
|
pathToAbsoluteFileUrl("cli/tests/testdata/fixture.json"),
|
2020-06-11 12:36:20 -04:00
|
|
|
);
|
|
|
|
assert(data.length > 0);
|
|
|
|
const pkg = JSON.parse(data);
|
|
|
|
assertEquals(pkg.name, "deno");
|
|
|
|
});
|
|
|
|
|
2021-08-05 07:08:58 -04:00
|
|
|
unitTest({ perms: { read: false } }, function readTextFileSyncPerm() {
|
2020-06-24 18:57:08 -04:00
|
|
|
assertThrows(() => {
|
2021-08-11 10:20:47 -04:00
|
|
|
Deno.readTextFileSync("cli/tests/testdata/fixture.json");
|
2020-06-24 18:57:08 -04:00
|
|
|
}, Deno.errors.PermissionDenied);
|
2020-04-28 01:35:20 -04:00
|
|
|
});
|
|
|
|
|
2021-08-05 07:08:58 -04:00
|
|
|
unitTest({ perms: { read: true } }, function readTextFileSyncNotFound() {
|
2020-06-24 18:57:08 -04:00
|
|
|
assertThrows(() => {
|
|
|
|
Deno.readTextFileSync("bad_filename");
|
|
|
|
}, Deno.errors.NotFound);
|
2020-04-28 01:35:20 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
unitTest(
|
|
|
|
{ perms: { read: true } },
|
2021-08-05 07:08:58 -04:00
|
|
|
async function readTextFileSuccess() {
|
2021-08-11 10:20:47 -04:00
|
|
|
const data = await Deno.readTextFile("cli/tests/testdata/fixture.json");
|
2020-04-28 01:35:20 -04:00
|
|
|
assert(data.length > 0);
|
|
|
|
const pkg = JSON.parse(data);
|
|
|
|
assertEquals(pkg.name, "deno");
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-04-28 01:35:20 -04:00
|
|
|
);
|
|
|
|
|
2021-08-05 07:08:58 -04:00
|
|
|
unitTest({ perms: { read: true } }, async function readTextFileByUrl() {
|
2020-06-11 12:36:20 -04:00
|
|
|
const data = await Deno.readTextFile(
|
2021-08-11 10:20:47 -04:00
|
|
|
pathToAbsoluteFileUrl("cli/tests/testdata/fixture.json"),
|
2020-06-11 12:36:20 -04:00
|
|
|
);
|
|
|
|
assert(data.length > 0);
|
|
|
|
const pkg = JSON.parse(data);
|
|
|
|
assertEquals(pkg.name, "deno");
|
|
|
|
});
|
|
|
|
|
2021-08-05 07:08:58 -04:00
|
|
|
unitTest({ perms: { read: false } }, async function readTextFilePerm() {
|
2020-06-24 18:57:08 -04:00
|
|
|
await assertThrowsAsync(async () => {
|
2021-08-11 10:20:47 -04:00
|
|
|
await Deno.readTextFile("cli/tests/testdata/fixture.json");
|
2020-06-24 18:57:08 -04:00
|
|
|
}, Deno.errors.PermissionDenied);
|
2020-04-28 01:35:20 -04:00
|
|
|
});
|
|
|
|
|
2021-08-05 07:08:58 -04:00
|
|
|
unitTest({ perms: { read: true } }, function readTextFileSyncLoop() {
|
2020-04-28 01:35:20 -04:00
|
|
|
for (let i = 0; i < 256; i++) {
|
2021-08-11 10:20:47 -04:00
|
|
|
Deno.readTextFileSync("cli/tests/testdata/fixture.json");
|
2020-04-28 01:35:20 -04:00
|
|
|
}
|
|
|
|
});
|
2021-04-08 10:36:52 -04:00
|
|
|
|
|
|
|
unitTest(
|
|
|
|
{ perms: { read: true } },
|
2021-08-05 07:08:58 -04:00
|
|
|
async function readTextFileDoesNotLeakResources() {
|
2021-04-08 10:36:52 -04:00
|
|
|
const resourcesBefore = Deno.resources();
|
|
|
|
await assertThrowsAsync(async () => await Deno.readTextFile("cli"));
|
|
|
|
assertEquals(resourcesBefore, Deno.resources());
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
unitTest(
|
|
|
|
{ perms: { read: true } },
|
2021-08-05 07:08:58 -04:00
|
|
|
function readTextFileSyncDoesNotLeakResources() {
|
2021-04-08 10:36:52 -04:00
|
|
|
const resourcesBefore = Deno.resources();
|
|
|
|
assertThrows(() => Deno.readTextFileSync("cli"));
|
|
|
|
assertEquals(resourcesBefore, Deno.resources());
|
|
|
|
},
|
|
|
|
);
|