0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/cli/js/tests/read_dir_test.ts

87 lines
2 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";
type FileInfo = Deno.FileInfo;
2018-10-03 17:56:56 -04:00
function assertSameContent(files: FileInfo[]): void {
2018-10-03 17:56:56 -04:00
let counter = 0;
for (const file of files) {
if (file.name === "subdir") {
2018-10-03 17:56:56 -04:00
assert(file.isDirectory());
counter++;
}
if (file.name === "002_hello.ts") {
2020-02-02 16:55:22 -05:00
assertEquals(file.mode!, Deno.statSync(`cli/tests/${file.name}`).mode!);
2018-10-03 17:56:56 -04:00
counter++;
}
}
assertEquals(counter, 2);
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
> {
2020-03-06 08:34:02 -05:00
const files = await Deno.readdir("cli/tests/");
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 {
2020-03-06 08:34:02 -05:00
await Deno.readdir("tests/");
} catch (e) {
caughtError = true;
2020-02-24 15:48:35 -05:00
assert(e instanceof Deno.errors.PermissionDenied);
}
assert(caughtError);
});