1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/cli/js/tests/read_dir_test.ts

83 lines
1.9 KiB
TypeScript
Raw Normal View History

2020-01-02 15:13:47 -05:00
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { unitTest, assert, assertEquals } from "./test_util.ts";
function assertSameContent(files: Deno.DirEntry[]): void {
2018-10-03 17:56:56 -04:00
let counter = 0;
for (const entry of files) {
if (entry.name === "subdir") {
assert(entry.isDirectory);
2018-10-03 17:56:56 -04:00
counter++;
}
}
assertEquals(counter, 1);
2018-10-03 17:56:56 -04:00
}
2020-03-06 08:34:02 -05:00
unitTest({ perms: { read: true } }, function readdirSyncSuccess(): void {
const files = [...Deno.readdirSync("cli/tests/")];
2018-10-03 17:56:56 -04:00
assertSameContent(files);
});
2020-03-06 08:34:02 -05:00
unitTest({ perms: { read: false } }, function readdirSyncPerm(): void {
let caughtError = false;
try {
2020-03-06 08:34:02 -05:00
Deno.readdirSync("tests/");
} catch (e) {
caughtError = true;
2020-02-24 15:48:35 -05:00
assert(e instanceof Deno.errors.PermissionDenied);
}
assert(caughtError);
});
2020-03-06 08:34:02 -05:00
unitTest({ perms: { read: true } }, function readdirSyncNotDir(): void {
2018-10-03 17:56:56 -04:00
let caughtError = false;
let src;
try {
2020-03-06 08:34:02 -05:00
src = Deno.readdirSync("cli/tests/fixture.json");
2018-10-03 17:56:56 -04:00
} catch (err) {
caughtError = true;
assert(err instanceof Error);
2018-10-03 17:56:56 -04:00
}
assert(caughtError);
assertEquals(src, undefined);
2018-10-03 17:56:56 -04:00
});
2020-03-06 08:34:02 -05:00
unitTest({ perms: { read: true } }, function readdirSyncNotFound(): void {
2018-10-03 17:56:56 -04:00
let caughtError = false;
let src;
try {
2020-03-06 08:34:02 -05:00
src = Deno.readdirSync("bad_dir_name");
2018-10-03 17:56:56 -04:00
} catch (err) {
caughtError = true;
2020-02-24 15:48:35 -05:00
assert(err instanceof Deno.errors.NotFound);
2018-10-03 17:56:56 -04:00
}
assert(caughtError);
assertEquals(src, undefined);
2018-10-03 17:56:56 -04:00
});
2020-03-06 08:34:02 -05:00
unitTest({ perms: { read: true } }, async function readdirSuccess(): Promise<
void
> {
const files = [];
for await (const dirEntry of Deno.readdir("cli/tests/")) {
files.push(dirEntry);
}
2018-10-03 17:56:56 -04:00
assertSameContent(files);
});
2020-03-06 08:34:02 -05:00
unitTest({ perms: { read: false } }, async function readdirPerm(): Promise<
void
> {
let caughtError = false;
try {
await Deno.readdir("tests/")[Symbol.asyncIterator]().next();
} catch (e) {
caughtError = true;
2020-02-24 15:48:35 -05:00
assert(e instanceof Deno.errors.PermissionDenied);
}
assert(caughtError);
});