0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-10 06:07:03 -04:00
deno/cli/js/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-04 06:56:56 +09:00
function assertSameContent(files: FileInfo[]): void {
2018-10-04 06:56:56 +09:00
let counter = 0;
for (const file of files) {
if (file.name === "subdir") {
2018-10-04 06:56:56 +09:00
assert(file.isDirectory());
counter++;
}
if (file.name === "002_hello.ts") {
2020-02-02 22:55:22 +01:00
assertEquals(file.mode!, Deno.statSync(`cli/tests/${file.name}`).mode!);
2018-10-04 06:56:56 +09:00
counter++;
}
}
assertEquals(counter, 2);
2018-10-04 06:56:56 +09:00
}
unitTest({ perms: { read: true } }, function readDirSyncSuccess(): void {
2020-02-02 22:55:22 +01:00
const files = Deno.readDirSync("cli/tests/");
2018-10-04 06:56:56 +09: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-04 06:56:56 +09:00
let caughtError = false;
let src;
try {
src = Deno.readDirSync("cli/tests/fixture.json");
2018-10-04 06:56:56 +09:00
} catch (err) {
caughtError = true;
assert(err instanceof Error);
2018-10-04 06:56:56 +09:00
}
assert(caughtError);
assertEquals(src, undefined);
2018-10-04 06:56:56 +09:00
});
unitTest({ perms: { read: true } }, function readDirSyncNotFound(): void {
2018-10-04 06:56:56 +09:00
let caughtError = false;
let src;
try {
src = Deno.readDirSync("bad_dir_name");
2018-10-04 06:56:56 +09:00
} catch (err) {
caughtError = true;
2020-02-24 15:48:35 -05:00
assert(err instanceof Deno.errors.NotFound);
2018-10-04 06:56:56 +09:00
}
assert(caughtError);
assertEquals(src, undefined);
2018-10-04 06:56:56 +09:00
});
unitTest({ perms: { read: true } }, async function readDirSuccess(): Promise<
void
> {
2020-02-02 22:55:22 +01:00
const files = await Deno.readDir("cli/tests/");
2018-10-04 06:56:56 +09:00
assertSameContent(files);
});
unitTest({ perms: { read: false } }, async function readDirPerm(): Promise<
void
> {
let caughtError = false;
try {
await Deno.readDir("tests/");
} catch (e) {
caughtError = true;
2020-02-24 15:48:35 -05:00
assert(e instanceof Deno.errors.PermissionDenied);
}
assert(caughtError);
});