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

86 lines
2 KiB
TypeScript
Raw Normal View History

2019-01-21 14:03:30 -05:00
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import { testPerm, assert, assertEqual } from "./test_util.ts";
type FileInfo = Deno.FileInfo;
2018-10-03 17:56:56 -04:00
function assertSameContent(files: FileInfo[]) {
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") {
assertEqual(file.path, `tests/${file.name}`);
assertEqual(file.mode!, Deno.statSync(`tests/${file.name}`).mode!);
2018-10-03 17:56:56 -04:00
counter++;
}
}
assertEqual(counter, 2);
}
testPerm({ read: true }, function readDirSyncSuccess() {
const files = Deno.readDirSync("tests/");
2018-10-03 17:56:56 -04:00
assertSameContent(files);
});
testPerm({ read: false }, function readDirSyncPerm() {
let caughtError = false;
try {
const files = Deno.readDirSync("tests/");
} catch (e) {
caughtError = true;
assertEqual(e.kind, Deno.ErrorKind.PermissionDenied);
assertEqual(e.name, "PermissionDenied");
}
assert(caughtError);
});
testPerm({ read: true }, function readDirSyncNotDir() {
2018-10-03 17:56:56 -04:00
let caughtError = false;
let src;
try {
src = Deno.readDirSync("package.json");
2018-10-03 17:56:56 -04:00
} catch (err) {
caughtError = true;
assertEqual(err.kind, Deno.ErrorKind.Other);
2018-10-03 17:56:56 -04:00
}
assert(caughtError);
assertEqual(src, undefined);
});
testPerm({ read: true }, function readDirSyncNotFound() {
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;
assertEqual(err.kind, Deno.ErrorKind.NotFound);
2018-10-03 17:56:56 -04:00
}
assert(caughtError);
assertEqual(src, undefined);
});
testPerm({ read: true }, async function readDirSuccess() {
const files = await Deno.readDir("tests/");
2018-10-03 17:56:56 -04:00
assertSameContent(files);
});
testPerm({ read: false }, async function readDirPerm() {
let caughtError = false;
try {
const files = await Deno.readDir("tests/");
} catch (e) {
caughtError = true;
assertEqual(e.kind, Deno.ErrorKind.PermissionDenied);
assertEqual(e.name, "PermissionDenied");
}
assert(caughtError);
});