deno/cli/tests/unit/dir_test.ts

60 lines
1.6 KiB
TypeScript
Raw Normal View History

2020-01-02 20:13:47 +00:00
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { unitTest, assert, assertEquals, assertThrows } from "./test_util.ts";
2018-10-13 20:03:27 +00:00
unitTest({ perms: { read: true } }, function dirCwdNotNull(): void {
assert(Deno.cwd() != null);
2018-10-13 20:03:27 +00:00
});
unitTest(
{ perms: { read: true, write: true } },
function dirCwdChdirSuccess(): void {
const initialdir = Deno.cwd();
const path = Deno.makeTempDirSync();
Deno.chdir(path);
const current = Deno.cwd();
if (Deno.build.os === "darwin") {
assertEquals(current, "/private" + path);
} else {
assertEquals(current, path);
}
Deno.chdir(initialdir);
},
);
2018-10-13 20:03:27 +00:00
unitTest({ perms: { read: true, write: true } }, function dirCwdError(): void {
2018-10-13 20:03:27 +00:00
// excluding windows since it throws resource busy, while removeSync
if (["linux", "darwin"].includes(Deno.build.os)) {
const initialdir = Deno.cwd();
const path = Deno.makeTempDirSync();
Deno.chdir(path);
Deno.removeSync(path);
2018-10-13 20:03:27 +00:00
try {
assertThrows(() => {
Deno.cwd();
}, Deno.errors.NotFound);
} finally {
Deno.chdir(initialdir);
2018-10-13 20:03:27 +00:00
}
}
});
unitTest({ perms: { read: false } }, function dirCwdPermError(): void {
assertThrows(
() => {
Deno.cwd();
},
Deno.errors.PermissionDenied,
"read access to <CWD>, run again with the --allow-read flag",
);
});
unitTest(
{ perms: { read: true, write: true } },
function dirChdirError(): void {
const path = Deno.makeTempDirSync() + "test";
assertThrows(() => {
Deno.chdir(path);
}, Deno.errors.NotFound);
},
);