summaryrefslogtreecommitdiff
path: root/fs/path/extname_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/extname_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/extname_test.ts')
-rw-r--r--fs/path/extname_test.ts89
1 files changed, 89 insertions, 0 deletions
diff --git a/fs/path/extname_test.ts b/fs/path/extname_test.ts
new file mode 100644
index 000000000..63d473d34
--- /dev/null
+++ b/fs/path/extname_test.ts
@@ -0,0 +1,89 @@
+// 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";
+
+const slashRE = /\//g;
+
+const pairs = [
+ ["", ""],
+ ["/path/to/file", ""],
+ ["/path/to/file.ext", ".ext"],
+ ["/path.to/file.ext", ".ext"],
+ ["/path.to/file", ""],
+ ["/path.to/.file", ""],
+ ["/path.to/.file.ext", ".ext"],
+ ["/path/to/f.ext", ".ext"],
+ ["/path/to/..ext", ".ext"],
+ ["/path/to/..", ""],
+ ["file", ""],
+ ["file.ext", ".ext"],
+ [".file", ""],
+ [".file.ext", ".ext"],
+ ["/file", ""],
+ ["/file.ext", ".ext"],
+ ["/.file", ""],
+ ["/.file.ext", ".ext"],
+ [".path/file.ext", ".ext"],
+ ["file.ext.ext", ".ext"],
+ ["file.", "."],
+ [".", ""],
+ ["./", ""],
+ [".file.ext", ".ext"],
+ [".file", ""],
+ [".file.", "."],
+ [".file..", "."],
+ ["..", ""],
+ ["../", ""],
+ ["..file.ext", ".ext"],
+ ["..file", ".file"],
+ ["..file.", "."],
+ ["..file..", "."],
+ ["...", "."],
+ ["...ext", ".ext"],
+ ["....", "."],
+ ["file.ext/", ".ext"],
+ ["file.ext//", ".ext"],
+ ["file/", ""],
+ ["file//", ""],
+ ["file./", "."],
+ ["file.//", "."]
+];
+
+test(function extname() {
+ pairs.forEach(function(p) {
+ const input = p[0];
+ const expected = p[1];
+ assertEqual(expected, path.posix.extname(input));
+ });
+
+ // On *nix, backslash is a valid name component like any other character.
+ assertEqual(path.posix.extname(".\\"), "");
+ assertEqual(path.posix.extname("..\\"), ".\\");
+ assertEqual(path.posix.extname("file.ext\\"), ".ext\\");
+ assertEqual(path.posix.extname("file.ext\\\\"), ".ext\\\\");
+ assertEqual(path.posix.extname("file\\"), "");
+ assertEqual(path.posix.extname("file\\\\"), "");
+ assertEqual(path.posix.extname("file.\\"), ".\\");
+ assertEqual(path.posix.extname("file.\\\\"), ".\\\\");
+});
+
+test(function extnameWin32() {
+ pairs.forEach(function(p) {
+ const input = p[0].replace(slashRE, "\\");
+ const expected = p[1];
+ assertEqual(expected, path.win32.extname(input));
+ assertEqual(expected, path.win32.extname("C:" + input));
+ });
+
+ // On Windows, backslash is a path separator.
+ assertEqual(path.win32.extname(".\\"), "");
+ assertEqual(path.win32.extname("..\\"), "");
+ assertEqual(path.win32.extname("file.ext\\"), ".ext");
+ assertEqual(path.win32.extname("file.ext\\\\"), ".ext");
+ assertEqual(path.win32.extname("file\\"), "");
+ assertEqual(path.win32.extname("file\\\\"), "");
+ assertEqual(path.win32.extname("file.\\"), ".");
+ assertEqual(path.win32.extname("file.\\\\"), ".");
+});