mirror of
https://github.com/denoland/deno.git
synced 2024-11-05 09:04:41 -05:00
6915a9b7a7
This PR adds the remaining ~650 Node.js compat test cases from std/node. Among these 650 cases, about 130 cases are now failing. These failing cases are prefixed with `TODO:` in `tests/node_compat/config.json`. These will be addressed in later PRs.
79 lines
3.9 KiB
JavaScript
79 lines
3.9 KiB
JavaScript
// deno-fmt-ignore-file
|
|
// deno-lint-ignore-file
|
|
|
|
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
|
|
// Taken from Node 18.12.1
|
|
// This file is automatically generated by "node/_tools/setup.ts". Do not modify this file manually
|
|
|
|
'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.win32.normalize('..\\foo..\\..\\..\\bar'),
|
|
'..\\..\\bar');
|
|
assert.strictEqual(path.win32.normalize('..\\...\\..\\.\\...\\..\\..\\bar'),
|
|
'..\\..\\bar');
|
|
assert.strictEqual(path.win32.normalize('../../../foo/../../../bar'),
|
|
'..\\..\\..\\..\\..\\bar');
|
|
assert.strictEqual(path.win32.normalize('../../../foo/../../../bar/../../'),
|
|
'..\\..\\..\\..\\..\\..\\');
|
|
assert.strictEqual(
|
|
path.win32.normalize('../foobar/barfoo/foo/../../../bar/../../'),
|
|
'..\\..\\'
|
|
);
|
|
assert.strictEqual(
|
|
path.win32.normalize('../.../../foobar/../../../bar/../../baz'),
|
|
'..\\..\\..\\..\\baz'
|
|
);
|
|
assert.strictEqual(path.win32.normalize('foo/bar\\baz'), 'foo\\bar\\baz');
|
|
|
|
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..');
|
|
assert.strictEqual(path.posix.normalize('../foo../../../bar'), '../../bar');
|
|
assert.strictEqual(path.posix.normalize('../.../.././.../../../bar'),
|
|
'../../bar');
|
|
assert.strictEqual(path.posix.normalize('../../../foo/../../../bar'),
|
|
'../../../../../bar');
|
|
assert.strictEqual(path.posix.normalize('../../../foo/../../../bar/../../'),
|
|
'../../../../../../');
|
|
assert.strictEqual(
|
|
path.posix.normalize('../foobar/barfoo/foo/../../../bar/../../'),
|
|
'../../'
|
|
);
|
|
assert.strictEqual(
|
|
path.posix.normalize('../.../../foobar/../../../bar/../../baz'),
|
|
'../../../../baz'
|
|
);
|
|
assert.strictEqual(path.posix.normalize('foo/bar\\baz'), 'foo/bar\\baz');
|