summaryrefslogtreecommitdiffstats
path: root/node_modules/commondir/test
diff options
context:
space:
mode:
authorGravatar Piotr Russ <mail@pruss.it> 2020-11-16 00:10:28 +0100
committerGravatar Piotr Russ <mail@pruss.it> 2020-11-16 00:10:28 +0100
commite06ec920f7a5d784e674c4c4b4e6d1da3dc7391d (patch)
tree55713f725f77b44ebfec86e4eec3ce33e71458ca /node_modules/commondir/test
downloadwebsite_creator-e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d.tar.gz
website_creator-e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d.tar.bz2
website_creator-e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d.zip
api, login, auth
Diffstat (limited to 'node_modules/commondir/test')
-rw-r--r--node_modules/commondir/test/dirs.js55
1 files changed, 55 insertions, 0 deletions
diff --git a/node_modules/commondir/test/dirs.js b/node_modules/commondir/test/dirs.js
new file mode 100644
index 0000000..7e55c9b
--- /dev/null
+++ b/node_modules/commondir/test/dirs.js
@@ -0,0 +1,55 @@
+var test = require('tape');
+var commondir = require('../');
+
+test('common', function (t) {
+ t.equal(
+ commondir([ '/foo', '//foo/bar', '/foo//bar/baz' ]),
+ '/foo'
+ );
+ t.equal(
+ commondir([ '/a/b/c', '/a/b', '/a/b/c/d/e' ]),
+ '/a/b'
+ );
+ t.equal(
+ commondir([ '/x/y/z/w', '/xy/z', '/x/y/z' ]),
+ '/'
+ );
+ t.equal(
+ commondir([ 'X:\\foo', 'X:\\\\foo\\bar', 'X://foo/bar/baz' ]),
+ 'X:/foo'
+ );
+ t.equal(
+ commondir([ 'X:\\a\\b\\c', 'X:\\a\\b', 'X:\\a\\b\\c\\d\\e' ]),
+ 'X:/a/b'
+ );
+ t.equal(
+ commondir([ 'X:\\x\\y\\z\\w', '\\\\xy\\z', '\\x\\y\\z' ]),
+ '/'
+ );
+ t.throws(function () {
+ commondir([ '/x/y/z/w', 'qrs', '/x/y/z' ]);
+ });
+ t.end();
+});
+
+test('base', function (t) {
+ t.equal(
+ commondir('/foo/bar', [ 'baz', './quux', '../bar/bazzy' ]),
+ '/foo/bar'
+ );
+ t.equal(
+ commondir('/a/b', [ 'c', '../b/.', '../../a/b/e' ]),
+ '/a/b'
+ );
+ t.equal(
+ commondir('/a/b/c', [ '..', '../d', '../../a/z/e' ]),
+ '/a'
+ );
+ t.equal(
+ commondir('/foo/bar', [ 'baz', '.\\quux', '..\\bar\\bazzy' ]),
+ '/foo/bar'
+ );
+ // Tests including X:\ basedirs must wait until path.resolve supports
+ // Windows-style paths, starting in Node.js v0.5.X
+ t.end();
+});