1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/cli/js/tests/dir_test.ts

55 lines
1.6 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(function dirCwdNotNull(): void {
assert(Deno.cwd() != null);
2018-10-13 16:03:27 -04:00
});
unitTest({ perms: { write: true } }, function dirCwdChdirSuccess(): void {
const initialdir = Deno.cwd();
const path = Deno.makeTempDirSync();
Deno.chdir(path);
const current = Deno.cwd();
if (Deno.build.os === "mac") {
assertEquals(current, "/private" + path);
2018-10-13 16:03:27 -04:00
} else {
assertEquals(current, path);
2018-10-13 16:03:27 -04:00
}
Deno.chdir(initialdir);
2018-10-13 16:03:27 -04:00
});
unitTest({ perms: { write: true } }, function dirCwdError(): void {
2018-10-13 16:03:27 -04:00
// excluding windows since it throws resource busy, while removeSync
if (["linux", "mac"].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: { write: true } }, function dirChdirError(): void {
const path = Deno.makeTempDirSync() + "test";
2018-10-13 16:03:27 -04:00
try {
Deno.chdir(path);
2018-10-13 16:03:27 -04:00
throw Error("directory not available, 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");
}
}
});