From 6d63391a380976ee4c5577d8efe449afede66f36 Mon Sep 17 00:00:00 2001 From: X Date: Tue, 3 Nov 2020 02:11:42 +0800 Subject: feat(std/node/fs): add realpath and realpathSync (#8169) --- std/node/_fs/_fs_realpath_test.ts | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 std/node/_fs/_fs_realpath_test.ts (limited to 'std/node/_fs/_fs_realpath_test.ts') diff --git a/std/node/_fs/_fs_realpath_test.ts b/std/node/_fs/_fs_realpath_test.ts new file mode 100644 index 000000000..9ab0173c1 --- /dev/null +++ b/std/node/_fs/_fs_realpath_test.ts @@ -0,0 +1,36 @@ +import { assertEquals } from "../../testing/asserts.ts"; +import { realpath, realpathSync } from "./_fs_realpath.ts"; + +Deno.test("realpath", async function () { + const tempFile = await Deno.makeTempFile(); + const tempFileAlias = tempFile + ".alias"; + await Deno.symlink(tempFile, tempFileAlias); + const realPath = await new Promise((resolve, reject) => { + realpath(tempFile, (err, path) => { + if (err) { + reject(err); + return; + } + resolve(path); + }); + }); + const realSymLinkPath = await new Promise((resolve, reject) => { + realpath(tempFileAlias, (err, path) => { + if (err) { + reject(err); + return; + } + resolve(path); + }); + }); + assertEquals(realPath, realSymLinkPath); +}); + +Deno.test("realpathSync", function () { + const tempFile = Deno.makeTempFileSync(); + const tempFileAlias = tempFile + ".alias"; + Deno.symlinkSync(tempFile, tempFileAlias); + const realPath = realpathSync(tempFile); + const realSymLinkPath = realpathSync(tempFileAlias); + assertEquals(realPath, realSymLinkPath); +}); -- cgit v1.2.3