Skip to content

Commit 6559ee4

Browse files
committed
Fixed usage of modules_to_patch parameter
- adapted example, as the usage has slightly changed (full module path is now needed) - fixes #450
1 parent 8067e56 commit 6559ee4

5 files changed

+72
-7
lines changed

CHANGES.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ The release versions are PyPi releases.
88
`st_uid` and `st_gid` in new files ([#449](../../issues/449))
99

1010
#### Fixes
11-
* fixed using `modules_to_patch` with modules without `dir()`
12-
([#450](../../issues/450))
11+
* fixed using `modules_to_patch` ([#450](../../issues/450))
1312
* fixed recursion error on unpickling the fake file system
1413
([#445](../../issues/445))
1514
* allow trailing path in `add_real_directory` ([#446](../../issues/446))

docs/usage.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ as in the following example:
183183
return getattr(self._locks_module, name)
184184
185185
186-
with Patcher(modules_to_patch={'locks': FakeLocks}):
186+
with Patcher(modules_to_patch={'django.core.files.locks': FakeLocks}):
187187
test_django_stuff()
188188
189189

pyfakefs/fake_filesystem_unittest.py

-4
Original file line numberDiff line numberDiff line change
@@ -333,10 +333,6 @@ def __init__(self, additional_skip_names=None,
333333

334334
if modules_to_patch is not None:
335335
for name, fake_module in modules_to_patch.items():
336-
if '.' in name:
337-
module_name, name = name.split('.')
338-
self._class_modules.setdefault(name, []).append(
339-
module_name)
340336
self._fake_module_classes[name] = fake_module
341337

342338
# handle patching function imported separately like

pyfakefs/tests/fake_filesystem_unittest_test.py

+60
Original file line numberDiff line numberDiff line change
@@ -204,10 +204,35 @@ def test_own_path_module(self):
204204
self.assertEqual(2, path.floor(2.5))
205205

206206

207+
class FailedPatchingTest(fake_filesystem_unittest.TestCase):
208+
"""Negative tests: make sure the tests for `modules_to_reload` and
209+
`modules_to_patch` fail if not providing the arguments.
210+
"""
211+
212+
def setUp(self):
213+
"""Set up the fake file system"""
214+
self.setUpPyfakefs()
215+
216+
@unittest.expectedFailure
217+
def test_system_stat(self):
218+
file_path = '/foo/bar'
219+
self.fs.create_file(file_path, contents=b'test')
220+
self.assertEqual(
221+
4, pyfakefs.tests.import_as_example.system_stat(file_path).st_size)
222+
223+
@unittest.expectedFailure
224+
def test_path_exists(self):
225+
file_path = '/foo/bar'
226+
self.fs.create_dir(file_path)
227+
self.assertTrue(
228+
pyfakefs.tests.import_as_example.check_if_exists4(file_path))
229+
230+
207231
class ReloadModuleTest(fake_filesystem_unittest.TestCase):
208232
"""Make sure that reloading a module allows patching of classes not
209233
patched automatically.
210234
"""
235+
211236
def setUp(self):
212237
"""Set up the fake file system"""
213238
self.setUpPyfakefs(
@@ -220,6 +245,41 @@ def test_path_exists(self):
220245
pyfakefs.tests.import_as_example.check_if_exists4(file_path))
221246

222247

248+
class FakeExampleModule(object):
249+
"""Used to patch a function that uses system-specific functions that
250+
cannot be patched automatically."""
251+
_orig_module = pyfakefs.tests.import_as_example
252+
253+
def __init__(self, fs):
254+
pass
255+
256+
def system_stat(self, filepath):
257+
return os.stat(filepath)
258+
259+
def __getattr__(self, name):
260+
"""Forwards any non-faked calls to the standard module."""
261+
return getattr(self._orig_module, name)
262+
263+
264+
class PatchModuleTest(fake_filesystem_unittest.TestCase):
265+
"""Make sure that reloading a module allows patching of classes not
266+
patched automatically.
267+
"""
268+
269+
def setUp(self):
270+
"""Set up the fake file system"""
271+
# self.setUpPyfakefs()
272+
self.setUpPyfakefs(
273+
modules_to_patch={
274+
'pyfakefs.tests.import_as_example': FakeExampleModule})
275+
276+
def test_system_stat(self):
277+
file_path = '/foo/bar'
278+
self.fs.create_file(file_path, contents=b'test')
279+
self.assertEqual(
280+
4, pyfakefs.tests.import_as_example.system_stat(file_path).st_size)
281+
282+
223283
class TestCopyOrAddRealFile(TestPyfakefsUnittestBase):
224284
"""Tests the `fake_filesystem_unittest.TestCase.copyRealFile()` method.
225285
Note that `copyRealFile()` is deprecated in favor of

pyfakefs/tests/import_as_example.py

+10
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
import os as my_os
2020
from os import stat
2121

22+
import sys
23+
2224
try:
2325
from pathlib import Path
2426
except ImportError:
@@ -57,3 +59,11 @@ def check_if_exists5(filepath):
5759
def file_stat(filepath):
5860
# tests patching `stat` imported from os
5961
return stat(filepath)
62+
63+
64+
def system_stat(filepath):
65+
if sys.platform == 'win32':
66+
from nt import stat as system_stat
67+
else:
68+
from posix import stat as system_stat
69+
return system_stat(filepath)

0 commit comments

Comments
 (0)