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