2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-09-27 06:22:32 -04:00
|
|
|
import { assert, assertThrows, unitTest } from "./test_util.ts";
|
2018-09-18 21:38:24 -07:00
|
|
|
|
2020-03-04 17:31:14 +01:00
|
|
|
unitTest(
|
|
|
|
{ perms: { read: true, write: true } },
|
|
|
|
function symlinkSyncSuccess(): void {
|
|
|
|
const testDir = Deno.makeTempDirSync();
|
|
|
|
const oldname = testDir + "/oldname";
|
|
|
|
const newname = testDir + "/newname";
|
|
|
|
Deno.mkdirSync(oldname);
|
2020-05-19 03:16:02 +04:30
|
|
|
Deno.symlinkSync(oldname, newname);
|
|
|
|
const newNameInfoLStat = Deno.lstatSync(newname);
|
|
|
|
const newNameInfoStat = Deno.statSync(newname);
|
|
|
|
assert(newNameInfoLStat.isSymlink);
|
|
|
|
assert(newNameInfoStat.isDirectory);
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-03-04 17:31:14 +01:00
|
|
|
);
|
2018-09-18 21:38:24 -07:00
|
|
|
|
2020-03-04 17:31:14 +01:00
|
|
|
unitTest(function symlinkSyncPerm(): void {
|
2020-06-25 06:57:08 +08:00
|
|
|
assertThrows(() => {
|
2019-02-13 02:08:56 +11:00
|
|
|
Deno.symlinkSync("oldbaddir", "newbaddir");
|
2020-06-25 06:57:08 +08:00
|
|
|
}, Deno.errors.PermissionDenied);
|
2018-09-18 21:38:24 -07:00
|
|
|
});
|
|
|
|
|
2020-03-04 17:31:14 +01:00
|
|
|
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);
|
2020-05-19 03:16:02 +04:30
|
|
|
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");
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-03-04 17:31:14 +01:00
|
|
|
);
|