@@ -204,10 +204,35 @@ def test_own_path_module(self):
204
204
self .assertEqual (2 , path .floor (2.5 ))
205
205
206
206
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
+
207
231
class ReloadModuleTest (fake_filesystem_unittest .TestCase ):
208
232
"""Make sure that reloading a module allows patching of classes not
209
233
patched automatically.
210
234
"""
235
+
211
236
def setUp (self ):
212
237
"""Set up the fake file system"""
213
238
self .setUpPyfakefs (
@@ -220,6 +245,41 @@ def test_path_exists(self):
220
245
pyfakefs .tests .import_as_example .check_if_exists4 (file_path ))
221
246
222
247
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
+
223
283
class TestCopyOrAddRealFile (TestPyfakefsUnittestBase ):
224
284
"""Tests the `fake_filesystem_unittest.TestCase.copyRealFile()` method.
225
285
Note that `copyRealFile()` is deprecated in favor of
0 commit comments