mirror of
https://github.com/nodejs/node.git
synced 2025-05-09 23:06:47 +00:00

Create one file for testing each function of the path module. Keep general error tests and tests for constant properties in test-path.js. PR-URL: https://github.com/nodejs/node/pull/15093 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
40 lines
2.2 KiB
JavaScript
40 lines
2.2 KiB
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const path = require('path');
|
|
|
|
assert.strictEqual(path.win32.normalize('./fixtures///b/../b/c.js'),
|
|
'fixtures\\b\\c.js');
|
|
assert.strictEqual(path.win32.normalize('/foo/../../../bar'), '\\bar');
|
|
assert.strictEqual(path.win32.normalize('a//b//../b'), 'a\\b');
|
|
assert.strictEqual(path.win32.normalize('a//b//./c'), 'a\\b\\c');
|
|
assert.strictEqual(path.win32.normalize('a//b//.'), 'a\\b');
|
|
assert.strictEqual(path.win32.normalize('//server/share/dir/file.ext'),
|
|
'\\\\server\\share\\dir\\file.ext');
|
|
assert.strictEqual(path.win32.normalize('/a/b/c/../../../x/y/z'), '\\x\\y\\z');
|
|
assert.strictEqual(path.win32.normalize('C:'), 'C:.');
|
|
assert.strictEqual(path.win32.normalize('C:..\\abc'), 'C:..\\abc');
|
|
assert.strictEqual(path.win32.normalize('C:..\\..\\abc\\..\\def'),
|
|
'C:..\\..\\def');
|
|
assert.strictEqual(path.win32.normalize('C:\\.'), 'C:\\');
|
|
assert.strictEqual(path.win32.normalize('file:stream'), 'file:stream');
|
|
assert.strictEqual(path.win32.normalize('bar\\foo..\\..\\'), 'bar\\');
|
|
assert.strictEqual(path.win32.normalize('bar\\foo..\\..'), 'bar');
|
|
assert.strictEqual(path.win32.normalize('bar\\foo..\\..\\baz'), 'bar\\baz');
|
|
assert.strictEqual(path.win32.normalize('bar\\foo..\\'), 'bar\\foo..\\');
|
|
assert.strictEqual(path.win32.normalize('bar\\foo..'), 'bar\\foo..');
|
|
|
|
assert.strictEqual(path.posix.normalize('./fixtures///b/../b/c.js'),
|
|
'fixtures/b/c.js');
|
|
assert.strictEqual(path.posix.normalize('/foo/../../../bar'), '/bar');
|
|
assert.strictEqual(path.posix.normalize('a//b//../b'), 'a/b');
|
|
assert.strictEqual(path.posix.normalize('a//b//./c'), 'a/b/c');
|
|
assert.strictEqual(path.posix.normalize('a//b//.'), 'a/b');
|
|
assert.strictEqual(path.posix.normalize('/a/b/c/../../../x/y/z'), '/x/y/z');
|
|
assert.strictEqual(path.posix.normalize('///..//./foo/.//bar'), '/foo/bar');
|
|
assert.strictEqual(path.posix.normalize('bar/foo../../'), 'bar/');
|
|
assert.strictEqual(path.posix.normalize('bar/foo../..'), 'bar');
|
|
assert.strictEqual(path.posix.normalize('bar/foo../../baz'), 'bar/baz');
|
|
assert.strictEqual(path.posix.normalize('bar/foo../'), 'bar/foo../');
|
|
assert.strictEqual(path.posix.normalize('bar/foo..'), 'bar/foo..');
|