2021-01-11 12:13:41 -05:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2021-06-03 10:16:00 -04:00
|
|
|
import {
|
|
|
|
assert,
|
|
|
|
assertThrows,
|
|
|
|
pathToAbsoluteFileUrl,
|
|
|
|
unitTest,
|
|
|
|
} from "./test_util.ts";
|
2018-09-19 00:38:24 -04:00
|
|
|
|
2020-03-04 11:31:14 -05: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-18 18:46:02 -04:00
|
|
|
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 11:31:14 -05:00
|
|
|
);
|
2018-09-19 00:38:24 -04:00
|
|
|
|
2021-06-03 10:16:00 -04:00
|
|
|
unitTest(
|
|
|
|
{ perms: { read: true, write: true } },
|
|
|
|
function symlinkSyncURL(): void {
|
|
|
|
const testDir = Deno.makeTempDirSync();
|
|
|
|
const oldname = testDir + "/oldname";
|
|
|
|
const newname = testDir + "/newname";
|
|
|
|
Deno.mkdirSync(oldname);
|
|
|
|
Deno.symlinkSync(
|
|
|
|
pathToAbsoluteFileUrl(oldname),
|
|
|
|
pathToAbsoluteFileUrl(newname),
|
|
|
|
);
|
|
|
|
const newNameInfoLStat = Deno.lstatSync(newname);
|
|
|
|
const newNameInfoStat = Deno.statSync(newname);
|
|
|
|
assert(newNameInfoLStat.isSymlink);
|
|
|
|
assert(newNameInfoStat.isDirectory);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function symlinkSyncPerm(): void {
|
2020-06-24 18:57:08 -04:00
|
|
|
assertThrows(() => {
|
2019-02-12 10:08:56 -05:00
|
|
|
Deno.symlinkSync("oldbaddir", "newbaddir");
|
2020-06-24 18:57:08 -04:00
|
|
|
}, Deno.errors.PermissionDenied);
|
2018-09-19 00:38:24 -04:00
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05: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-18 18:46:02 -04:00
|
|
|
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 11:31:14 -05:00
|
|
|
);
|
2021-06-03 10:16:00 -04:00
|
|
|
|
|
|
|
unitTest(
|
|
|
|
{ perms: { read: true, write: true } },
|
|
|
|
async function symlinkURL(): Promise<void> {
|
|
|
|
const testDir = Deno.makeTempDirSync();
|
|
|
|
const oldname = testDir + "/oldname";
|
|
|
|
const newname = testDir + "/newname";
|
|
|
|
Deno.mkdirSync(oldname);
|
|
|
|
await Deno.symlink(
|
|
|
|
pathToAbsoluteFileUrl(oldname),
|
|
|
|
pathToAbsoluteFileUrl(newname),
|
|
|
|
);
|
|
|
|
const newNameInfoLStat = Deno.lstatSync(newname);
|
|
|
|
const newNameInfoStat = Deno.statSync(newname);
|
|
|
|
assert(newNameInfoLStat.isSymlink, "NOT SYMLINK");
|
|
|
|
assert(newNameInfoStat.isDirectory, "NOT DIRECTORY");
|
|
|
|
},
|
|
|
|
);
|