diff options
author | J0WI <J0WI@users.noreply.github.com> | 2021-03-27 20:57:27 +0100 |
---|---|---|
committer | J0WI <J0WI@users.noreply.github.com> | 2021-03-27 21:29:28 +0100 |
commit | d58d6199d980ce234b04aa2e892061d622507b5b (patch) | |
tree | 036da7f222af6e3af62e63f4893c08137268c115 /tests | |
parent | aec9c8437a3de5d69451ae303ac5334b412f76d8 (diff) | |
download | nextcloud-server-d58d6199d980ce234b04aa2e892061d622507b5b.tar.gz nextcloud-server-d58d6199d980ce234b04aa2e892061d622507b5b.zip |
Cleaner normalizePath regex
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/Files/FilesystemTest.php | 27 |
1 files changed, 22 insertions, 5 deletions
diff --git a/tests/lib/Files/FilesystemTest.php b/tests/lib/Files/FilesystemTest.php index 5859bc2c772..8f34860d85a 100644 --- a/tests/lib/Files/FilesystemTest.php +++ b/tests/lib/Files/FilesystemTest.php @@ -140,11 +140,26 @@ class FilesystemTest extends \Test\TestCase { ['/foo/.bar', '/foo/.bar/'], ['/foo/.bar/', '/foo/.bar/', false], ['/foo/.bar/tee', '/foo/.bar/tee'], - - ['/foo/bar', '/.///././//./foo/.///././//./bar/./././.'], - ['/foo/bar/', '/.///././//./foo/.///././//./bar/./././.', false], - ['/foo/bar', '/.///././//./foo/.///././//./bar/././././'], - ['/foo/bar/', '/.///././//./foo/.///././//./bar/././././', false], + ['/foo/bar.', '/foo/bar./'], + ['/foo/bar./', '/foo/bar./', false], + ['/foo/bar./tee', '/foo/bar./tee'], + ['/foo/.bar.', '/foo/.bar./'], + ['/foo/.bar./', '/foo/.bar./', false], + ['/foo/.bar./tee', '/foo/.bar./tee'], + + ['/foo/bar', '/.////././//./foo/.///././//./bar/././/./.'], + ['/foo/bar/', '/.////././//./foo/.///././//./bar/./././.', false], + ['/foo/bar', '/.////././//./foo/.///././//./bar/././/././'], + ['/foo/bar/', '/.////././//./foo/.///././//./bar/././/././', false], + ['/foo/.bar', '/.////././//./foo/./././/./.bar/././/././'], + ['/foo/.bar/', '/.////././//./foo/./././/./.bar/././/././', false], + ['/foo/.bar/tee./', '/.////././//./foo/./././/./.bar/tee././/././', false], + ['/foo/bar.', '/.////././//./foo/./././/./bar./././/././'], + ['/foo/bar./', '/.////././//./foo/./././/./bar./././/././', false], + ['/foo/bar./tee./', '/.////././//./foo/./././/./bar./tee././/././', false], + ['/foo/.bar.', '/.////././//./foo/./././/./.bar./././/././'], + ['/foo/.bar./', '/.////././//./foo/./././/./.bar./././././', false], + ['/foo/.bar./tee./', '/.////././//./foo/./././/./.bar./tee././././', false], // Windows paths ['/', ''], @@ -186,7 +201,9 @@ class FilesystemTest extends \Test\TestCase { // normalize does not resolve '..' (by design) ['/foo/..', '/foo/../'], + ['/foo/../bar', '/foo/../bar/.'], ['/foo/..', '\\foo\\..\\'], + ['/foo/../bar', '\\foo\\..\\bar'], ]; } |