deno.land / std@0.166.0 / node / _tools / test / parallel / test-path-join.js

test-path-join.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
// deno-fmt-ignore-file// deno-lint-ignore-file
// Copyright Joyent and Node contributors. All rights reserved. MIT license.// Taken from Node 18.12.0// 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');
const failures = [];const backslashRE = /\\/g;
const joinTests = [ [ [path.posix.join, path.win32.join], // Arguments result [[['.', 'x/b', '..', '/b/c.js'], 'x/b/c.js'], [[], '.'], [['/.', 'x/b', '..', '/b/c.js'], '/x/b/c.js'], [['/foo', '../../../bar'], '/bar'], [['foo', '../../../bar'], '../../bar'], [['foo/', '../../../bar'], '../../bar'], [['foo/x', '../../../bar'], '../bar'], [['foo/x', './bar'], 'foo/x/bar'], [['foo/x/', './bar'], 'foo/x/bar'], [['foo/x/', '.', 'bar'], 'foo/x/bar'], [['./'], './'], [['.', './'], './'], [['.', '.', '.'], '.'], [['.', './', '.'], '.'], [['.', '/./', '.'], '.'], [['.', '/////./', '.'], '.'], [['.'], '.'], [['', '.'], '.'], [['', 'foo'], 'foo'], [['foo', '/bar'], 'foo/bar'], [['', '/foo'], '/foo'], [['', '', '/foo'], '/foo'], [['', '', 'foo'], 'foo'], [['foo', ''], 'foo'], [['foo/', ''], 'foo/'], [['foo', '', '/bar'], 'foo/bar'], [['./', '..', '/foo'], '../foo'], [['./', '..', '..', '/foo'], '../../foo'], [['.', '..', '..', '/foo'], '../../foo'], [['', '..', '..', '/foo'], '../../foo'], [['/'], '/'], [['/', '.'], '/'], [['/', '..'], '/'], [['/', '..', '..'], '/'], [[''], '.'], [['', ''], '.'], [[' /foo'], ' /foo'], [[' ', 'foo'], ' /foo'], [[' ', '.'], ' '], [[' ', '/'], ' /'], [[' ', ''], ' '], [['/', 'foo'], '/foo'], [['/', '/foo'], '/foo'], [['/', '//foo'], '/foo'], [['/', '', '/foo'], '/foo'], [['', '/', 'foo'], '/foo'], [['', '/', '/foo'], '/foo'], ], ],];
// Windows-specific join testsjoinTests.push([ path.win32.join, joinTests[0][1].slice(0).concat( [// Arguments result // UNC path expected [['//foo/bar'], '\\\\foo\\bar\\'], [['\\/foo/bar'], '\\\\foo\\bar\\'], [['\\\\foo/bar'], '\\\\foo\\bar\\'], // UNC path expected - server and share separate [['//foo', 'bar'], '\\\\foo\\bar\\'], [['//foo/', 'bar'], '\\\\foo\\bar\\'], [['//foo', '/bar'], '\\\\foo\\bar\\'], // UNC path expected - questionable [['//foo', '', 'bar'], '\\\\foo\\bar\\'], [['//foo/', '', 'bar'], '\\\\foo\\bar\\'], [['//foo/', '', '/bar'], '\\\\foo\\bar\\'], // UNC path expected - even more questionable [['', '//foo', 'bar'], '\\\\foo\\bar\\'], [['', '//foo/', 'bar'], '\\\\foo\\bar\\'], [['', '//foo/', '/bar'], '\\\\foo\\bar\\'], // No UNC path expected (no double slash in first component) [['\\', 'foo/bar'], '\\foo\\bar'], [['\\', '/foo/bar'], '\\foo\\bar'], [['', '/', '/foo/bar'], '\\foo\\bar'], // No UNC path expected (no non-slashes in first component - // questionable) [['//', 'foo/bar'], '\\foo\\bar'], [['//', '/foo/bar'], '\\foo\\bar'], [['\\\\', '/', '/foo/bar'], '\\foo\\bar'], [['//'], '\\'], // No UNC path expected (share name missing - questionable). [['//foo'], '\\foo'], [['//foo/'], '\\foo\\'], [['//foo', '/'], '\\foo\\'], [['//foo', '', '/'], '\\foo\\'], // No UNC path expected (too many leading slashes - questionable) [['///foo/bar'], '\\foo\\bar'], [['////foo', 'bar'], '\\foo\\bar'], [['\\\\\\/foo/bar'], '\\foo\\bar'], // Drive-relative vs drive-absolute paths. This merely describes the // status quo, rather than being obviously right [['c:'], 'c:.'], [['c:.'], 'c:.'], [['c:', ''], 'c:.'], [['', 'c:'], 'c:.'], [['c:.', '/'], 'c:.\\'], [['c:.', 'file'], 'c:file'], [['c:', '/'], 'c:\\'], [['c:', 'file'], 'c:\\file'], ] ),]);joinTests.forEach((test) => { if (!Array.isArray(test[0])) test[0] = [test[0]]; test[0].forEach((join) => { test[1].forEach((test) => { const actual = join.apply(null, test[0]); const expected = test[1]; // For non-Windows specific tests with the Windows join(), we need to try // replacing the slashes since the non-Windows specific tests' `expected` // use forward slashes let actualAlt; let os; if (join === path.win32.join) { actualAlt = actual.replace(backslashRE, '/'); os = 'win32'; } else { os = 'posix'; } if (actual !== expected && actualAlt !== expected) { const delimiter = test[0].map(JSON.stringify).join(','); const message = `path.${os}.join(${delimiter})\n expect=${ JSON.stringify(expected)}\n actual=${JSON.stringify(actual)}`; failures.push(`\n${message}`); } }); });});assert.strictEqual(failures.length, 0, failures.join(''));
std

Version Info

Tagged at
a year ago