summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pathlib.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2016-01-07 18:56:36 (GMT)
committerGuido van Rossum <guido@python.org>2016-01-07 18:56:36 (GMT)
commitbc9fddaf50df55f1b4d11ecb5598b95adacac707 (patch)
tree51062a47247af062331235be329a1ed1be223f3d /Lib/test/test_pathlib.py
parentf3695bfacfa51e0e8fb47c7e406152a3f9cd3af2 (diff)
downloadcpython-bc9fddaf50df55f1b4d11ecb5598b95adacac707.zip
cpython-bc9fddaf50df55f1b4d11ecb5598b95adacac707.tar.gz
cpython-bc9fddaf50df55f1b4d11ecb5598b95adacac707.tar.bz2
Add another try/except PermissionError to avoid depending on listdir order. Fix issues #24120 and #26012.
Diffstat (limited to 'Lib/test/test_pathlib.py')
-rw-r--r--Lib/test/test_pathlib.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/Lib/test/test_pathlib.py b/Lib/test/test_pathlib.py
index 061c764..a12af22 100644
--- a/Lib/test/test_pathlib.py
+++ b/Lib/test/test_pathlib.py
@@ -1240,7 +1240,7 @@ class _BasePathTest(object):
# | |-- dirD
# | | `-- fileD
# | `-- fileC
- # |-- dirE
+ # |-- dirE # No permissions
# |-- fileA
# |-- linkA -> fileA
# `-- linkB -> dirB
@@ -1396,13 +1396,13 @@ class _BasePathTest(object):
p = P(BASE)
it = p.rglob("fileA")
self.assertIsInstance(it, collections.Iterator)
- # XXX cannot test because of symlink loops in the test setup
- #_check(it, ["fileA"])
- #_check(p.rglob("fileB"), ["dirB/fileB"])
- #_check(p.rglob("*/fileA"), [""])
- #_check(p.rglob("*/fileB"), ["dirB/fileB"])
- #_check(p.rglob("file*"), ["fileA", "dirB/fileB"])
- # No symlink loops here
+ _check(it, ["fileA"])
+ _check(p.rglob("fileB"), ["dirB/fileB"])
+ _check(p.rglob("*/fileA"), [])
+ _check(p.rglob("*/fileB"), ["dirB/fileB", "dirB/linkD/fileB",
+ "linkB/fileB", "dirA/linkC/fileB"])
+ _check(p.rglob("file*"), ["fileA", "dirB/fileB",
+ "dirC/fileC", "dirC/dirD/fileD"])
p = P(BASE, "dirC")
_check(p.rglob("file*"), ["dirC/fileC", "dirC/dirD/fileD"])
_check(p.rglob("*/*"), ["dirC/dirD/fileD"])