summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_shutil.py
diff options
context:
space:
mode:
authorHynek Schlawack <hs@ox.cx>2013-02-05 07:25:24 (GMT)
committerHynek Schlawack <hs@ox.cx>2013-02-05 07:25:24 (GMT)
commit4cd7b9c3e942b8afdbd41df16837fc09b5fb8993 (patch)
tree96425a840b98cbd0ff1fa76378bafdabfae438f1 /Lib/test/test_shutil.py
parent1f0044c473e8fb10b3f7ec7624b08a9ee44e642f (diff)
parent0beab058dd431a7c0d62cfc50d8503616e01fd17 (diff)
downloadcpython-4cd7b9c3e942b8afdbd41df16837fc09b5fb8993.zip
cpython-4cd7b9c3e942b8afdbd41df16837fc09b5fb8993.tar.gz
cpython-4cd7b9c3e942b8afdbd41df16837fc09b5fb8993.tar.bz2
#17076: Make copying of xattrs more permissive of missing FS support
Patch by Thomas Wouters.
Diffstat (limited to 'Lib/test/test_shutil.py')
-rw-r--r--Lib/test/test_shutil.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py
index 07d0ec9..5a78440 100644
--- a/Lib/test/test_shutil.py
+++ b/Lib/test/test_shutil.py
@@ -450,6 +450,17 @@ class TestShutil(unittest.TestCase):
self.assertIn('user.bar', os.listxattr(dst))
finally:
os.setxattr = orig_setxattr
+ # the source filesystem not supporting xattrs should be ok, too.
+ def _raise_on_src(fname, *, follow_symlinks=True):
+ if fname == src:
+ raise OSError(errno.ENOTSUP, 'Operation not supported')
+ return orig_listxattr(fname, follow_symlinks=follow_symlinks)
+ try:
+ orig_listxattr = os.listxattr
+ os.listxattr = _raise_on_src
+ shutil._copyxattr(src, dst)
+ finally:
+ os.listxattr = orig_listxattr
# test that shutil.copystat copies xattrs
src = os.path.join(tmp_dir, 'the_original')