-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: add known issue test for path parse issue #6229
Refs: #6229 PR-URL: #8293 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
'use strict'; | ||
// Refs: https://github.com/nodejs/node/issues/6229 | ||
|
||
require('../common'); | ||
const assert = require('assert'); | ||
const path = require('path'); | ||
|
||
{ | ||
// The path `/foo/bar` is not the same path as `/foo/bar/` | ||
const parsed1 = path.posix.parse('/foo/bar'); | ||
const parsed2 = path.posix.parse('/foo/bar/'); | ||
|
||
assert.strictEqual(parsed1.root, '/'); | ||
assert.strictEqual(parsed1.dir, '/foo'); | ||
assert.strictEqual(parsed1.base, 'bar'); | ||
|
||
assert.strictEqual(parsed2.root, '/'); | ||
assert.strictEqual(parsed2.dir, '/foo/bar'); | ||
assert.strictEqual(parsed2.base, ''); | ||
} | ||
|
||
{ | ||
// The path `\\foo\\bar` is not the same path as `\\foo\\bar\\` | ||
const parsed1 = path.win32.parse('\\foo\\bar'); | ||
const parsed2 = path.win32.parse('\\foo\\bar\\'); | ||
|
||
assert.strictEqual(parsed1.root, '\\'); | ||
assert.strictEqual(parsed1.dir, '\\foo'); | ||
assert.strictEqual(parsed1.base, 'bar'); | ||
|
||
assert.strictEqual(parsed2.root, '\\'); | ||
assert.strictEqual(parsed2.dir, '\\foo\\bar'); | ||
assert.strictEqual(parsed2.base, ''); | ||
} |