summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2012-05-11 00:21:23 (GMT)
committerNed Deily <nad@acm.org>2012-05-11 00:21:23 (GMT)
commit5fddf866d8cbd03f400cce3958a9ca10b9095332 (patch)
tree0aff77af5b790c3a442a070592da83f4cfd0a355 /Lib
parent1682e5d74080d88109b3fc54e2ddfa762feb3e1d (diff)
downloadcpython-5fddf866d8cbd03f400cce3958a9ca10b9095332.zip
cpython-5fddf866d8cbd03f400cce3958a9ca10b9095332.tar.gz
cpython-5fddf866d8cbd03f400cce3958a9ca10b9095332.tar.bz2
Issue #14662: Prevent shutil failures on OS X when destination does not
support chflag operations. (Patch by Hynek Schlawack)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/shutil.py6
-rw-r--r--Lib/test/test_shutil.py30
2 files changed, 34 insertions, 2 deletions
diff --git a/Lib/shutil.py b/Lib/shutil.py
index d1b1af3..2d7a506 100644
--- a/Lib/shutil.py
+++ b/Lib/shutil.py
@@ -118,8 +118,10 @@ def copystat(src, dst):
try:
os.chflags(dst, st.st_flags)
except OSError as why:
- if (not hasattr(errno, 'EOPNOTSUPP') or
- why.errno != errno.EOPNOTSUPP):
+ for err in 'EOPNOTSUPP', 'ENOTSUP':
+ if hasattr(errno, err) and why.errno == getattr(errno, err):
+ break
+ else:
raise
def copy(src, dst):
diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py
index e2310e2..1a016b9 100644
--- a/Lib/test/test_shutil.py
+++ b/Lib/test/test_shutil.py
@@ -8,6 +8,7 @@ import stat
import os
import os.path
import functools
+import errno
from test import support
from test.support import TESTFN
from os.path import splitdrive
@@ -307,6 +308,35 @@ class TestShutil(unittest.TestCase):
finally:
shutil.rmtree(TESTFN, ignore_errors=True)
+ @unittest.skipUnless(hasattr(os, 'chflags') and
+ hasattr(errno, 'EOPNOTSUPP') and
+ hasattr(errno, 'ENOTSUP'),
+ "requires os.chflags, EOPNOTSUPP & ENOTSUP")
+ def test_copystat_handles_harmless_chflags_errors(self):
+ tmpdir = self.mkdtemp()
+ file1 = os.path.join(tmpdir, 'file1')
+ file2 = os.path.join(tmpdir, 'file2')
+ self.write_file(file1, 'xxx')
+ self.write_file(file2, 'xxx')
+
+ def make_chflags_raiser(err):
+ ex = OSError()
+
+ def _chflags_raiser(path, flags):
+ ex.errno = err
+ raise ex
+ return _chflags_raiser
+ old_chflags = os.chflags
+ try:
+ for err in errno.EOPNOTSUPP, errno.ENOTSUP:
+ os.chflags = make_chflags_raiser(err)
+ shutil.copystat(file1, file2)
+ # assert others errors break it
+ os.chflags = make_chflags_raiser(errno.EOPNOTSUPP + errno.ENOTSUP)
+ self.assertRaises(OSError, shutil.copystat, file1, file2)
+ finally:
+ os.chflags = old_chflags
+
@support.skip_unless_symlink
def test_dont_copy_file_onto_symlink_to_itself(self):
# bug 851123.