1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-03 12:58:54 -05:00
denoland-deno/fs/path/zero_length_strings_test.ts
2019-03-06 16:39:50 -05:00

47 lines
1.6 KiB
TypeScript

// Copyright the Browserify authors. MIT License.
// Ported from https://github.com/browserify/path-browserify/
const { cwd } = Deno;
import { test } from "../../testing/mod.ts";
import { assertEq } from "../../testing/asserts.ts";
import * as path from "./mod.ts";
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.
assertEq(path.posix.join(""), ".");
assertEq(path.posix.join("", ""), ".");
if (path.win32) assertEq(path.win32.join(""), ".");
if (path.win32) assertEq(path.win32.join("", ""), ".");
assertEq(path.join(pwd), pwd);
assertEq(path.join(pwd, ""), pwd);
});
test(function normalizeZeroLength() {
// normalize will return '.' if the input is a zero-length string
assertEq(path.posix.normalize(""), ".");
if (path.win32) assertEq(path.win32.normalize(""), ".");
assertEq(path.normalize(pwd), pwd);
});
test(function isAbsoluteZeroLength() {
// Since '' is not a valid path in any of the common environments, return false
assertEq(path.posix.isAbsolute(""), false);
if (path.win32) assertEq(path.win32.isAbsolute(""), false);
});
test(function resolveZeroLength() {
// resolve, internally ignores all the zero-length strings and returns the
// current working directory
assertEq(path.resolve(""), pwd);
assertEq(path.resolve("", ""), pwd);
});
test(function relativeZeroLength() {
// relative, internally calls resolve. So, '' is actually the current directory
assertEq(path.relative("", pwd), "");
assertEq(path.relative(pwd, ""), "");
assertEq(path.relative(pwd, pwd), "");
});