aboutsummaryrefslogtreecommitdiff
path: root/pyfakefs/tests/fake_filesystem_shutil_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyfakefs/tests/fake_filesystem_shutil_test.py')
-rw-r--r--pyfakefs/tests/fake_filesystem_shutil_test.py257
1 files changed, 140 insertions, 117 deletions
diff --git a/pyfakefs/tests/fake_filesystem_shutil_test.py b/pyfakefs/tests/fake_filesystem_shutil_test.py
index 5861e63..83d4672 100644
--- a/pyfakefs/tests/fake_filesystem_shutil_test.py
+++ b/pyfakefs/tests/fake_filesystem_shutil_test.py
@@ -22,23 +22,24 @@ import shutil
import sys
import tempfile
import unittest
+from pathlib import Path
from pyfakefs import fake_filesystem_unittest
-from pyfakefs.fake_filesystem import is_root, set_uid, USER_ID
+from pyfakefs.helpers import get_uid, set_uid, is_root, IS_PYPY
from pyfakefs.tests.test_utils import RealFsTestMixin
-is_windows = sys.platform == 'win32'
+is_windows = sys.platform == "win32"
class RealFsTestCase(fake_filesystem_unittest.TestCase, RealFsTestMixin):
- def __init__(self, methodName='runTest'):
+ def __init__(self, methodName="runTest"):
fake_filesystem_unittest.TestCase.__init__(self, methodName)
RealFsTestMixin.__init__(self)
def setUp(self):
RealFsTestMixin.setUp(self)
self.cwd = os.getcwd()
- self.uid = USER_ID
+ self.uid = get_uid()
set_uid(1000)
if not self.use_real_fs():
self.setUpPyfakefs()
@@ -55,32 +56,32 @@ class RealFsTestCase(fake_filesystem_unittest.TestCase, RealFsTestMixin):
@property
def is_windows_fs(self):
if self.use_real_fs():
- return sys.platform == 'win32'
+ return sys.platform == "win32"
return self.filesystem.is_windows_fs
class FakeShutilModuleTest(RealFsTestCase):
- @unittest.skipIf(is_windows, 'Posix specific behavior')
+ @unittest.skipIf(is_windows, "Posix specific behavior")
def test_catch_permission_error(self):
- root_path = self.make_path('rootpath')
+ root_path = self.make_path("rootpath")
self.create_dir(root_path)
- dir1_path = self.os.path.join(root_path, 'dir1')
- dir2_path = self.os.path.join(root_path, 'dir2')
+ dir1_path = self.os.path.join(root_path, "dir1")
+ dir2_path = self.os.path.join(root_path, "dir2")
self.create_dir(dir1_path)
self.os.chmod(dir1_path, 0o555) # remove write permissions
self.create_dir(dir2_path)
- old_file_path = self.os.path.join(dir2_path, 'f1.txt')
- new_file_path = self.os.path.join(dir1_path, 'f1.txt')
+ old_file_path = self.os.path.join(dir2_path, "f1.txt")
+ new_file_path = self.os.path.join(dir1_path, "f1.txt")
self.create_file(old_file_path)
with self.assertRaises(PermissionError):
shutil.move(old_file_path, new_file_path)
def test_rmtree(self):
- directory = self.make_path('xyzzy')
- dir_path = os.path.join(directory, 'subdir')
+ directory = self.make_path("xyzzy")
+ dir_path = os.path.join(directory, "subdir")
self.create_dir(dir_path)
- file_path = os.path.join(directory, 'subfile')
+ file_path = os.path.join(directory, "subfile")
self.create_file(file_path)
self.assertTrue(os.path.exists(directory))
shutil.rmtree(directory)
@@ -89,22 +90,22 @@ class FakeShutilModuleTest(RealFsTestCase):
self.assertFalse(os.path.exists(file_path))
def test_rmtree_with_trailing_slash(self):
- directory = self.make_path('xyzzy')
- dir_path = os.path.join(directory, 'subdir')
+ directory = self.make_path("xyzzy")
+ dir_path = os.path.join(directory, "subdir")
self.create_dir(dir_path)
- file_path = os.path.join(directory, 'subfile')
+ file_path = os.path.join(directory, "subfile")
self.create_file(file_path)
- shutil.rmtree(directory + '/')
+ shutil.rmtree(directory + "/")
self.assertFalse(os.path.exists(directory))
self.assertFalse(os.path.exists(dir_path))
self.assertFalse(os.path.exists(file_path))
- @unittest.skipIf(not is_windows, 'Windows specific behavior')
+ @unittest.skipIf(not is_windows, "Windows specific behavior")
def test_rmtree_without_permission_for_a_file_in_windows(self):
self.check_windows_only()
- dir_path = self.make_path('foo')
- self.create_file(os.path.join(dir_path, 'bar'))
- file_path = os.path.join(dir_path, 'baz')
+ dir_path = self.make_path("foo")
+ self.create_file(os.path.join(dir_path, "bar"))
+ file_path = os.path.join(dir_path, "baz")
self.create_file(file_path)
self.os.chmod(file_path, 0o444)
with self.assertRaises(OSError):
@@ -112,12 +113,12 @@ class FakeShutilModuleTest(RealFsTestCase):
self.assertTrue(os.path.exists(file_path))
self.os.chmod(file_path, 0o666)
- @unittest.skipIf(is_windows, 'Posix specific behavior')
+ @unittest.skipIf(is_windows, "Posix specific behavior")
def test_rmtree_without_permission_for_a_dir_in_posix(self):
self.check_posix_only()
- dir_path = self.make_path('foo')
- self.create_file(os.path.join(dir_path, 'bar'))
- file_path = os.path.join(dir_path, 'baz')
+ dir_path = self.make_path("foo")
+ self.create_file(os.path.join(dir_path, "bar"))
+ file_path = os.path.join(dir_path, "baz")
self.create_file(file_path)
self.os.chmod(dir_path, 0o555)
if not is_root():
@@ -129,23 +130,23 @@ class FakeShutilModuleTest(RealFsTestCase):
shutil.rmtree(dir_path)
self.assertFalse(os.path.exists(file_path))
- @unittest.skipIf(is_windows, 'Posix specific behavior')
+ @unittest.skipIf(is_windows, "Posix specific behavior")
def test_rmtree_with_open_file_posix(self):
self.check_posix_only()
- dir_path = self.make_path('foo')
- self.create_file(os.path.join(dir_path, 'bar'))
- file_path = os.path.join(dir_path, 'baz')
+ dir_path = self.make_path("foo")
+ self.create_file(os.path.join(dir_path, "bar"))
+ file_path = os.path.join(dir_path, "baz")
self.create_file(file_path)
with open(file_path):
shutil.rmtree(dir_path)
self.assertFalse(os.path.exists(file_path))
- @unittest.skipIf(not is_windows, 'Windows specific behavior')
+ @unittest.skipIf(not is_windows, "Windows specific behavior")
def test_rmtree_with_open_file_fails_under_windows(self):
self.check_windows_only()
- dir_path = self.make_path('foo')
- self.create_file(os.path.join(dir_path, 'bar'))
- file_path = os.path.join(dir_path, 'baz')
+ dir_path = self.make_path("foo")
+ self.create_file(os.path.join(dir_path, "bar"))
+ file_path = os.path.join(dir_path, "baz")
self.create_file(file_path)
with open(file_path):
with self.assertRaises(OSError):
@@ -153,13 +154,13 @@ class FakeShutilModuleTest(RealFsTestCase):
self.assertTrue(os.path.exists(dir_path))
def test_rmtree_non_existing_dir(self):
- directory = 'nonexisting'
+ directory = "nonexisting"
with self.assertRaises(OSError):
shutil.rmtree(directory)
try:
shutil.rmtree(directory, ignore_errors=True)
except OSError:
- self.fail('rmtree raised despite ignore_errors True')
+ self.fail("rmtree raised despite ignore_errors True")
def test_rmtree_non_existing_dir_with_handler(self):
class NonLocal:
@@ -169,30 +170,30 @@ class FakeShutilModuleTest(RealFsTestCase):
NonLocal.errorHandled = True
NonLocal.errorPath = path
- directory = self.make_path('nonexisting')
+ directory = self.make_path("nonexisting")
NonLocal.errorHandled = False
- NonLocal.errorPath = ''
+ NonLocal.errorPath = ""
try:
shutil.rmtree(directory, onerror=error_handler)
except OSError:
- self.fail('rmtree raised exception despite onerror defined')
+ self.fail("rmtree raised exception despite onerror defined")
self.assertTrue(NonLocal.errorHandled)
self.assertEqual(NonLocal.errorPath, directory)
NonLocal.errorHandled = False
- NonLocal.errorPath = ''
+ NonLocal.errorPath = ""
try:
shutil.rmtree(directory, ignore_errors=True, onerror=error_handler)
except OSError:
- self.fail('rmtree raised exception despite ignore_errors True')
+ self.fail("rmtree raised exception despite ignore_errors True")
# ignore_errors is True, so the onerror() error handler was
# not executed
self.assertFalse(NonLocal.errorHandled)
- self.assertEqual(NonLocal.errorPath, '')
+ self.assertEqual(NonLocal.errorPath, "")
def test_copy(self):
- src_file = self.make_path('xyzzy')
- dst_file = self.make_path('xyzzy_copy')
+ src_file = self.make_path("xyzzy")
+ dst_file = self.make_path("xyzzy_copy")
self.create_file(src_file)
os.chmod(src_file, 0o750)
self.assertTrue(os.path.exists(src_file))
@@ -202,9 +203,9 @@ class FakeShutilModuleTest(RealFsTestCase):
self.assertEqual(os.stat(src_file).st_mode, os.stat(dst_file).st_mode)
def test_copy_directory(self):
- src_file = self.make_path('xyzzy')
- parent_directory = self.make_path('parent')
- dst_file = os.path.join(parent_directory, 'xyzzy')
+ src_file = self.make_path("xyzzy")
+ parent_directory = self.make_path("parent")
+ dst_file = os.path.join(parent_directory, "xyzzy")
self.create_file(src_file)
self.create_dir(parent_directory)
os.chmod(src_file, 0o750)
@@ -216,10 +217,10 @@ class FakeShutilModuleTest(RealFsTestCase):
self.assertEqual(os.stat(src_file).st_mode, os.stat(dst_file).st_mode)
def test_copystat(self):
- src_file = self.make_path('xyzzy')
+ src_file = self.make_path("xyzzy")
self.create_file(src_file)
os.chmod(src_file, 0o750)
- dst_file = self.make_path('xyzzy_copy')
+ dst_file = self.make_path("xyzzy_copy")
self.create_file(dst_file)
self.assertTrue(os.path.exists(src_file))
self.assertTrue(os.path.exists(dst_file))
@@ -230,11 +231,23 @@ class FakeShutilModuleTest(RealFsTestCase):
self.assertAlmostEqual(src_stat.st_atime, dst_stat.st_atime, places=2)
self.assertAlmostEqual(src_stat.st_mtime, dst_stat.st_mtime, places=2)
+ @unittest.skipIf(IS_PYPY, "Functionality not supported in PyPy")
+ def test_copystat_symlinks(self):
+ """Regression test for #799"""
+ self.skip_if_symlink_not_supported()
+ f = self.make_path("xyzzy")
+ self.create_file(f)
+ sym1 = self.make_path("sym1")
+ sym2 = self.make_path("sym2")
+ self.create_symlink(sym1, f)
+ self.create_symlink(sym2, f)
+ shutil.copystat(sym1, sym2, follow_symlinks=False)
+
def test_copy2(self):
- src_file = self.make_path('xyzzy')
+ src_file = self.make_path("xyzzy")
self.create_file(src_file)
os.chmod(src_file, 0o750)
- dst_file = self.make_path('xyzzy_copy')
+ dst_file = self.make_path("xyzzy_copy")
self.assertTrue(os.path.exists(src_file))
self.assertFalse(os.path.exists(dst_file))
shutil.copy2(src_file, dst_file)
@@ -246,9 +259,9 @@ class FakeShutilModuleTest(RealFsTestCase):
self.assertAlmostEqual(src_stat.st_mtime, dst_stat.st_mtime, places=2)
def test_copy2_directory(self):
- src_file = self.make_path('xyzzy')
- parent_directory = self.make_path('parent')
- dst_file = os.path.join(parent_directory, 'xyzzy')
+ src_file = self.make_path("xyzzy")
+ parent_directory = self.make_path("parent")
+ dst_file = os.path.join(parent_directory, "xyzzy")
self.create_file(src_file)
self.create_dir(parent_directory)
os.chmod(src_file, 0o750)
@@ -264,21 +277,21 @@ class FakeShutilModuleTest(RealFsTestCase):
self.assertAlmostEqual(src_stat.st_mtime, dst_stat.st_mtime, places=2)
def test_copytree(self):
- src_directory = self.make_path('xyzzy')
- dst_directory = self.make_path('xyzzy_copy')
+ src_directory = self.make_path("xyzzy")
+ dst_directory = self.make_path("xyzzy_copy")
self.create_dir(src_directory)
- self.create_dir('%s/subdir' % src_directory)
- self.create_file(os.path.join(src_directory, 'subfile'))
+ self.create_dir("%s/subdir" % src_directory)
+ self.create_file(os.path.join(src_directory, "subfile"))
self.assertTrue(os.path.exists(src_directory))
self.assertFalse(os.path.exists(dst_directory))
shutil.copytree(src_directory, dst_directory)
self.assertTrue(os.path.exists(dst_directory))
- self.assertTrue(os.path.exists(os.path.join(dst_directory, 'subdir')))
- self.assertTrue(os.path.exists(os.path.join(dst_directory, 'subfile')))
+ self.assertTrue(os.path.exists(os.path.join(dst_directory, "subdir")))
+ self.assertTrue(os.path.exists(os.path.join(dst_directory, "subfile")))
def test_copytree_src_is_file(self):
- src_file = self.make_path('xyzzy')
- dst_directory = self.make_path('xyzzy_copy')
+ src_file = self.make_path("xyzzy")
+ dst_directory = self.make_path("xyzzy_copy")
self.create_file(src_file)
self.assertTrue(os.path.exists(src_file))
self.assertFalse(os.path.exists(dst_directory))
@@ -287,8 +300,8 @@ class FakeShutilModuleTest(RealFsTestCase):
def test_move_file_in_same_filesystem(self):
self.skip_real_fs()
- src_file = '/original_xyzzy'
- dst_file = '/moved_xyzzy'
+ src_file = "/original_xyzzy"
+ dst_file = "/moved_xyzzy"
src_object = self.fs.create_file(src_file)
src_ino = src_object.st_ino
src_dev = src_object.st_dev
@@ -307,8 +320,8 @@ class FakeShutilModuleTest(RealFsTestCase):
self.skip_real_fs()
mount_point = self.create_mount_point()
- src_file = self.make_path('original_xyzzy')
- dst_file = self.os.path.join(mount_point, 'moved_xyzzy')
+ src_file = self.make_path("original_xyzzy")
+ dst_file = self.os.path.join(mount_point, "moved_xyzzy")
src_object = self.fs.create_file(src_file)
src_ino = src_object.st_ino
src_dev = src_object.st_dev
@@ -322,9 +335,9 @@ class FakeShutilModuleTest(RealFsTestCase):
self.assertNotEqual(src_dev, dst_object.st_dev)
def test_move_file_into_directory(self):
- src_file = self.make_path('xyzzy')
- dst_directory = self.make_path('directory')
- dst_file = os.path.join(dst_directory, 'xyzzy')
+ src_file = self.make_path("xyzzy")
+ dst_directory = self.make_path("directory")
+ dst_file = os.path.join(dst_directory, "xyzzy")
self.create_file(src_file)
self.create_dir(dst_directory)
self.assertTrue(os.path.exists(src_file))
@@ -334,24 +347,23 @@ class FakeShutilModuleTest(RealFsTestCase):
self.assertFalse(os.path.exists(src_file))
def test_move_directory(self):
- src_directory = self.make_path('original_xyzzy')
- dst_directory = self.make_path('moved_xyzzy')
+ src_directory = self.make_path("original_xyzzy")
+ dst_directory = self.make_path("moved_xyzzy")
self.create_dir(src_directory)
- self.create_file(os.path.join(src_directory, 'subfile'))
- self.create_dir(os.path.join(src_directory, 'subdir'))
+ self.create_file(os.path.join(src_directory, "subfile"))
+ self.create_dir(os.path.join(src_directory, "subdir"))
self.assertTrue(os.path.exists(src_directory))
self.assertFalse(os.path.exists(dst_directory))
shutil.move(src_directory, dst_directory)
self.assertTrue(os.path.exists(dst_directory))
- self.assertTrue(os.path.exists(os.path.join(dst_directory, 'subfile')))
- self.assertTrue(os.path.exists(os.path.join(dst_directory, 'subdir')))
+ self.assertTrue(os.path.exists(os.path.join(dst_directory, "subfile")))
+ self.assertTrue(os.path.exists(os.path.join(dst_directory, "subdir")))
self.assertFalse(os.path.exists(src_directory))
def test_disk_usage(self):
self.skip_real_fs()
- file_path = self.make_path('foo', 'bar')
+ file_path = self.make_path("foo", "bar")
self.fs.create_file(file_path, st_size=400)
- # root = self.os.path.splitdrive(file_path)[0] + self.fs.path_separator
disk_usage = shutil.disk_usage(file_path)
self.assertEqual(1000, disk_usage.total)
self.assertEqual(400, disk_usage.used)
@@ -359,14 +371,25 @@ class FakeShutilModuleTest(RealFsTestCase):
self.assertEqual((1000, 400, 600), disk_usage)
mount_point = self.create_mount_point()
- dir_path = self.os.path.join(mount_point, 'foo')
- file_path = self.os.path.join(dir_path, 'bar')
+ dir_path = self.os.path.join(mount_point, "foo")
+ file_path = self.os.path.join(dir_path, "bar")
self.fs.create_file(file_path, st_size=400)
disk_usage = shutil.disk_usage(dir_path)
self.assertEqual((500, 400, 100), disk_usage)
+ def test_disk_usage_with_path(self):
+ self.skip_real_fs()
+ file_path = self.make_path("foo", "bar")
+ self.fs.create_file(file_path, st_size=400)
+ path = Path(file_path)
+ disk_usage = shutil.disk_usage(path)
+ self.assertEqual(1000, disk_usage.total)
+ self.assertEqual(400, disk_usage.used)
+ self.assertEqual(600, disk_usage.free)
+ self.assertEqual((1000, 400, 600), disk_usage)
+
def create_mount_point(self):
- mount_point = 'M:' if self.is_windows_fs else '/mount'
+ mount_point = "M:" if self.is_windows_fs else "/mount"
self.fs.add_mount_point(mount_point, total_size=500)
return mount_point
@@ -381,9 +404,9 @@ class FakeCopyFileTest(RealFsTestCase):
super(FakeCopyFileTest, self).tearDown()
def test_common_case(self):
- src_file = self.make_path('xyzzy')
- dst_file = self.make_path('xyzzy_copy')
- contents = 'contents of file'
+ src_file = self.make_path("xyzzy")
+ dst_file = self.make_path("xyzzy_copy")
+ contents = "contents of file"
self.create_file(src_file, contents=contents)
self.assertTrue(os.path.exists(src_file))
self.assertFalse(os.path.exists(dst_file))
@@ -392,9 +415,9 @@ class FakeCopyFileTest(RealFsTestCase):
self.check_contents(dst_file, contents)
def test_raises_if_source_and_dest_are_the_same_file(self):
- src_file = self.make_path('xyzzy')
+ src_file = self.make_path("xyzzy")
dst_file = src_file
- contents = 'contents of file'
+ contents = "contents of file"
self.create_file(src_file, contents=contents)
self.assertTrue(os.path.exists(src_file))
with self.assertRaises(shutil.Error):
@@ -402,9 +425,9 @@ class FakeCopyFileTest(RealFsTestCase):
def test_raises_if_dest_is_a_symlink_to_src(self):
self.skip_if_symlink_not_supported()
- src_file = self.make_path('foo')
- dst_file = self.make_path('bar')
- contents = 'contents of file'
+ src_file = self.make_path("foo")
+ dst_file = self.make_path("bar")
+ contents = "contents of file"
self.create_file(src_file, contents=contents)
self.create_symlink(dst_file, src_file)
self.assertTrue(os.path.exists(src_file))
@@ -412,10 +435,10 @@ class FakeCopyFileTest(RealFsTestCase):
shutil.copyfile(src_file, dst_file)
def test_succeeds_if_dest_exists_and_is_writable(self):
- src_file = self.make_path('xyzzy')
- dst_file = self.make_path('xyzzy_copy')
- src_contents = 'contents of source file'
- dst_contents = 'contents of dest file'
+ src_file = self.make_path("xyzzy")
+ dst_file = self.make_path("xyzzy_copy")
+ src_contents = "contents of source file"
+ dst_contents = "contents of dest file"
self.create_file(src_file, contents=src_contents)
self.create_file(dst_file, contents=dst_contents)
self.assertTrue(os.path.exists(src_file))
@@ -425,10 +448,10 @@ class FakeCopyFileTest(RealFsTestCase):
self.check_contents(dst_file, src_contents)
def test_raises_if_dest_exists_and_is_not_writable(self):
- src_file = self.make_path('xyzzy')
- dst_file = self.make_path('xyzzy_copy')
- src_contents = 'contents of source file'
- dst_contents = 'contents of dest file'
+ src_file = self.make_path("xyzzy")
+ dst_file = self.make_path("xyzzy_copy")
+ src_contents = "contents of source file"
+ dst_contents = "contents of dest file"
self.create_file(src_file, contents=src_contents)
self.create_file(dst_file, contents=dst_contents)
os.chmod(dst_file, 0o400)
@@ -439,20 +462,20 @@ class FakeCopyFileTest(RealFsTestCase):
shutil.copyfile(src_file, dst_file)
self.assertTrue(self.os.path.exists(dst_file))
with self.open(dst_file) as f:
- self.assertEqual('contents of source file', f.read())
+ self.assertEqual("contents of source file", f.read())
else:
with self.assertRaises(OSError):
shutil.copyfile(src_file, dst_file)
os.chmod(dst_file, 0o666)
- @unittest.skipIf(is_windows, 'Posix specific behavior')
+ @unittest.skipIf(is_windows, "Posix specific behavior")
def test_raises_if_dest_dir_is_not_writable_under_posix(self):
self.check_posix_only()
- src_file = self.make_path('xyzzy')
- dst_dir = self.make_path('tmp', 'foo')
- dst_file = os.path.join(dst_dir, 'xyzzy')
- src_contents = 'contents of source file'
+ src_file = self.make_path("xyzzy")
+ dst_dir = self.make_path("tmp", "foo")
+ dst_file = os.path.join(dst_dir, "xyzzy")
+ src_contents = "contents of source file"
self.create_file(src_file, contents=src_contents)
self.create_dir(dst_dir)
os.chmod(dst_dir, 0o555)
@@ -467,18 +490,18 @@ class FakeCopyFileTest(RealFsTestCase):
self.check_contents(dst_file, src_contents)
def test_raises_if_src_doesnt_exist(self):
- src_file = self.make_path('xyzzy')
- dst_file = self.make_path('xyzzy_copy')
+ src_file = self.make_path("xyzzy")
+ dst_file = self.make_path("xyzzy_copy")
self.assertFalse(os.path.exists(src_file))
with self.assertRaises(OSError):
shutil.copyfile(src_file, dst_file)
- @unittest.skipIf(is_windows, 'Posix specific behavior')
+ @unittest.skipIf(is_windows, "Posix specific behavior")
def test_raises_if_src_not_readable(self):
self.check_posix_only()
- src_file = self.make_path('xyzzy')
- dst_file = self.make_path('xyzzy_copy')
- src_contents = 'contents of source file'
+ src_file = self.make_path("xyzzy")
+ dst_file = self.make_path("xyzzy_copy")
+ src_contents = "contents of source file"
self.create_file(src_file, contents=src_contents)
os.chmod(src_file, 0o000)
self.assertTrue(os.path.exists(src_file))
@@ -491,17 +514,17 @@ class FakeCopyFileTest(RealFsTestCase):
self.check_contents(dst_file, src_contents)
def test_raises_if_src_is_a_directory(self):
- src_file = self.make_path('xyzzy')
- dst_file = self.make_path('xyzzy_copy')
+ src_file = self.make_path("xyzzy")
+ dst_file = self.make_path("xyzzy_copy")
self.create_dir(src_file)
self.assertTrue(os.path.exists(src_file))
with self.assertRaises(OSError):
shutil.copyfile(src_file, dst_file)
def test_raises_if_dest_is_a_directory(self):
- src_file = self.make_path('xyzzy')
- dst_dir = self.make_path('tmp', 'foo')
- src_contents = 'contents of source file'
+ src_file = self.make_path("xyzzy")
+ dst_dir = self.make_path("tmp", "foo")
+ src_contents = "contents of source file"
self.create_file(src_file, contents=src_contents)
self.create_dir(dst_dir)
self.assertTrue(os.path.exists(src_file))
@@ -513,9 +536,9 @@ class FakeCopyFileTest(RealFsTestCase):
# regression test for #515
source_dir = tempfile.mkdtemp()
target_dir = tempfile.mkdtemp()
- filename = 'foo.pdf'
- with open(os.path.join(source_dir, filename), 'wb') as fp:
- fp.write(b'stub')
+ filename = "foo.pdf"
+ with open(os.path.join(source_dir, filename), "wb") as fp:
+ fp.write(b"stub")
shutil.move(source_dir, target_dir)
shutil.rmtree(target_dir)
@@ -526,5 +549,5 @@ class RealCopyFileTest(FakeCopyFileTest):
return True
-if __name__ == '__main__':
+if __name__ == "__main__":
unittest.main()