summaryrefslogtreecommitdiff
path: root/fs/path/zero_length_strings_test.ts
diff options
context:
space:
mode:
author木杉 <zhmushan@qq.com>2019-01-11 06:11:44 +0800
committerRyan Dahl <ry@tinyclouds.org>2019-01-10 17:11:44 -0500
commit57c877c443765d7aa1f1f2d3cba801f280f19bfa (patch)
tree8a6d28410631497413fb32d9ff54b312f7e3d825 /fs/path/zero_length_strings_test.ts
parent6f8dc44a2b218bac3fb3ebb1035cbbd10160b48b (diff)
refactor(path): reorg (denoland/deno_std#101)
Original: https://github.com/denoland/deno_std/commit/5be16ba5992b34a64d307779350b88b5cacbfa23
Diffstat (limited to 'fs/path/zero_length_strings_test.ts')
-rw-r--r--fs/path/zero_length_strings_test.ts46
1 files changed, 46 insertions, 0 deletions
diff --git a/fs/path/zero_length_strings_test.ts b/fs/path/zero_length_strings_test.ts
new file mode 100644
index 000000000..d069c781f
--- /dev/null
+++ b/fs/path/zero_length_strings_test.ts
@@ -0,0 +1,46 @@
+// Copyright the Browserify authors. MIT License.
+// Ported from https://github.com/browserify/path-browserify/
+
+import { test, assertEqual } from "../../testing/mod.ts";
+import * as path from "./mod.ts";
+import { cwd } from "deno";
+
+const pwd = cwd();
+
+test(function joinZeroLength() {
+ // join will internally ignore all the zero-length strings and it will return
+ // '.' if the joined string is a zero-length string.
+ assertEqual(path.posix.join(""), ".");
+ assertEqual(path.posix.join("", ""), ".");
+ if (path.win32) assertEqual(path.win32.join(""), ".");
+ if (path.win32) assertEqual(path.win32.join("", ""), ".");
+ assertEqual(path.join(pwd), pwd);
+ assertEqual(path.join(pwd, ""), pwd);
+});
+
+test(function normalizeZeroLength() {
+ // normalize will return '.' if the input is a zero-length string
+ assertEqual(path.posix.normalize(""), ".");
+ if (path.win32) assertEqual(path.win32.normalize(""), ".");
+ assertEqual(path.normalize(pwd), pwd);
+});
+
+test(function isAbsoluteZeroLength() {
+ // Since '' is not a valid path in any of the common environments, return false
+ assertEqual(path.posix.isAbsolute(""), false);
+ if (path.win32) assertEqual(path.win32.isAbsolute(""), false);
+});
+
+test(function resolveZeroLength() {
+ // resolve, internally ignores all the zero-length strings and returns the
+ // current working directory
+ assertEqual(path.resolve(""), pwd);
+ assertEqual(path.resolve("", ""), pwd);
+});
+
+test(function relativeZeroLength() {
+ // relative, internally calls resolve. So, '' is actually the current directory
+ assertEqual(path.relative("", pwd), "");
+ assertEqual(path.relative(pwd, ""), "");
+ assertEqual(path.relative(pwd, pwd), "");
+});