mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
315e4abd7e
It should return an error if a file with the given path exists and recursive isn't specified. Because mode is not used on windows and rarely used in unix, it is made to the last parameter. In collaboration with Stefan Dombrowski <sdo451@gmail.com>
44 lines
1.4 KiB
TypeScript
44 lines
1.4 KiB
TypeScript
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
|
|
import { test, testPerm, assert, assertEqual } from "./test_util.ts";
|
|
import * as deno from "deno";
|
|
|
|
testPerm({ write: true }, function readlinkSyncSuccess() {
|
|
const testDir = deno.makeTempDirSync();
|
|
const target = testDir + "/target";
|
|
const symlink = testDir + "/symln";
|
|
deno.mkdirSync(target);
|
|
// TODO Add test for Windows once symlink is implemented for Windows.
|
|
// See https://github.com/denoland/deno/issues/815.
|
|
if (deno.platform.os !== "win") {
|
|
deno.symlinkSync(target, symlink);
|
|
const targetPath = deno.readlinkSync(symlink);
|
|
assertEqual(targetPath, target);
|
|
}
|
|
});
|
|
|
|
test(function readlinkSyncNotFound() {
|
|
let caughtError = false;
|
|
let data;
|
|
try {
|
|
data = deno.readlinkSync("bad_filename");
|
|
} catch (e) {
|
|
caughtError = true;
|
|
assertEqual(e.kind, deno.ErrorKind.NotFound);
|
|
}
|
|
assert(caughtError);
|
|
assertEqual(data, undefined);
|
|
});
|
|
|
|
testPerm({ write: true }, async function readlinkSuccess() {
|
|
const testDir = deno.makeTempDirSync();
|
|
const target = testDir + "/target";
|
|
const symlink = testDir + "/symln";
|
|
deno.mkdirSync(target);
|
|
// TODO Add test for Windows once symlink is implemented for Windows.
|
|
// See https://github.com/denoland/deno/issues/815.
|
|
if (deno.platform.os !== "win") {
|
|
deno.symlinkSync(target, symlink);
|
|
const targetPath = await deno.readlink(symlink);
|
|
assertEqual(targetPath, target);
|
|
}
|
|
});
|