]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-21987: Fix TarFile.getmember getting a dir with a trailing slash (GH-30283)
authorandrei kulakov <andrei.avk@gmail.com>
Fri, 21 Jan 2022 07:40:32 +0000 (02:40 -0500)
committerGitHub <noreply@github.com>
Fri, 21 Jan 2022 07:40:32 +0000 (09:40 +0200)
Lib/tarfile.py
Lib/test/test_tarfile.py
Misc/NEWS.d/next/Library/2021-12-28-11-55-10.bpo-21987.avBK-p.rst [new file with mode: 0644]

index c1ee1222e09b5af9e76f024a5a16ff5037b9979b..e187da2b1994a6b65c3c73e851319135f5ce8cf8 100755 (executable)
@@ -1789,7 +1789,7 @@ class TarFile(object):
            than once in the archive, its last occurrence is assumed to be the
            most up-to-date version.
         """
-        tarinfo = self._getmember(name)
+        tarinfo = self._getmember(name.rstrip('/'))
         if tarinfo is None:
             raise KeyError("filename %r not found" % name)
         return tarinfo
index e4b5c52bf1eaf4ae8039d3369c76574c46a49c58..1357df57eb1797d9789cede9500efbdff4bb35a2 100644 (file)
@@ -220,6 +220,25 @@ class UstarReadTest(ReadTest, unittest.TestCase):
     def test_issue14160(self):
         self._test_fileobj_link("symtype2", "ustar/regtype")
 
+    def test_add_dir_getmember(self):
+        # bpo-21987
+        self.add_dir_and_getmember('bar')
+        self.add_dir_and_getmember('a'*101)
+
+    def add_dir_and_getmember(self, name):
+        with os_helper.temp_cwd():
+            with tarfile.open(tmpname, 'w') as tar:
+                try:
+                    os.mkdir(name)
+                    tar.add(name)
+                finally:
+                    os.rmdir(name)
+            with tarfile.open(tmpname) as tar:
+                self.assertEqual(
+                    tar.getmember(name),
+                    tar.getmember(name + '/')
+                )
+
 class GzipUstarReadTest(GzipTest, UstarReadTest):
     pass
 
diff --git a/Misc/NEWS.d/next/Library/2021-12-28-11-55-10.bpo-21987.avBK-p.rst b/Misc/NEWS.d/next/Library/2021-12-28-11-55-10.bpo-21987.avBK-p.rst
new file mode 100644 (file)
index 0000000..305dd16
--- /dev/null
@@ -0,0 +1,2 @@
+Fix an issue with :meth:`tarfile.TarFile.getmember` getting a directory name
+with a trailing slash.