1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-02 09:34:19 -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
}
unitTest({ perms: { read: true } }, function readDirSyncSuccess(): void {
const files = [...Deno.readDirSync("cli/tests/")];
2018-10-03 17:56:56 -04:00
assertSameContent(files);
});
unitTest({ perms: { read: false } }, function readDirSyncPerm(): void {
let caughtError = false;
try {
Deno.readDirSync("tests/");
} catch (e) {
caughtError = true;
2020-02-24 15:48:35 -05:00
assert(e instanceof Deno.errors.PermissionDenied);
}
assert(caughtError);
});
unitTest({ perms: { read: true } }, function readDirSyncNotDir(): void {
2018-10-03 17:56:56 -04:00
let caughtError = false;
let src;
try {
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
});
unitTest({ perms: { read: true } }, function readDirSyncNotFound(): void {
2018-10-03 17:56:56 -04:00
let caughtError = false;
let src;
try {
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
});
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);
});
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);
});