summaryrefslogtreecommitdiff
path: root/test/parallel/test-path.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2017-07-25 10:37:08 -0700
committerRich Trott <rtrott@gmail.com>2017-07-27 09:24:20 -0700
commitaa6fac68da9b1d42123f0d56f60f39dc43d85d84 (patch)
treeeb94a442a9f929514b12b9ef4cd2a798c90c348e /test/parallel/test-path.js
parent4f0b10733483fbb62776b7973200e5fbb56349a9 (diff)
downloadnode-new-aa6fac68da9b1d42123f0d56f60f39dc43d85d84.tar.gz
test: adjust indentation for stricter linting
ESLint 4.x has stricter linting than previous versions. We are currently using the legacy indentation rules in the test directory. This commit changes the indentation of files to comply with the stricter 4.x linting and enable stricter linting in the test directory. PR-URL: https://github.com/nodejs/node/pull/14431 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Trevor Norris <trev.norris@gmail.com>
Diffstat (limited to 'test/parallel/test-path.js')
-rw-r--r--test/parallel/test-path.js92
1 files changed, 46 insertions, 46 deletions
diff --git a/test/parallel/test-path.js b/test/parallel/test-path.js
index 600c463370..050b109c81 100644
--- a/test/parallel/test-path.js
+++ b/test/parallel/test-path.js
@@ -287,51 +287,51 @@ joinTests.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']
+ // 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']
]
)
]);
@@ -461,7 +461,7 @@ resolveTests.forEach((test) => {
const expected = test[1];
const message =
`path.${os}.resolve(${test[0].map(JSON.stringify).join(',')})\n expect=${
- JSON.stringify(expected)}\n actual=${JSON.stringify(actual)}`;
+ JSON.stringify(expected)}\n actual=${JSON.stringify(actual)}`;
if (actual !== expected && actualAlt !== expected)
failures.push(`\n${message}`);
});