Skip to content

Commit ebd0f46

Browse files
committed
Make sure pathlib2 and scandir package are used if available
- adapted tests to test pathlib2 and scandir package in all versions - see #462
1 parent 81af553 commit ebd0f46

9 files changed

+53
-26
lines changed

extra_requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
# Older versions might work ok, the versions chosen here are just the latest
99
# available at the time of writing.
1010

11-
pathlib2>=2.3.2;python_version<'3.4'
11+
pathlib2>=2.3.2
1212

13-
scandir>=1.8;python_version<'3.5'
13+
scandir>=1.8

pyfakefs/extra_packages.py

+10-3
Original file line numberDiff line numberDiff line change
@@ -16,25 +16,32 @@
1616

1717
try:
1818
import pathlib2
19+
1920
pathlib = None
2021
except ImportError:
2122
try:
2223
import pathlib
24+
2325
pathlib2 = None
2426
except ImportError:
2527
pathlib = None
2628
pathlib2 = None
2729

30+
use_pathlib = pathlib or pathlib2
2831

2932
try:
3033
import scandir
31-
use_scandir = True
34+
3235
use_scandir_package = True
36+
use_builtin_scandir = False
3337
except ImportError:
3438
try:
3539
from os import scandir
36-
use_scandir = True
40+
41+
use_builtin_scandir = True
3742
use_scandir_package = False
3843
except ImportError:
39-
use_scandir = False
44+
use_builtin_scandir = False
4045
use_scandir_package = False
46+
47+
use_scandir = use_scandir_package or use_builtin_scandir

pyfakefs/fake_filesystem_unittest.py

+8-6
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@
6666
from pyfakefs import fake_filesystem
6767
from pyfakefs import fake_filesystem_shutil
6868
from pyfakefs import mox3_stubout
69-
from pyfakefs.extra_packages import pathlib, pathlib2, use_scandir
69+
from pyfakefs.extra_packages import pathlib, pathlib2, use_scandir, use_pathlib
7070

71-
if pathlib:
71+
if use_pathlib:
7272
from pyfakefs import fake_pathlib
7373

7474
if use_scandir:
@@ -313,6 +313,8 @@ class Patcher(object):
313313
SKIPNAMES = {'os', 'path', 'io', 'genericpath', OS_MODULE, PATH_MODULE}
314314
if pathlib:
315315
SKIPNAMES.add('pathlib')
316+
if pathlib2:
317+
SKIPNAMES.add('pathlib2')
316318

317319
def __init__(self, additional_skip_names=None,
318320
modules_to_reload=None, use_dynamic_patch=True,
@@ -356,12 +358,12 @@ def __init__(self, additional_skip_names=None,
356358
# be contained in - this allows for alternative modules like
357359
# `pathlib` and `pathlib2`
358360
self._class_modules = {}
359-
if pathlib:
361+
if use_pathlib:
362+
mod_name = 'pathlib2' if pathlib2 is not None else 'pathlib'
360363
self._fake_module_classes[
361-
'pathlib'] = fake_pathlib.FakePathlibModule
364+
mod_name] = fake_pathlib.FakePathlibModule
362365
self._fake_module_classes[
363-
'Path'] = fake_pathlib.FakePathlibPathModule
364-
mod_name = 'pathlib2' if pathlib2 is not None else 'pathlib'
366+
'Path'] = fake_pathlib.FakePathlibPathModule
365367
self._class_modules['Path'] = [mod_name]
366368
if use_scandir:
367369
self._fake_module_classes[

pyfakefs/fake_pathlib.py

+3
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@
4747
from pyfakefs.helpers import text_type
4848
from pyfakefs.fake_filesystem import FakeFileOpen, FakeFilesystem
4949

50+
if pathlib is None:
51+
pathlib = pathlib2
52+
5053

5154
def init_module(filesystem):
5255
"""Initializes the fake module with the fake file system."""

pyfakefs/tests/all_tests_without_extra_packages.py

+12-3
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,25 @@
2121
from pyfakefs import extra_packages
2222

2323
if extra_packages.pathlib2:
24-
extra_packages.pathlib = None
2524
extra_packages.pathlib2 = None
25+
try:
26+
import pathlib
27+
except ImportError:
28+
pathlib = None
29+
extra_packages.pathlib = pathlib
30+
extra_packages.use_pathlib = pathlib
2631

2732
if extra_packages.use_scandir_package:
28-
extra_packages.use_scandir = False
2933
extra_packages.use_scandir_package = False
34+
try:
35+
from os import scandir
36+
except ImportError:
37+
scandir = None
38+
extra_packages.scandir = scandir
39+
extra_packages.use_scandir = scandir
3040

3141
from pyfakefs.tests.all_tests import AllTests # noqa: E402
3242

33-
3443
if __name__ == '__main__':
3544
result = unittest.TextTestRunner(verbosity=2).run(AllTests().suite())
3645
sys.exit(int(not result.wasSuccessful()))

pyfakefs/tests/dynamic_patch_test.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,14 @@
1717
import unittest
1818

1919
from pyfakefs import fake_filesystem_unittest
20-
from pyfakefs.extra_packages import pathlib
20+
from pyfakefs.extra_packages import pathlib, pathlib2, use_pathlib
2121

2222

2323
class TestPyfakefsUnittestBase(fake_filesystem_unittest.TestCase):
2424
def setUp(self):
2525
"""Set up the fake file system"""
2626
self.setUpPyfakefs()
27+
self.pathlib = pathlib or pathlib2
2728

2829

2930
@unittest.skipIf((3, ) < sys.version_info < (3, 3),
@@ -61,21 +62,21 @@ def test_shutil_patch(self):
6162
self.fs.set_disk_usage(100)
6263
self.assertEqual(100, shutil.disk_usage('/').total)
6364

64-
@unittest.skipIf(not pathlib, 'only run if pathlib is available')
65+
@unittest.skipIf(not use_pathlib, 'only run if pathlib is available')
6566
def test_pathlib_patch(self):
6667
file_path = 'test.txt'
67-
path = pathlib.Path(file_path)
68+
path = self.pathlib.Path(file_path)
6869
with path.open('w') as f:
6970
f.write('test')
7071

7172
self.assertTrue(self.fs.exists(file_path))
7273
file_object = self.fs.get_object(file_path)
7374
self.assertEqual('test', file_object.contents)
7475

75-
@unittest.skipIf(not pathlib, 'only run if pathlib is available')
76+
@unittest.skipIf(not use_pathlib, 'only run if pathlib is available')
7677
def test_pathlib_path_patch(self):
7778
file_path = 'test.txt'
78-
path = pathlib.Path(file_path)
79+
path = self.pathlib.Path(file_path)
7980
with path.open('w') as f:
8081
f.write('test')
8182

pyfakefs/tests/fake_filesystem_unittest_test.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
from unittest import TestCase
2929

3030
from pyfakefs import fake_filesystem_unittest, fake_filesystem
31-
from pyfakefs.extra_packages import pathlib
31+
from pyfakefs.extra_packages import pathlib, pathlib2, use_pathlib
3232
from pyfakefs.fake_filesystem_unittest import Patcher, Pause
3333
import pyfakefs.tests.import_as_example
3434
from pyfakefs.helpers import IS_PYPY, IS_PY2
@@ -125,9 +125,10 @@ def test_shutil(self):
125125
shutil.rmtree('/test/dir1')
126126
self.assertFalse(self.fs.exists('/test/dir1'))
127127

128-
@unittest.skipIf(not pathlib, "only run if pathlib is available")
128+
@unittest.skipIf(not use_pathlib, "only run if pathlib is available")
129129
def test_fakepathlib(self):
130-
with pathlib.Path('/fake_file.txt') as p:
130+
imported_pathlib = pathlib or pathlib2
131+
with imported_pathlib.Path('/fake_file.txt') as p:
131132
with p.open('w') as f:
132133
f.write('text')
133134
is_windows = sys.platform.startswith('win')

pyfakefs/tests/fake_pathlib_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def skip_if_pathlib_36_is_available():
5252
class RealPathlibTestCase(RealFsTestCase):
5353
def __init__(self, methodName='runTest'):
5454
super(RealPathlibTestCase, self).__init__(methodName)
55-
self.pathlib = pathlib
55+
self.pathlib = pathlib or pathlib2
5656
self.path = None
5757

5858
def setUp(self):

pyfakefs/tests/pytest/example.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,13 @@
1313
# Used as SUT for pytest_fixture_test.py
1414

1515
try:
16-
from pathlib import Path
16+
from pathlib2 import Path
1717

1818
EXAMPLE_FILE = Path('/test') / 'file'
19-
2019
except ImportError:
21-
EXAMPLE_FILE = None
20+
try:
21+
from pathlib import Path
22+
23+
EXAMPLE_FILE = Path('/test') / 'file'
24+
except ImportError:
25+
EXAMPLE_FILE = None

0 commit comments

Comments
 (0)