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/dir_test.ts

61 lines
1.7 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";
2018-10-13 16:03:27 -04:00
unitTest({ perms: { read: true } }, function dirCwdNotNull(): void {
assert(Deno.cwd() != null);
2018-10-13 16:03:27 -04: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 16:03:27 -04:00
}
);
2018-10-13 16:03:27 -04:00
unitTest({ perms: { read: true, write: true } }, function dirCwdError(): void {
2018-10-13 16:03:27 -04: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 16:03:27 -04:00
try {
Deno.cwd();
2018-10-13 16:03:27 -04:00
throw Error("current directory removed, should throw error");
} catch (err) {
2020-02-24 15:48:35 -05:00
if (err instanceof Deno.errors.NotFound) {
assert(err.name === "NotFound");
2018-10-13 16:03:27 -04:00
} else {
throw Error("raised different exception");
}
}
Deno.chdir(initialdir);
2018-10-13 16:03:27 -04:00
}
});
unitTest(
{ perms: { read: true, write: true } },
function dirChdirError(): void {
const path = Deno.makeTempDirSync() + "test";
try {
Deno.chdir(path);
throw Error("directory not available, should throw error");
} catch (err) {
if (err instanceof Deno.errors.NotFound) {
assert(err.name === "NotFound");
} else {
throw Error("raised different exception");
}
2018-10-13 16:03:27 -04:00
}
}
);