mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
29085895c9
The `tools/node_compat/node` submodule has been moved to `tests/node_compat/runner/suite` and the remaining files within `tools/node_compat` to `tests/node_compat/runner`. Most of the changes are of the header within `tests/node_compat/test` files. The `setup` and `test` tasks within `tests/node_comapt` execute successfully. Towards #22525 CC @mmastrac
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 `tests/node_compat/runner/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');
|