summaryrefslogtreecommitdiff
path: root/cli/js/tests/symlink_test.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-05-20 17:52:51 -0400
committerGitHub <noreply@github.com>2020-05-20 17:52:51 -0400
commit30702e2678200b6e21ba142347d2d213b86e9c6d (patch)
treefe53d6ad8631e7e2e76c3b3c5935e26bff89a352 /cli/js/tests/symlink_test.ts
parent49dda23f6b936f21de2a3de4be39771f30ddd6e9 (diff)
move js unit tests to cli/tests (#5678)
Diffstat (limited to 'cli/js/tests/symlink_test.ts')
-rw-r--r--cli/js/tests/symlink_test.ts44
1 files changed, 0 insertions, 44 deletions
diff --git a/cli/js/tests/symlink_test.ts b/cli/js/tests/symlink_test.ts
deleted file mode 100644
index 505a49bab..000000000
--- a/cli/js/tests/symlink_test.ts
+++ /dev/null
@@ -1,44 +0,0 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
-import { unitTest, assert, assertEquals } from "./test_util.ts";
-
-unitTest(
- { perms: { read: true, write: true } },
- function symlinkSyncSuccess(): void {
- const testDir = Deno.makeTempDirSync();
- const oldname = testDir + "/oldname";
- const newname = testDir + "/newname";
- Deno.mkdirSync(oldname);
- // Just for now, until we implement symlink for Windows.
- Deno.symlinkSync(oldname, newname);
- const newNameInfoLStat = Deno.lstatSync(newname);
- const newNameInfoStat = Deno.statSync(newname);
- assert(newNameInfoLStat.isSymlink);
- assert(newNameInfoStat.isDirectory);
- }
-);
-
-unitTest(function symlinkSyncPerm(): void {
- let err;
- try {
- Deno.symlinkSync("oldbaddir", "newbaddir");
- } catch (e) {
- err = e;
- }
- assert(err instanceof Deno.errors.PermissionDenied);
- assertEquals(err.name, "PermissionDenied");
-});
-
-unitTest(
- { perms: { read: true, write: true } },
- async function symlinkSuccess(): Promise<void> {
- const testDir = Deno.makeTempDirSync();
- const oldname = testDir + "/oldname";
- const newname = testDir + "/newname";
- Deno.mkdirSync(oldname);
- await Deno.symlink(oldname, newname);
- const newNameInfoLStat = Deno.lstatSync(newname);
- const newNameInfoStat = Deno.statSync(newname);
- assert(newNameInfoLStat.isSymlink, "NOT SYMLINK");
- assert(newNameInfoStat.isDirectory, "NOT DIRECTORY");
- }
-);