blob: f22b908797dc31fb554a7b21b7a6a6e6c507101f [file] [log] [blame]
Neal Norwitzb9ef4ae2003-01-05 23:19:43 +00001import sys
2import os
Lars Gustäbelb506dc32007-08-07 18:36:16 +00003import io
Neal Norwitzb9ef4ae2003-01-05 23:19:43 +00004import shutil
Guido van Rossuma8add0e2007-05-14 22:03:55 +00005from hashlib import md5
Neal Norwitzb9ef4ae2003-01-05 23:19:43 +00006
7import unittest
8import tarfile
9
Benjamin Petersonee8712c2008-05-20 21:35:26 +000010from test import support
Neal Norwitzb9ef4ae2003-01-05 23:19:43 +000011
12# Check for our compression modules.
13try:
14 import gzip
Serhiy Storchaka8b562922013-06-17 15:38:50 +030015except ImportError:
Neal Norwitzb9ef4ae2003-01-05 23:19:43 +000016 gzip = None
17try:
18 import bz2
19except ImportError:
20 bz2 = None
Lars Gustäbel0a9dd2f2011-12-10 20:38:14 +010021try:
22 import lzma
23except ImportError:
24 lzma = None
Neal Norwitzb9ef4ae2003-01-05 23:19:43 +000025
Guido van Rossumd8faa362007-04-27 19:54:29 +000026def md5sum(data):
Guido van Rossuma8add0e2007-05-14 22:03:55 +000027 return md5(data).hexdigest()
Guido van Rossumd8faa362007-04-27 19:54:29 +000028
Antoine Pitrouab58b5f2010-09-23 19:39:35 +000029TEMPDIR = os.path.abspath(support.TESTFN) + "-tardir"
Antoine Pitrou941ee882009-11-11 20:59:38 +000030tarname = support.findfile("testtar.tar")
Guido van Rossumd8faa362007-04-27 19:54:29 +000031gzipname = os.path.join(TEMPDIR, "testtar.tar.gz")
32bz2name = os.path.join(TEMPDIR, "testtar.tar.bz2")
Lars Gustäbel0a9dd2f2011-12-10 20:38:14 +010033xzname = os.path.join(TEMPDIR, "testtar.tar.xz")
Guido van Rossumd8faa362007-04-27 19:54:29 +000034tmpname = os.path.join(TEMPDIR, "tmp.tar")
Neal Norwitzb9ef4ae2003-01-05 23:19:43 +000035
Guido van Rossumd8faa362007-04-27 19:54:29 +000036md5_regtype = "65f477c818ad9e15f7feab0c6d37742f"
37md5_sparse = "a54fbc4ca4f4399a90e1b27164012fc6"
Neal Norwitzb9ef4ae2003-01-05 23:19:43 +000038
39
Serhiy Storchaka8b562922013-06-17 15:38:50 +030040class TarTest:
Guido van Rossumd8faa362007-04-27 19:54:29 +000041 tarname = tarname
Serhiy Storchaka8b562922013-06-17 15:38:50 +030042 suffix = ''
43 open = io.FileIO
Serhiy Storchaka53ad0cd2014-01-18 15:35:37 +020044 taropen = tarfile.TarFile.taropen
Serhiy Storchaka8b562922013-06-17 15:38:50 +030045
46 @property
47 def mode(self):
48 return self.prefix + self.suffix
49
50@support.requires_gzip
51class GzipTest:
52 tarname = gzipname
53 suffix = 'gz'
54 open = gzip.GzipFile if gzip else None
Serhiy Storchaka53ad0cd2014-01-18 15:35:37 +020055 taropen = tarfile.TarFile.gzopen
Serhiy Storchaka8b562922013-06-17 15:38:50 +030056
57@support.requires_bz2
58class Bz2Test:
59 tarname = bz2name
60 suffix = 'bz2'
61 open = bz2.BZ2File if bz2 else None
Serhiy Storchaka53ad0cd2014-01-18 15:35:37 +020062 taropen = tarfile.TarFile.bz2open
Serhiy Storchaka8b562922013-06-17 15:38:50 +030063
64@support.requires_lzma
65class LzmaTest:
66 tarname = xzname
67 suffix = 'xz'
68 open = lzma.LZMAFile if lzma else None
Serhiy Storchaka53ad0cd2014-01-18 15:35:37 +020069 taropen = tarfile.TarFile.xzopen
Serhiy Storchaka8b562922013-06-17 15:38:50 +030070
71
72class ReadTest(TarTest):
73
74 prefix = "r:"
Neal Norwitzb9ef4ae2003-01-05 23:19:43 +000075
76 def setUp(self):
Serhiy Storchaka8b562922013-06-17 15:38:50 +030077 self.tar = tarfile.open(self.tarname, mode=self.mode,
78 encoding="iso8859-1")
Neal Norwitzb9ef4ae2003-01-05 23:19:43 +000079
80 def tearDown(self):
81 self.tar.close()
82
Neal Norwitzb9ef4ae2003-01-05 23:19:43 +000083
Serhiy Storchaka8b562922013-06-17 15:38:50 +030084class UstarReadTest(ReadTest, unittest.TestCase):
Neal Norwitzb9ef4ae2003-01-05 23:19:43 +000085
Guido van Rossumd8faa362007-04-27 19:54:29 +000086 def test_fileobj_regular_file(self):
87 tarinfo = self.tar.getmember("ustar/regtype")
Lars Gustäbel7a919e92012-05-05 18:15:03 +020088 with self.tar.extractfile(tarinfo) as fobj:
Antoine Pitroue1eca4e2010-10-29 23:49:49 +000089 data = fobj.read()
Serhiy Storchaka8b562922013-06-17 15:38:50 +030090 self.assertEqual(len(data), tarinfo.size,
91 "regular file extraction failed")
92 self.assertEqual(md5sum(data), md5_regtype,
Antoine Pitroue1eca4e2010-10-29 23:49:49 +000093 "regular file extraction failed")
Neal Norwitzb9ef4ae2003-01-05 23:19:43 +000094
Guido van Rossumd8faa362007-04-27 19:54:29 +000095 def test_fileobj_readlines(self):
96 self.tar.extract("ustar/regtype", TEMPDIR)
97 tarinfo = self.tar.getmember("ustar/regtype")
Antoine Pitrou95f55602010-09-23 18:36:46 +000098 with open(os.path.join(TEMPDIR, "ustar/regtype"), "r") as fobj1:
99 lines1 = fobj1.readlines()
Neal Norwitzb9ef4ae2003-01-05 23:19:43 +0000100
Lars Gustäbel7a919e92012-05-05 18:15:03 +0200101 with self.tar.extractfile(tarinfo) as fobj:
Antoine Pitroue1eca4e2010-10-29 23:49:49 +0000102 fobj2 = io.TextIOWrapper(fobj)
103 lines2 = fobj2.readlines()
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300104 self.assertEqual(lines1, lines2,
Antoine Pitroue1eca4e2010-10-29 23:49:49 +0000105 "fileobj.readlines() failed")
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300106 self.assertEqual(len(lines2), 114,
Antoine Pitroue1eca4e2010-10-29 23:49:49 +0000107 "fileobj.readlines() failed")
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300108 self.assertEqual(lines2[83],
109 "I will gladly admit that Python is not the fastest "
110 "running scripting language.\n",
Antoine Pitroue1eca4e2010-10-29 23:49:49 +0000111 "fileobj.readlines() failed")
Neal Norwitzb9ef4ae2003-01-05 23:19:43 +0000112
Guido van Rossumd8faa362007-04-27 19:54:29 +0000113 def test_fileobj_iter(self):
114 self.tar.extract("ustar/regtype", TEMPDIR)
115 tarinfo = self.tar.getmember("ustar/regtype")
Victor Stinner4e86d5b2011-05-04 13:55:36 +0200116 with open(os.path.join(TEMPDIR, "ustar/regtype"), "r") as fobj1:
Antoine Pitrou95f55602010-09-23 18:36:46 +0000117 lines1 = fobj1.readlines()
Lars Gustäbel7a919e92012-05-05 18:15:03 +0200118 with self.tar.extractfile(tarinfo) as fobj2:
Antoine Pitroue1eca4e2010-10-29 23:49:49 +0000119 lines2 = list(io.TextIOWrapper(fobj2))
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300120 self.assertEqual(lines1, lines2,
121 "fileobj.__iter__() failed")
Martin v. Löwisdf241532005-03-03 08:17:42 +0000122
Guido van Rossumd8faa362007-04-27 19:54:29 +0000123 def test_fileobj_seek(self):
124 self.tar.extract("ustar/regtype", TEMPDIR)
Antoine Pitrou95f55602010-09-23 18:36:46 +0000125 with open(os.path.join(TEMPDIR, "ustar/regtype"), "rb") as fobj:
126 data = fobj.read()
Neal Norwitzf3396542005-10-28 05:52:22 +0000127
Guido van Rossumd8faa362007-04-27 19:54:29 +0000128 tarinfo = self.tar.getmember("ustar/regtype")
129 fobj = self.tar.extractfile(tarinfo)
130
131 text = fobj.read()
132 fobj.seek(0)
Guido van Rossume61fd5b2007-07-11 12:20:59 +0000133 self.assertEqual(0, fobj.tell(),
Guido van Rossumd8faa362007-04-27 19:54:29 +0000134 "seek() to file's start failed")
135 fobj.seek(2048, 0)
Guido van Rossume61fd5b2007-07-11 12:20:59 +0000136 self.assertEqual(2048, fobj.tell(),
Guido van Rossumd8faa362007-04-27 19:54:29 +0000137 "seek() to absolute position failed")
138 fobj.seek(-1024, 1)
Guido van Rossume61fd5b2007-07-11 12:20:59 +0000139 self.assertEqual(1024, fobj.tell(),
Guido van Rossumd8faa362007-04-27 19:54:29 +0000140 "seek() to negative relative position failed")
141 fobj.seek(1024, 1)
Guido van Rossume61fd5b2007-07-11 12:20:59 +0000142 self.assertEqual(2048, fobj.tell(),
Guido van Rossumd8faa362007-04-27 19:54:29 +0000143 "seek() to positive relative position failed")
144 s = fobj.read(10)
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300145 self.assertEqual(s, data[2048:2058],
Guido van Rossumd8faa362007-04-27 19:54:29 +0000146 "read() after seek failed")
147 fobj.seek(0, 2)
Guido van Rossume61fd5b2007-07-11 12:20:59 +0000148 self.assertEqual(tarinfo.size, fobj.tell(),
Guido van Rossumd8faa362007-04-27 19:54:29 +0000149 "seek() to file's end failed")
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300150 self.assertEqual(fobj.read(), b"",
Guido van Rossumd8faa362007-04-27 19:54:29 +0000151 "read() at file's end did not return empty string")
152 fobj.seek(-tarinfo.size, 2)
Guido van Rossume61fd5b2007-07-11 12:20:59 +0000153 self.assertEqual(0, fobj.tell(),
Lars Gustäbelb506dc32007-08-07 18:36:16 +0000154 "relative seek() to file's end failed")
Guido van Rossumd8faa362007-04-27 19:54:29 +0000155 fobj.seek(512)
156 s1 = fobj.readlines()
157 fobj.seek(512)
158 s2 = fobj.readlines()
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300159 self.assertEqual(s1, s2,
Guido van Rossumd8faa362007-04-27 19:54:29 +0000160 "readlines() after seek failed")
161 fobj.seek(0)
Guido van Rossume61fd5b2007-07-11 12:20:59 +0000162 self.assertEqual(len(fobj.readline()), fobj.tell(),
Guido van Rossumd8faa362007-04-27 19:54:29 +0000163 "tell() after readline() failed")
164 fobj.seek(512)
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300165 self.assertEqual(len(fobj.readline()) + 512, fobj.tell(),
Guido van Rossumd8faa362007-04-27 19:54:29 +0000166 "tell() after seek() and readline() failed")
167 fobj.seek(0)
168 line = fobj.readline()
Guido van Rossume61fd5b2007-07-11 12:20:59 +0000169 self.assertEqual(fobj.read(), data[len(line):],
Guido van Rossumd8faa362007-04-27 19:54:29 +0000170 "read() after readline() failed")
171 fobj.close()
172
Lars Gustäbel7a919e92012-05-05 18:15:03 +0200173 def test_fileobj_text(self):
174 with self.tar.extractfile("ustar/regtype") as fobj:
175 fobj = io.TextIOWrapper(fobj)
176 data = fobj.read().encode("iso8859-1")
177 self.assertEqual(md5sum(data), md5_regtype)
178 try:
179 fobj.seek(100)
180 except AttributeError:
181 # Issue #13815: seek() complained about a missing
182 # flush() method.
183 self.fail("seeking failed in text mode")
184
Lars Gustäbel1b512722010-06-03 12:45:16 +0000185 # Test if symbolic and hard links are resolved by extractfile(). The
186 # test link members each point to a regular member whose data is
187 # supposed to be exported.
188 def _test_fileobj_link(self, lnktype, regtype):
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300189 with self.tar.extractfile(lnktype) as a, \
190 self.tar.extractfile(regtype) as b:
Antoine Pitroue1eca4e2010-10-29 23:49:49 +0000191 self.assertEqual(a.name, b.name)
Lars Gustäbel1b512722010-06-03 12:45:16 +0000192
193 def test_fileobj_link1(self):
194 self._test_fileobj_link("ustar/lnktype", "ustar/regtype")
195
196 def test_fileobj_link2(self):
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300197 self._test_fileobj_link("./ustar/linktest2/lnktype",
198 "ustar/linktest1/regtype")
Lars Gustäbel1b512722010-06-03 12:45:16 +0000199
200 def test_fileobj_symlink1(self):
201 self._test_fileobj_link("ustar/symtype", "ustar/regtype")
202
203 def test_fileobj_symlink2(self):
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300204 self._test_fileobj_link("./ustar/linktest2/symtype",
205 "ustar/linktest1/regtype")
Lars Gustäbel1b512722010-06-03 12:45:16 +0000206
Lars Gustäbel1ef9eda2012-04-24 21:04:40 +0200207 def test_issue14160(self):
208 self._test_fileobj_link("symtype2", "ustar/regtype")
209
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300210class GzipUstarReadTest(GzipTest, UstarReadTest):
211 pass
212
213class Bz2UstarReadTest(Bz2Test, UstarReadTest):
214 pass
215
216class LzmaUstarReadTest(LzmaTest, UstarReadTest):
217 pass
218
Guido van Rossumd8faa362007-04-27 19:54:29 +0000219
Lars Gustäbel9520a432009-11-22 18:48:49 +0000220class CommonReadTest(ReadTest):
221
222 def test_empty_tarfile(self):
223 # Test for issue6123: Allow opening empty archives.
224 # This test checks if tarfile.open() is able to open an empty tar
225 # archive successfully. Note that an empty tar archive is not the
226 # same as an empty file!
Antoine Pitrou95f55602010-09-23 18:36:46 +0000227 with tarfile.open(tmpname, self.mode.replace("r", "w")):
228 pass
Lars Gustäbel9520a432009-11-22 18:48:49 +0000229 try:
230 tar = tarfile.open(tmpname, self.mode)
231 tar.getnames()
232 except tarfile.ReadError:
233 self.fail("tarfile.open() failed on empty archive")
Antoine Pitrou95f55602010-09-23 18:36:46 +0000234 else:
235 self.assertListEqual(tar.getmembers(), [])
236 finally:
237 tar.close()
Lars Gustäbel9520a432009-11-22 18:48:49 +0000238
Serhiy Storchaka2a3d7d12014-01-13 19:07:33 +0200239 def test_non_existent_tarfile(self):
240 # Test for issue11513: prevent non-existent gzipped tarfiles raising
241 # multiple exceptions.
242 with self.assertRaisesRegex(FileNotFoundError, "xxx"):
243 tarfile.open("xxx", self.mode)
244
Lars Gustäbel9520a432009-11-22 18:48:49 +0000245 def test_null_tarfile(self):
246 # Test for issue6123: Allow opening empty archives.
247 # This test guarantees that tarfile.open() does not treat an empty
248 # file as an empty tar archive.
Antoine Pitrou95f55602010-09-23 18:36:46 +0000249 with open(tmpname, "wb"):
250 pass
Lars Gustäbel9520a432009-11-22 18:48:49 +0000251 self.assertRaises(tarfile.ReadError, tarfile.open, tmpname, self.mode)
252 self.assertRaises(tarfile.ReadError, tarfile.open, tmpname)
253
254 def test_ignore_zeros(self):
255 # Test TarFile's ignore_zeros option.
Lars Gustäbel9520a432009-11-22 18:48:49 +0000256 for char in (b'\0', b'a'):
257 # Test if EOFHeaderError ('\0') and InvalidHeaderError ('a')
258 # are ignored correctly.
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300259 with self.open(tmpname, "w") as fobj:
Antoine Pitrou95f55602010-09-23 18:36:46 +0000260 fobj.write(char * 1024)
261 fobj.write(tarfile.TarInfo("foo").tobuf())
Lars Gustäbel9520a432009-11-22 18:48:49 +0000262
263 tar = tarfile.open(tmpname, mode="r", ignore_zeros=True)
Antoine Pitrou95f55602010-09-23 18:36:46 +0000264 try:
265 self.assertListEqual(tar.getnames(), ["foo"],
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300266 "ignore_zeros=True should have skipped the %r-blocks" %
267 char)
Antoine Pitrou95f55602010-09-23 18:36:46 +0000268 finally:
269 tar.close()
Lars Gustäbel9520a432009-11-22 18:48:49 +0000270
271
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300272class MiscReadTestBase(CommonReadTest):
Thomas Woutersed03b412007-08-28 21:37:11 +0000273 def test_no_name_argument(self):
Antoine Pitrou95f55602010-09-23 18:36:46 +0000274 with open(self.tarname, "rb") as fobj:
275 tar = tarfile.open(fileobj=fobj, mode=self.mode)
276 self.assertEqual(tar.name, os.path.abspath(fobj.name))
Guido van Rossumd8faa362007-04-27 19:54:29 +0000277
Thomas Woutersed03b412007-08-28 21:37:11 +0000278 def test_no_name_attribute(self):
Antoine Pitrou95f55602010-09-23 18:36:46 +0000279 with open(self.tarname, "rb") as fobj:
280 data = fobj.read()
Thomas Woutersed03b412007-08-28 21:37:11 +0000281 fobj = io.BytesIO(data)
282 self.assertRaises(AttributeError, getattr, fobj, "name")
283 tar = tarfile.open(fileobj=fobj, mode=self.mode)
284 self.assertEqual(tar.name, None)
285
286 def test_empty_name_attribute(self):
Antoine Pitrou95f55602010-09-23 18:36:46 +0000287 with open(self.tarname, "rb") as fobj:
288 data = fobj.read()
Thomas Woutersed03b412007-08-28 21:37:11 +0000289 fobj = io.BytesIO(data)
290 fobj.name = ""
Antoine Pitroue1eca4e2010-10-29 23:49:49 +0000291 with tarfile.open(fileobj=fobj, mode=self.mode) as tar:
292 self.assertEqual(tar.name, None)
Thomas Woutersed03b412007-08-28 21:37:11 +0000293
Serhiy Storchaka53ad0cd2014-01-18 15:35:37 +0200294 def test_illegal_mode_arg(self):
295 with open(tmpname, 'wb'):
296 pass
297 with self.assertRaisesRegex(ValueError, 'mode must be '):
298 tar = self.taropen(tmpname, 'q')
299 with self.assertRaisesRegex(ValueError, 'mode must be '):
300 tar = self.taropen(tmpname, 'rw')
301 with self.assertRaisesRegex(ValueError, 'mode must be '):
302 tar = self.taropen(tmpname, '')
303
Christian Heimesd8654cf2007-12-02 15:22:16 +0000304 def test_fileobj_with_offset(self):
305 # Skip the first member and store values from the second member
306 # of the testtar.
307 tar = tarfile.open(self.tarname, mode=self.mode)
Antoine Pitrou95f55602010-09-23 18:36:46 +0000308 try:
309 tar.next()
310 t = tar.next()
311 name = t.name
312 offset = t.offset
Lars Gustäbel7a919e92012-05-05 18:15:03 +0200313 with tar.extractfile(t) as f:
314 data = f.read()
Antoine Pitrou95f55602010-09-23 18:36:46 +0000315 finally:
316 tar.close()
Christian Heimesd8654cf2007-12-02 15:22:16 +0000317
318 # Open the testtar and seek to the offset of the second member.
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300319 with self.open(self.tarname) as fobj:
Antoine Pitrou95f55602010-09-23 18:36:46 +0000320 fobj.seek(offset)
Christian Heimesd8654cf2007-12-02 15:22:16 +0000321
Antoine Pitrou95f55602010-09-23 18:36:46 +0000322 # Test if the tarfile starts with the second member.
323 tar = tar.open(self.tarname, mode="r:", fileobj=fobj)
324 t = tar.next()
325 self.assertEqual(t.name, name)
326 # Read to the end of fileobj and test if seeking back to the
327 # beginning works.
328 tar.getmembers()
329 self.assertEqual(tar.extractfile(t).read(), data,
330 "seek back did not work")
331 tar.close()
Christian Heimesd8654cf2007-12-02 15:22:16 +0000332
Guido van Rossumd8faa362007-04-27 19:54:29 +0000333 def test_fail_comp(self):
334 # For Gzip and Bz2 Tests: fail with a ReadError on an uncompressed file.
Guido van Rossumd8faa362007-04-27 19:54:29 +0000335 self.assertRaises(tarfile.ReadError, tarfile.open, tarname, self.mode)
Antoine Pitrou95f55602010-09-23 18:36:46 +0000336 with open(tarname, "rb") as fobj:
337 self.assertRaises(tarfile.ReadError, tarfile.open,
338 fileobj=fobj, mode=self.mode)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000339
340 def test_v7_dirtype(self):
341 # Test old style dirtype member (bug #1336623):
342 # Old V7 tars create directory members using an AREGTYPE
343 # header with a "/" appended to the filename field.
344 tarinfo = self.tar.getmember("misc/dirtype-old-v7")
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300345 self.assertEqual(tarinfo.type, tarfile.DIRTYPE,
Guido van Rossumd8faa362007-04-27 19:54:29 +0000346 "v7 dirtype failed")
347
Christian Heimes126d29a2008-02-11 22:57:17 +0000348 def test_xstar_type(self):
349 # The xstar format stores extra atime and ctime fields inside the
350 # space reserved for the prefix field. The prefix field must be
351 # ignored in this case, otherwise it will mess up the name.
352 try:
353 self.tar.getmember("misc/regtype-xstar")
354 except KeyError:
355 self.fail("failed to find misc/regtype-xstar (mangled prefix?)")
356
Guido van Rossumd8faa362007-04-27 19:54:29 +0000357 def test_check_members(self):
358 for tarinfo in self.tar:
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300359 self.assertEqual(int(tarinfo.mtime), 0o7606136617,
Guido van Rossumd8faa362007-04-27 19:54:29 +0000360 "wrong mtime for %s" % tarinfo.name)
361 if not tarinfo.name.startswith("ustar/"):
362 continue
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300363 self.assertEqual(tarinfo.uname, "tarfile",
Guido van Rossumd8faa362007-04-27 19:54:29 +0000364 "wrong uname for %s" % tarinfo.name)
365
366 def test_find_members(self):
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300367 self.assertEqual(self.tar.getmembers()[-1].name, "misc/eof",
Guido van Rossumd8faa362007-04-27 19:54:29 +0000368 "could not find all members")
369
Brian Curtin74e45612010-07-09 15:58:59 +0000370 @unittest.skipUnless(hasattr(os, "link"),
371 "Missing hardlink implementation")
Brian Curtin3b4499c2010-12-28 14:31:47 +0000372 @support.skip_unless_symlink
Guido van Rossumd8faa362007-04-27 19:54:29 +0000373 def test_extract_hardlink(self):
374 # Test hardlink extraction (e.g. bug #857297).
Serhiy Storchaka88339c42012-12-30 20:16:30 +0200375 with tarfile.open(tarname, errorlevel=1, encoding="iso8859-1") as tar:
Antoine Pitrou95f55602010-09-23 18:36:46 +0000376 tar.extract("ustar/regtype", TEMPDIR)
Serhiy Storchaka88339c42012-12-30 20:16:30 +0200377 self.addCleanup(os.remove, os.path.join(TEMPDIR, "ustar/regtype"))
Neal Norwitzf3396542005-10-28 05:52:22 +0000378
Serhiy Storchaka88339c42012-12-30 20:16:30 +0200379 tar.extract("ustar/lnktype", TEMPDIR)
380 self.addCleanup(os.remove, os.path.join(TEMPDIR, "ustar/lnktype"))
Antoine Pitroue1eca4e2010-10-29 23:49:49 +0000381 with open(os.path.join(TEMPDIR, "ustar/lnktype"), "rb") as f:
382 data = f.read()
Antoine Pitrou95f55602010-09-23 18:36:46 +0000383 self.assertEqual(md5sum(data), md5_regtype)
Neal Norwitzf3396542005-10-28 05:52:22 +0000384
Serhiy Storchaka88339c42012-12-30 20:16:30 +0200385 tar.extract("ustar/symtype", TEMPDIR)
386 self.addCleanup(os.remove, os.path.join(TEMPDIR, "ustar/symtype"))
Antoine Pitroue1eca4e2010-10-29 23:49:49 +0000387 with open(os.path.join(TEMPDIR, "ustar/symtype"), "rb") as f:
388 data = f.read()
Antoine Pitrou95f55602010-09-23 18:36:46 +0000389 self.assertEqual(md5sum(data), md5_regtype)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000390
Christian Heimesfaf2f632008-01-06 16:59:19 +0000391 def test_extractall(self):
392 # Test if extractall() correctly restores directory permissions
393 # and times (see issue1735).
Christian Heimesfaf2f632008-01-06 16:59:19 +0000394 tar = tarfile.open(tarname, encoding="iso8859-1")
Martin v. Löwisbe647e22010-11-01 22:08:46 +0000395 DIR = os.path.join(TEMPDIR, "extractall")
396 os.mkdir(DIR)
Antoine Pitrou95f55602010-09-23 18:36:46 +0000397 try:
398 directories = [t for t in tar if t.isdir()]
Martin v. Löwisbe647e22010-11-01 22:08:46 +0000399 tar.extractall(DIR, directories)
Antoine Pitrou95f55602010-09-23 18:36:46 +0000400 for tarinfo in directories:
Martin v. Löwisbe647e22010-11-01 22:08:46 +0000401 path = os.path.join(DIR, tarinfo.name)
Antoine Pitrou95f55602010-09-23 18:36:46 +0000402 if sys.platform != "win32":
403 # Win32 has no support for fine grained permissions.
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300404 self.assertEqual(tarinfo.mode & 0o777,
405 os.stat(path).st_mode & 0o777)
Victor Stinner26bfb5a2010-10-29 10:59:08 +0000406 def format_mtime(mtime):
407 if isinstance(mtime, float):
408 return "{} ({})".format(mtime, mtime.hex())
409 else:
410 return "{!r} (int)".format(mtime)
Victor Stinner14d8fe72010-10-29 11:02:06 +0000411 file_mtime = os.path.getmtime(path)
Victor Stinner26bfb5a2010-10-29 10:59:08 +0000412 errmsg = "tar mtime {0} != file time {1} of path {2!a}".format(
413 format_mtime(tarinfo.mtime),
414 format_mtime(file_mtime),
415 path)
416 self.assertEqual(tarinfo.mtime, file_mtime, errmsg)
Antoine Pitrou95f55602010-09-23 18:36:46 +0000417 finally:
418 tar.close()
Martin v. Löwisbe647e22010-11-01 22:08:46 +0000419 shutil.rmtree(DIR)
Christian Heimesfaf2f632008-01-06 16:59:19 +0000420
Martin v. Löwis16f344d2010-11-01 21:39:13 +0000421 def test_extract_directory(self):
422 dirtype = "ustar/dirtype"
Martin v. Löwisbe647e22010-11-01 22:08:46 +0000423 DIR = os.path.join(TEMPDIR, "extractdir")
424 os.mkdir(DIR)
425 try:
426 with tarfile.open(tarname, encoding="iso8859-1") as tar:
427 tarinfo = tar.getmember(dirtype)
428 tar.extract(tarinfo, path=DIR)
429 extracted = os.path.join(DIR, dirtype)
430 self.assertEqual(os.path.getmtime(extracted), tarinfo.mtime)
431 if sys.platform != "win32":
432 self.assertEqual(os.stat(extracted).st_mode & 0o777, 0o755)
433 finally:
434 shutil.rmtree(DIR)
Martin v. Löwis16f344d2010-11-01 21:39:13 +0000435
Lars Gustäbelb7f09232009-11-23 15:48:33 +0000436 def test_init_close_fobj(self):
437 # Issue #7341: Close the internal file object in the TarFile
438 # constructor in case of an error. For the test we rely on
439 # the fact that opening an empty file raises a ReadError.
440 empty = os.path.join(TEMPDIR, "empty")
Antoine Pitrou95f55602010-09-23 18:36:46 +0000441 with open(empty, "wb") as fobj:
442 fobj.write(b"")
Lars Gustäbelb7f09232009-11-23 15:48:33 +0000443
444 try:
445 tar = object.__new__(tarfile.TarFile)
446 try:
447 tar.__init__(empty)
448 except tarfile.ReadError:
449 self.assertTrue(tar.fileobj.closed)
450 else:
451 self.fail("ReadError not raised")
452 finally:
Antoine Pitrou95f55602010-09-23 18:36:46 +0000453 support.unlink(empty)
Lars Gustäbelb7f09232009-11-23 15:48:33 +0000454
Serhiy Storchaka263fab92013-05-09 14:22:26 +0300455 def test_parallel_iteration(self):
456 # Issue #16601: Restarting iteration over tarfile continued
457 # from where it left off.
458 with tarfile.open(self.tarname) as tar:
459 for m1, m2 in zip(tar, tar):
460 self.assertEqual(m1.offset, m2.offset)
461 self.assertEqual(m1.get_info(), m2.get_info())
462
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300463class MiscReadTest(MiscReadTestBase, unittest.TestCase):
464 test_fail_comp = None
Guido van Rossumd8faa362007-04-27 19:54:29 +0000465
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300466class GzipMiscReadTest(GzipTest, MiscReadTestBase, unittest.TestCase):
Serhiy Storchaka2a3d7d12014-01-13 19:07:33 +0200467 pass
Guido van Rossumd8faa362007-04-27 19:54:29 +0000468
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300469class Bz2MiscReadTest(Bz2Test, MiscReadTestBase, unittest.TestCase):
470 def test_no_name_argument(self):
471 self.skipTest("BZ2File have no name attribute")
472
473class LzmaMiscReadTest(LzmaTest, MiscReadTestBase, unittest.TestCase):
474 def test_no_name_argument(self):
475 self.skipTest("LZMAFile have no name attribute")
476
477
478class StreamReadTest(CommonReadTest, unittest.TestCase):
479
480 prefix="r|"
Guido van Rossumd8faa362007-04-27 19:54:29 +0000481
Lars Gustäbeldd071042011-02-23 11:42:22 +0000482 def test_read_through(self):
483 # Issue #11224: A poorly designed _FileInFile.read() method
484 # caused seeking errors with stream tar files.
485 for tarinfo in self.tar:
486 if not tarinfo.isreg():
487 continue
Lars Gustäbel7a919e92012-05-05 18:15:03 +0200488 with self.tar.extractfile(tarinfo) as fobj:
489 while True:
490 try:
491 buf = fobj.read(512)
492 except tarfile.StreamError:
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300493 self.fail("simple read-through using "
494 "TarFile.extractfile() failed")
Lars Gustäbel7a919e92012-05-05 18:15:03 +0200495 if not buf:
496 break
Lars Gustäbeldd071042011-02-23 11:42:22 +0000497
Guido van Rossumd8faa362007-04-27 19:54:29 +0000498 def test_fileobj_regular_file(self):
499 tarinfo = self.tar.next() # get "regtype" (can't use getmember)
Lars Gustäbel7a919e92012-05-05 18:15:03 +0200500 with self.tar.extractfile(tarinfo) as fobj:
501 data = fobj.read()
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300502 self.assertEqual(len(data), tarinfo.size,
503 "regular file extraction failed")
504 self.assertEqual(md5sum(data), md5_regtype,
Guido van Rossumd8faa362007-04-27 19:54:29 +0000505 "regular file extraction failed")
506
507 def test_provoke_stream_error(self):
508 tarinfos = self.tar.getmembers()
Lars Gustäbel7a919e92012-05-05 18:15:03 +0200509 with self.tar.extractfile(tarinfos[0]) as f: # read the first member
510 self.assertRaises(tarfile.StreamError, f.read)
Neal Norwitzb9ef4ae2003-01-05 23:19:43 +0000511
Guido van Rossumd8faa362007-04-27 19:54:29 +0000512 def test_compare_members(self):
513 tar1 = tarfile.open(tarname, encoding="iso8859-1")
Antoine Pitrou95f55602010-09-23 18:36:46 +0000514 try:
515 tar2 = self.tar
Neal Norwitzb9ef4ae2003-01-05 23:19:43 +0000516
Antoine Pitrou95f55602010-09-23 18:36:46 +0000517 while True:
518 t1 = tar1.next()
519 t2 = tar2.next()
520 if t1 is None:
521 break
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300522 self.assertIsNotNone(t2, "stream.next() failed.")
Neal Norwitzb9ef4ae2003-01-05 23:19:43 +0000523
Antoine Pitrou95f55602010-09-23 18:36:46 +0000524 if t2.islnk() or t2.issym():
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300525 with self.assertRaises(tarfile.StreamError):
526 tar2.extractfile(t2)
Antoine Pitrou95f55602010-09-23 18:36:46 +0000527 continue
Guido van Rossumd8faa362007-04-27 19:54:29 +0000528
Antoine Pitrou95f55602010-09-23 18:36:46 +0000529 v1 = tar1.extractfile(t1)
530 v2 = tar2.extractfile(t2)
531 if v1 is None:
532 continue
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300533 self.assertIsNotNone(v2, "stream.extractfile() failed")
534 self.assertEqual(v1.read(), v2.read(),
535 "stream extraction failed")
Antoine Pitrou95f55602010-09-23 18:36:46 +0000536 finally:
537 tar1.close()
Thomas Wouters902d6eb2007-01-09 23:18:33 +0000538
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300539class GzipStreamReadTest(GzipTest, StreamReadTest):
540 pass
Thomas Wouters89f507f2006-12-13 04:49:30 +0000541
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300542class Bz2StreamReadTest(Bz2Test, StreamReadTest):
543 pass
Thomas Wouterscf297e42007-02-23 15:07:44 +0000544
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300545class LzmaStreamReadTest(LzmaTest, StreamReadTest):
546 pass
547
548
549class DetectReadTest(TarTest, unittest.TestCase):
Guido van Rossumd8faa362007-04-27 19:54:29 +0000550 def _testfunc_file(self, name, mode):
551 try:
Antoine Pitrou95f55602010-09-23 18:36:46 +0000552 tar = tarfile.open(name, mode)
Lars Gustäbelb506dc32007-08-07 18:36:16 +0000553 except tarfile.ReadError as e:
Guido van Rossumd8faa362007-04-27 19:54:29 +0000554 self.fail()
Antoine Pitrou95f55602010-09-23 18:36:46 +0000555 else:
556 tar.close()
Thomas Wouterscf297e42007-02-23 15:07:44 +0000557
Guido van Rossumd8faa362007-04-27 19:54:29 +0000558 def _testfunc_fileobj(self, name, mode):
559 try:
Antoine Pitrou605c2932010-09-23 20:15:14 +0000560 with open(name, "rb") as f:
561 tar = tarfile.open(name, mode, fileobj=f)
Lars Gustäbelb506dc32007-08-07 18:36:16 +0000562 except tarfile.ReadError as e:
Guido van Rossumd8faa362007-04-27 19:54:29 +0000563 self.fail()
Antoine Pitrou95f55602010-09-23 18:36:46 +0000564 else:
565 tar.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000566
567 def _test_modes(self, testfunc):
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300568 if self.suffix:
569 with self.assertRaises(tarfile.ReadError):
570 tarfile.open(tarname, mode="r:" + self.suffix)
571 with self.assertRaises(tarfile.ReadError):
572 tarfile.open(tarname, mode="r|" + self.suffix)
573 with self.assertRaises(tarfile.ReadError):
574 tarfile.open(self.tarname, mode="r:")
575 with self.assertRaises(tarfile.ReadError):
576 tarfile.open(self.tarname, mode="r|")
577 testfunc(self.tarname, "r")
578 testfunc(self.tarname, "r:" + self.suffix)
579 testfunc(self.tarname, "r:*")
580 testfunc(self.tarname, "r|" + self.suffix)
581 testfunc(self.tarname, "r|*")
Lars Gustäbel0a9dd2f2011-12-10 20:38:14 +0100582
Guido van Rossumd8faa362007-04-27 19:54:29 +0000583 def test_detect_file(self):
584 self._test_modes(self._testfunc_file)
585
586 def test_detect_fileobj(self):
587 self._test_modes(self._testfunc_fileobj)
588
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300589class GzipDetectReadTest(GzipTest, DetectReadTest):
590 pass
591
592class Bz2DetectReadTest(Bz2Test, DetectReadTest):
Lars Gustäbeled1ac582011-12-06 12:56:38 +0100593 def test_detect_stream_bz2(self):
594 # Originally, tarfile's stream detection looked for the string
595 # "BZh91" at the start of the file. This is incorrect because
596 # the '9' represents the blocksize (900kB). If the file was
597 # compressed using another blocksize autodetection fails.
Lars Gustäbeled1ac582011-12-06 12:56:38 +0100598 with open(tarname, "rb") as fobj:
599 data = fobj.read()
600
601 # Compress with blocksize 100kB, the file starts with "BZh11".
602 with bz2.BZ2File(tmpname, "wb", compresslevel=1) as fobj:
603 fobj.write(data)
604
605 self._testfunc_file(tmpname, "r|*")
606
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300607class LzmaDetectReadTest(LzmaTest, DetectReadTest):
608 pass
Guido van Rossumd8faa362007-04-27 19:54:29 +0000609
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300610
611class MemberReadTest(ReadTest, unittest.TestCase):
Guido van Rossumd8faa362007-04-27 19:54:29 +0000612
613 def _test_member(self, tarinfo, chksum=None, **kwargs):
614 if chksum is not None:
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300615 with self.tar.extractfile(tarinfo) as f:
616 self.assertEqual(md5sum(f.read()), chksum,
617 "wrong md5sum for %s" % tarinfo.name)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000618
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000619 kwargs["mtime"] = 0o7606136617
Guido van Rossumd8faa362007-04-27 19:54:29 +0000620 kwargs["uid"] = 1000
621 kwargs["gid"] = 100
622 if "old-v7" not in tarinfo.name:
623 # V7 tar can't handle alphabetic owners.
624 kwargs["uname"] = "tarfile"
625 kwargs["gname"] = "tarfile"
626 for k, v in kwargs.items():
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300627 self.assertEqual(getattr(tarinfo, k), v,
Guido van Rossumd8faa362007-04-27 19:54:29 +0000628 "wrong value in %s field of %s" % (k, tarinfo.name))
629
630 def test_find_regtype(self):
631 tarinfo = self.tar.getmember("ustar/regtype")
632 self._test_member(tarinfo, size=7011, chksum=md5_regtype)
633
634 def test_find_conttype(self):
635 tarinfo = self.tar.getmember("ustar/conttype")
636 self._test_member(tarinfo, size=7011, chksum=md5_regtype)
637
638 def test_find_dirtype(self):
639 tarinfo = self.tar.getmember("ustar/dirtype")
640 self._test_member(tarinfo, size=0)
641
642 def test_find_dirtype_with_size(self):
643 tarinfo = self.tar.getmember("ustar/dirtype-with-size")
644 self._test_member(tarinfo, size=255)
645
646 def test_find_lnktype(self):
647 tarinfo = self.tar.getmember("ustar/lnktype")
648 self._test_member(tarinfo, size=0, linkname="ustar/regtype")
649
650 def test_find_symtype(self):
651 tarinfo = self.tar.getmember("ustar/symtype")
652 self._test_member(tarinfo, size=0, linkname="regtype")
653
654 def test_find_blktype(self):
655 tarinfo = self.tar.getmember("ustar/blktype")
656 self._test_member(tarinfo, size=0, devmajor=3, devminor=0)
657
658 def test_find_chrtype(self):
659 tarinfo = self.tar.getmember("ustar/chrtype")
660 self._test_member(tarinfo, size=0, devmajor=1, devminor=3)
661
662 def test_find_fifotype(self):
663 tarinfo = self.tar.getmember("ustar/fifotype")
664 self._test_member(tarinfo, size=0)
665
666 def test_find_sparse(self):
667 tarinfo = self.tar.getmember("ustar/sparse")
668 self._test_member(tarinfo, size=86016, chksum=md5_sparse)
669
Lars Gustäbel9cbdd752010-10-29 09:08:19 +0000670 def test_find_gnusparse(self):
671 tarinfo = self.tar.getmember("gnu/sparse")
672 self._test_member(tarinfo, size=86016, chksum=md5_sparse)
673
674 def test_find_gnusparse_00(self):
675 tarinfo = self.tar.getmember("gnu/sparse-0.0")
676 self._test_member(tarinfo, size=86016, chksum=md5_sparse)
677
678 def test_find_gnusparse_01(self):
679 tarinfo = self.tar.getmember("gnu/sparse-0.1")
680 self._test_member(tarinfo, size=86016, chksum=md5_sparse)
681
682 def test_find_gnusparse_10(self):
683 tarinfo = self.tar.getmember("gnu/sparse-1.0")
684 self._test_member(tarinfo, size=86016, chksum=md5_sparse)
685
Guido van Rossumd8faa362007-04-27 19:54:29 +0000686 def test_find_umlauts(self):
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300687 tarinfo = self.tar.getmember("ustar/umlauts-"
688 "\xc4\xd6\xdc\xe4\xf6\xfc\xdf")
Guido van Rossumd8faa362007-04-27 19:54:29 +0000689 self._test_member(tarinfo, size=7011, chksum=md5_regtype)
690
691 def test_find_ustar_longname(self):
692 name = "ustar/" + "12345/" * 39 + "1234567/longname"
Benjamin Peterson577473f2010-01-19 00:09:57 +0000693 self.assertIn(name, self.tar.getnames())
Guido van Rossumd8faa362007-04-27 19:54:29 +0000694
695 def test_find_regtype_oldv7(self):
696 tarinfo = self.tar.getmember("misc/regtype-old-v7")
697 self._test_member(tarinfo, size=7011, chksum=md5_regtype)
698
699 def test_find_pax_umlauts(self):
Antoine Pitrouab58b5f2010-09-23 19:39:35 +0000700 self.tar.close()
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300701 self.tar = tarfile.open(self.tarname, mode=self.mode,
702 encoding="iso8859-1")
703 tarinfo = self.tar.getmember("pax/umlauts-"
704 "\xc4\xd6\xdc\xe4\xf6\xfc\xdf")
Guido van Rossumd8faa362007-04-27 19:54:29 +0000705 self._test_member(tarinfo, size=7011, chksum=md5_regtype)
706
707
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300708class LongnameTest:
Guido van Rossumd8faa362007-04-27 19:54:29 +0000709
710 def test_read_longname(self):
711 # Test reading of longname (bug #1471427).
Guido van Rossume7ba4952007-06-06 23:52:48 +0000712 longname = self.subdir + "/" + "123/" * 125 + "longname"
Guido van Rossumd8faa362007-04-27 19:54:29 +0000713 try:
Guido van Rossume7ba4952007-06-06 23:52:48 +0000714 tarinfo = self.tar.getmember(longname)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000715 except KeyError:
716 self.fail("longname not found")
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300717 self.assertNotEqual(tarinfo.type, tarfile.DIRTYPE,
718 "read longname as dirtype")
Guido van Rossumd8faa362007-04-27 19:54:29 +0000719
720 def test_read_longlink(self):
721 longname = self.subdir + "/" + "123/" * 125 + "longname"
722 longlink = self.subdir + "/" + "123/" * 125 + "longlink"
723 try:
724 tarinfo = self.tar.getmember(longlink)
725 except KeyError:
726 self.fail("longlink not found")
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300727 self.assertEqual(tarinfo.linkname, longname, "linkname wrong")
Guido van Rossumd8faa362007-04-27 19:54:29 +0000728
729 def test_truncated_longname(self):
730 longname = self.subdir + "/" + "123/" * 125 + "longname"
731 tarinfo = self.tar.getmember(longname)
732 offset = tarinfo.offset
733 self.tar.fileobj.seek(offset)
Lars Gustäbelb506dc32007-08-07 18:36:16 +0000734 fobj = io.BytesIO(self.tar.fileobj.read(3 * 512))
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300735 with self.assertRaises(tarfile.ReadError):
736 tarfile.open(name="foo.tar", fileobj=fobj)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000737
Guido van Rossume7ba4952007-06-06 23:52:48 +0000738 def test_header_offset(self):
739 # Test if the start offset of the TarInfo object includes
740 # the preceding extended header.
741 longname = self.subdir + "/" + "123/" * 125 + "longname"
742 offset = self.tar.getmember(longname).offset
Antoine Pitroue1eca4e2010-10-29 23:49:49 +0000743 with open(tarname, "rb") as fobj:
744 fobj.seek(offset)
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300745 tarinfo = tarfile.TarInfo.frombuf(fobj.read(512),
746 "iso8859-1", "strict")
Antoine Pitroue1eca4e2010-10-29 23:49:49 +0000747 self.assertEqual(tarinfo.type, self.longnametype)
Guido van Rossume7ba4952007-06-06 23:52:48 +0000748
Guido van Rossumd8faa362007-04-27 19:54:29 +0000749
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300750class GNUReadTest(LongnameTest, ReadTest, unittest.TestCase):
Guido van Rossumd8faa362007-04-27 19:54:29 +0000751
752 subdir = "gnu"
Guido van Rossume7ba4952007-06-06 23:52:48 +0000753 longnametype = tarfile.GNUTYPE_LONGNAME
Guido van Rossumd8faa362007-04-27 19:54:29 +0000754
Lars Gustäbel9cbdd752010-10-29 09:08:19 +0000755 # Since 3.2 tarfile is supposed to accurately restore sparse members and
756 # produce files with holes. This is what we actually want to test here.
757 # Unfortunately, not all platforms/filesystems support sparse files, and
758 # even on platforms that do it is non-trivial to make reliable assertions
759 # about holes in files. Therefore, we first do one basic test which works
760 # an all platforms, and after that a test that will work only on
761 # platforms/filesystems that prove to support sparse files.
762 def _test_sparse_file(self, name):
763 self.tar.extract(name, TEMPDIR)
764 filename = os.path.join(TEMPDIR, name)
765 with open(filename, "rb") as fobj:
766 data = fobj.read()
767 self.assertEqual(md5sum(data), md5_sparse,
768 "wrong md5sum for %s" % name)
769
770 if self._fs_supports_holes():
771 s = os.stat(filename)
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300772 self.assertLess(s.st_blocks * 512, s.st_size)
Lars Gustäbel9cbdd752010-10-29 09:08:19 +0000773
774 def test_sparse_file_old(self):
775 self._test_sparse_file("gnu/sparse")
776
777 def test_sparse_file_00(self):
778 self._test_sparse_file("gnu/sparse-0.0")
779
780 def test_sparse_file_01(self):
781 self._test_sparse_file("gnu/sparse-0.1")
782
783 def test_sparse_file_10(self):
784 self._test_sparse_file("gnu/sparse-1.0")
785
786 @staticmethod
787 def _fs_supports_holes():
788 # Return True if the platform knows the st_blocks stat attribute and
789 # uses st_blocks units of 512 bytes, and if the filesystem is able to
790 # store holes in files.
Victor Stinner9c3de4a2011-08-17 20:49:41 +0200791 if sys.platform.startswith("linux"):
Lars Gustäbel9cbdd752010-10-29 09:08:19 +0000792 # Linux evidentially has 512 byte st_blocks units.
793 name = os.path.join(TEMPDIR, "sparse-test")
794 with open(name, "wb") as fobj:
795 fobj.seek(4096)
796 fobj.truncate()
797 s = os.stat(name)
798 os.remove(name)
799 return s.st_blocks == 0
800 else:
801 return False
Guido van Rossumd8faa362007-04-27 19:54:29 +0000802
803
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300804class PaxReadTest(LongnameTest, ReadTest, unittest.TestCase):
Guido van Rossumd8faa362007-04-27 19:54:29 +0000805
806 subdir = "pax"
Guido van Rossume7ba4952007-06-06 23:52:48 +0000807 longnametype = tarfile.XHDTYPE
Guido van Rossumd8faa362007-04-27 19:54:29 +0000808
Guido van Rossume7ba4952007-06-06 23:52:48 +0000809 def test_pax_global_headers(self):
Guido van Rossumd8faa362007-04-27 19:54:29 +0000810 tar = tarfile.open(tarname, encoding="iso8859-1")
Antoine Pitrou95f55602010-09-23 18:36:46 +0000811 try:
812 tarinfo = tar.getmember("pax/regtype1")
813 self.assertEqual(tarinfo.uname, "foo")
814 self.assertEqual(tarinfo.gname, "bar")
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300815 self.assertEqual(tarinfo.pax_headers.get("VENDOR.umlauts"),
816 "\xc4\xd6\xdc\xe4\xf6\xfc\xdf")
Guido van Rossume7ba4952007-06-06 23:52:48 +0000817
Antoine Pitrou95f55602010-09-23 18:36:46 +0000818 tarinfo = tar.getmember("pax/regtype2")
819 self.assertEqual(tarinfo.uname, "")
820 self.assertEqual(tarinfo.gname, "bar")
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300821 self.assertEqual(tarinfo.pax_headers.get("VENDOR.umlauts"),
822 "\xc4\xd6\xdc\xe4\xf6\xfc\xdf")
Guido van Rossumd8faa362007-04-27 19:54:29 +0000823
Antoine Pitrou95f55602010-09-23 18:36:46 +0000824 tarinfo = tar.getmember("pax/regtype3")
825 self.assertEqual(tarinfo.uname, "tarfile")
826 self.assertEqual(tarinfo.gname, "tarfile")
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300827 self.assertEqual(tarinfo.pax_headers.get("VENDOR.umlauts"),
828 "\xc4\xd6\xdc\xe4\xf6\xfc\xdf")
Antoine Pitrou95f55602010-09-23 18:36:46 +0000829 finally:
830 tar.close()
Guido van Rossume7ba4952007-06-06 23:52:48 +0000831
832 def test_pax_number_fields(self):
833 # All following number fields are read from the pax header.
834 tar = tarfile.open(tarname, encoding="iso8859-1")
Antoine Pitrou95f55602010-09-23 18:36:46 +0000835 try:
836 tarinfo = tar.getmember("pax/regtype4")
837 self.assertEqual(tarinfo.size, 7011)
838 self.assertEqual(tarinfo.uid, 123)
839 self.assertEqual(tarinfo.gid, 123)
840 self.assertEqual(tarinfo.mtime, 1041808783.0)
841 self.assertEqual(type(tarinfo.mtime), float)
842 self.assertEqual(float(tarinfo.pax_headers["atime"]), 1041808783.0)
843 self.assertEqual(float(tarinfo.pax_headers["ctime"]), 1041808783.0)
844 finally:
845 tar.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000846
847
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300848class WriteTestBase(TarTest):
Georg Brandlf08a9dd2008-06-10 16:57:31 +0000849 # Put all write tests in here that are supposed to be tested
850 # in all possible mode combinations.
851
852 def test_fileobj_no_close(self):
853 fobj = io.BytesIO()
854 tar = tarfile.open(fileobj=fobj, mode=self.mode)
855 tar.addfile(tarfile.TarInfo("foo"))
856 tar.close()
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300857 self.assertFalse(fobj.closed, "external fileobjs must never closed")
Serhiy Storchaka9fbec7a2014-01-18 15:53:05 +0200858 # Issue #20238: Incomplete gzip output with mode="w:gz"
859 data = fobj.getvalue()
860 del tar
861 support.gc_collect()
862 self.assertFalse(fobj.closed)
863 self.assertEqual(data, fobj.getvalue())
Georg Brandlf08a9dd2008-06-10 16:57:31 +0000864
865
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300866class WriteTest(WriteTestBase, unittest.TestCase):
Guido van Rossumd8faa362007-04-27 19:54:29 +0000867
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300868 prefix = "w:"
Guido van Rossumd8faa362007-04-27 19:54:29 +0000869
870 def test_100_char_name(self):
871 # The name field in a tar header stores strings of at most 100 chars.
872 # If a string is shorter than 100 chars it has to be padded with '\0',
873 # which implies that a string of exactly 100 chars is stored without
874 # a trailing '\0'.
875 name = "0123456789" * 10
876 tar = tarfile.open(tmpname, self.mode)
Antoine Pitrou95f55602010-09-23 18:36:46 +0000877 try:
878 t = tarfile.TarInfo(name)
879 tar.addfile(t)
880 finally:
881 tar.close()
Thomas Wouterscf297e42007-02-23 15:07:44 +0000882
Guido van Rossumd8faa362007-04-27 19:54:29 +0000883 tar = tarfile.open(tmpname)
Antoine Pitrou95f55602010-09-23 18:36:46 +0000884 try:
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300885 self.assertEqual(tar.getnames()[0], name,
Antoine Pitrou95f55602010-09-23 18:36:46 +0000886 "failed to store 100 char filename")
887 finally:
888 tar.close()
Thomas Wouters89f507f2006-12-13 04:49:30 +0000889
Guido van Rossumd8faa362007-04-27 19:54:29 +0000890 def test_tar_size(self):
891 # Test for bug #1013882.
892 tar = tarfile.open(tmpname, self.mode)
Antoine Pitrou95f55602010-09-23 18:36:46 +0000893 try:
894 path = os.path.join(TEMPDIR, "file")
895 with open(path, "wb") as fobj:
896 fobj.write(b"aaa")
897 tar.add(path)
898 finally:
899 tar.close()
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300900 self.assertGreater(os.path.getsize(tmpname), 0,
Guido van Rossumd8faa362007-04-27 19:54:29 +0000901 "tarfile is empty")
Thomas Wouters89f507f2006-12-13 04:49:30 +0000902
Guido van Rossumd8faa362007-04-27 19:54:29 +0000903 # The test_*_size tests test for bug #1167128.
904 def test_file_size(self):
905 tar = tarfile.open(tmpname, self.mode)
Antoine Pitrou95f55602010-09-23 18:36:46 +0000906 try:
907 path = os.path.join(TEMPDIR, "file")
908 with open(path, "wb"):
909 pass
910 tarinfo = tar.gettarinfo(path)
911 self.assertEqual(tarinfo.size, 0)
Martin v. Löwis5dbdc592005-08-27 10:07:56 +0000912
Antoine Pitrou95f55602010-09-23 18:36:46 +0000913 with open(path, "wb") as fobj:
914 fobj.write(b"aaa")
915 tarinfo = tar.gettarinfo(path)
916 self.assertEqual(tarinfo.size, 3)
917 finally:
918 tar.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000919
920 def test_directory_size(self):
921 path = os.path.join(TEMPDIR, "directory")
Martin v. Löwis5dbdc592005-08-27 10:07:56 +0000922 os.mkdir(path)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000923 try:
924 tar = tarfile.open(tmpname, self.mode)
Antoine Pitrou95f55602010-09-23 18:36:46 +0000925 try:
926 tarinfo = tar.gettarinfo(path)
927 self.assertEqual(tarinfo.size, 0)
928 finally:
929 tar.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000930 finally:
931 os.rmdir(path)
932
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300933 @unittest.skipUnless(hasattr(os, "link"),
934 "Missing hardlink implementation")
Guido van Rossumd8faa362007-04-27 19:54:29 +0000935 def test_link_size(self):
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300936 link = os.path.join(TEMPDIR, "link")
937 target = os.path.join(TEMPDIR, "link_target")
938 with open(target, "wb") as fobj:
939 fobj.write(b"aaa")
940 os.link(target, link)
941 try:
942 tar = tarfile.open(tmpname, self.mode)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000943 try:
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300944 # Record the link target in the inodes list.
945 tar.gettarinfo(target)
946 tarinfo = tar.gettarinfo(link)
947 self.assertEqual(tarinfo.size, 0)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000948 finally:
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300949 tar.close()
950 finally:
951 os.remove(target)
952 os.remove(link)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000953
Brian Curtin3b4499c2010-12-28 14:31:47 +0000954 @support.skip_unless_symlink
Guido van Rossumd8faa362007-04-27 19:54:29 +0000955 def test_symlink_size(self):
Brian Curtind40e6f72010-07-08 21:39:08 +0000956 path = os.path.join(TEMPDIR, "symlink")
957 os.symlink("link_target", path)
958 try:
959 tar = tarfile.open(tmpname, self.mode)
Antoine Pitrou95f55602010-09-23 18:36:46 +0000960 try:
961 tarinfo = tar.gettarinfo(path)
962 self.assertEqual(tarinfo.size, 0)
963 finally:
964 tar.close()
Brian Curtind40e6f72010-07-08 21:39:08 +0000965 finally:
966 os.remove(path)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000967
968 def test_add_self(self):
969 # Test for #1257255.
970 dstname = os.path.abspath(tmpname)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000971 tar = tarfile.open(tmpname, self.mode)
Antoine Pitrou95f55602010-09-23 18:36:46 +0000972 try:
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300973 self.assertEqual(tar.name, dstname,
974 "archive name must be absolute")
Antoine Pitrou95f55602010-09-23 18:36:46 +0000975 tar.add(dstname)
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300976 self.assertEqual(tar.getnames(), [],
977 "added the archive to itself")
Guido van Rossumd8faa362007-04-27 19:54:29 +0000978
Antoine Pitrou95f55602010-09-23 18:36:46 +0000979 cwd = os.getcwd()
980 os.chdir(TEMPDIR)
981 tar.add(dstname)
982 os.chdir(cwd)
Serhiy Storchaka8b562922013-06-17 15:38:50 +0300983 self.assertEqual(tar.getnames(), [],
984 "added the archive to itself")
Antoine Pitrou95f55602010-09-23 18:36:46 +0000985 finally:
986 tar.close()
Martin v. Löwis5dbdc592005-08-27 10:07:56 +0000987
Guido van Rossum486364b2007-06-30 05:01:58 +0000988 def test_exclude(self):
989 tempdir = os.path.join(TEMPDIR, "exclude")
990 os.mkdir(tempdir)
991 try:
992 for name in ("foo", "bar", "baz"):
993 name = os.path.join(tempdir, name)
Victor Stinnerbf816222011-06-30 23:25:47 +0200994 support.create_empty_file(name)
Guido van Rossum486364b2007-06-30 05:01:58 +0000995
Benjamin Peterson886af962010-03-21 23:13:07 +0000996 exclude = os.path.isfile
Guido van Rossum486364b2007-06-30 05:01:58 +0000997
998 tar = tarfile.open(tmpname, self.mode, encoding="iso8859-1")
Antoine Pitrou95f55602010-09-23 18:36:46 +0000999 try:
1000 with support.check_warnings(("use the filter argument",
1001 DeprecationWarning)):
1002 tar.add(tempdir, arcname="empty_dir", exclude=exclude)
1003 finally:
1004 tar.close()
Guido van Rossum486364b2007-06-30 05:01:58 +00001005
1006 tar = tarfile.open(tmpname, "r")
Antoine Pitrou95f55602010-09-23 18:36:46 +00001007 try:
1008 self.assertEqual(len(tar.getmembers()), 1)
1009 self.assertEqual(tar.getnames()[0], "empty_dir")
1010 finally:
1011 tar.close()
Guido van Rossum486364b2007-06-30 05:01:58 +00001012 finally:
1013 shutil.rmtree(tempdir)
1014
Lars Gustäbel049d2aa2009-09-12 10:44:00 +00001015 def test_filter(self):
1016 tempdir = os.path.join(TEMPDIR, "filter")
1017 os.mkdir(tempdir)
1018 try:
1019 for name in ("foo", "bar", "baz"):
1020 name = os.path.join(tempdir, name)
Victor Stinnerbf816222011-06-30 23:25:47 +02001021 support.create_empty_file(name)
Lars Gustäbel049d2aa2009-09-12 10:44:00 +00001022
1023 def filter(tarinfo):
1024 if os.path.basename(tarinfo.name) == "bar":
1025 return
1026 tarinfo.uid = 123
1027 tarinfo.uname = "foo"
1028 return tarinfo
1029
1030 tar = tarfile.open(tmpname, self.mode, encoding="iso8859-1")
Antoine Pitrou95f55602010-09-23 18:36:46 +00001031 try:
1032 tar.add(tempdir, arcname="empty_dir", filter=filter)
1033 finally:
1034 tar.close()
Lars Gustäbel049d2aa2009-09-12 10:44:00 +00001035
Raymond Hettingera63a3122011-01-26 20:34:14 +00001036 # Verify that filter is a keyword-only argument
1037 with self.assertRaises(TypeError):
1038 tar.add(tempdir, "empty_dir", True, None, filter)
1039
Lars Gustäbel049d2aa2009-09-12 10:44:00 +00001040 tar = tarfile.open(tmpname, "r")
Antoine Pitrou95f55602010-09-23 18:36:46 +00001041 try:
1042 for tarinfo in tar:
1043 self.assertEqual(tarinfo.uid, 123)
1044 self.assertEqual(tarinfo.uname, "foo")
1045 self.assertEqual(len(tar.getmembers()), 3)
1046 finally:
1047 tar.close()
Lars Gustäbel049d2aa2009-09-12 10:44:00 +00001048 finally:
1049 shutil.rmtree(tempdir)
1050
Lars Gustäbelbfdfdda2009-08-28 19:59:59 +00001051 # Guarantee that stored pathnames are not modified. Don't
1052 # remove ./ or ../ or double slashes. Still make absolute
1053 # pathnames relative.
1054 # For details see bug #6054.
1055 def _test_pathname(self, path, cmp_path=None, dir=False):
1056 # Create a tarfile with an empty member named path
1057 # and compare the stored name with the original.
1058 foo = os.path.join(TEMPDIR, "foo")
1059 if not dir:
Victor Stinnerbf816222011-06-30 23:25:47 +02001060 support.create_empty_file(foo)
Lars Gustäbelbfdfdda2009-08-28 19:59:59 +00001061 else:
1062 os.mkdir(foo)
1063
1064 tar = tarfile.open(tmpname, self.mode)
Antoine Pitrou95f55602010-09-23 18:36:46 +00001065 try:
1066 tar.add(foo, arcname=path)
1067 finally:
1068 tar.close()
Lars Gustäbelbfdfdda2009-08-28 19:59:59 +00001069
1070 tar = tarfile.open(tmpname, "r")
Antoine Pitrou95f55602010-09-23 18:36:46 +00001071 try:
1072 t = tar.next()
1073 finally:
1074 tar.close()
Lars Gustäbelbfdfdda2009-08-28 19:59:59 +00001075
1076 if not dir:
1077 os.remove(foo)
1078 else:
1079 os.rmdir(foo)
1080
1081 self.assertEqual(t.name, cmp_path or path.replace(os.sep, "/"))
1082
Senthil Kumaranbe5dbeb2011-04-30 06:09:51 +08001083
1084 @support.skip_unless_symlink
Senthil Kumaran123932f2011-04-28 15:38:12 +08001085 def test_extractall_symlinks(self):
1086 # Test if extractall works properly when tarfile contains symlinks
1087 tempdir = os.path.join(TEMPDIR, "testsymlinks")
1088 temparchive = os.path.join(TEMPDIR, "testsymlinks.tar")
1089 os.mkdir(tempdir)
1090 try:
1091 source_file = os.path.join(tempdir,'source')
1092 target_file = os.path.join(tempdir,'symlink')
1093 with open(source_file,'w') as f:
1094 f.write('something\n')
1095 os.symlink(source_file, target_file)
1096 tar = tarfile.open(temparchive,'w')
1097 tar.add(source_file)
1098 tar.add(target_file)
1099 tar.close()
1100 # Let's extract it to the location which contains the symlink
1101 tar = tarfile.open(temparchive,'r')
1102 # this should not raise OSError: [Errno 17] File exists
1103 try:
1104 tar.extractall(path=tempdir)
1105 except OSError:
1106 self.fail("extractall failed with symlinked files")
1107 finally:
1108 tar.close()
1109 finally:
1110 os.unlink(temparchive)
1111 shutil.rmtree(tempdir)
Martin v. Löwis5dbdc592005-08-27 10:07:56 +00001112
Lars Gustäbelbfdfdda2009-08-28 19:59:59 +00001113 def test_pathnames(self):
1114 self._test_pathname("foo")
1115 self._test_pathname(os.path.join("foo", ".", "bar"))
1116 self._test_pathname(os.path.join("foo", "..", "bar"))
1117 self._test_pathname(os.path.join(".", "foo"))
1118 self._test_pathname(os.path.join(".", "foo", "."))
1119 self._test_pathname(os.path.join(".", "foo", ".", "bar"))
1120 self._test_pathname(os.path.join(".", "foo", "..", "bar"))
1121 self._test_pathname(os.path.join(".", "foo", "..", "bar"))
1122 self._test_pathname(os.path.join("..", "foo"))
1123 self._test_pathname(os.path.join("..", "foo", ".."))
1124 self._test_pathname(os.path.join("..", "foo", ".", "bar"))
1125 self._test_pathname(os.path.join("..", "foo", "..", "bar"))
1126
1127 self._test_pathname("foo" + os.sep + os.sep + "bar")
1128 self._test_pathname("foo" + os.sep + os.sep, "foo", dir=True)
1129
1130 def test_abs_pathnames(self):
1131 if sys.platform == "win32":
1132 self._test_pathname("C:\\foo", "foo")
1133 else:
1134 self._test_pathname("/foo", "foo")
1135 self._test_pathname("///foo", "foo")
1136
1137 def test_cwd(self):
1138 # Test adding the current working directory.
1139 cwd = os.getcwd()
1140 os.chdir(TEMPDIR)
1141 try:
Lars Gustäbelbfdfdda2009-08-28 19:59:59 +00001142 tar = tarfile.open(tmpname, self.mode)
Antoine Pitrou95f55602010-09-23 18:36:46 +00001143 try:
1144 tar.add(".")
1145 finally:
1146 tar.close()
Lars Gustäbelbfdfdda2009-08-28 19:59:59 +00001147
1148 tar = tarfile.open(tmpname, "r")
Antoine Pitrou95f55602010-09-23 18:36:46 +00001149 try:
1150 for t in tar:
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001151 if t.name != ".":
1152 self.assertTrue(t.name.startswith("./"), t.name)
Antoine Pitrou95f55602010-09-23 18:36:46 +00001153 finally:
1154 tar.close()
Lars Gustäbelbfdfdda2009-08-28 19:59:59 +00001155 finally:
1156 os.chdir(cwd)
1157
Serhiy Storchakac2d01422014-01-18 16:14:10 +02001158 def test_open_nonwritable_fileobj(self):
1159 for exctype in OSError, EOFError, RuntimeError:
1160 class BadFile(io.BytesIO):
1161 first = True
1162 def write(self, data):
1163 if self.first:
1164 self.first = False
1165 raise exctype
1166
1167 f = BadFile()
1168 with self.assertRaises(exctype):
1169 tar = tarfile.open(tmpname, self.mode, fileobj=f,
1170 format=tarfile.PAX_FORMAT,
1171 pax_headers={'non': 'empty'})
1172 self.assertFalse(f.closed)
1173
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001174class GzipWriteTest(GzipTest, WriteTest):
1175 pass
Neal Norwitzb9ef4ae2003-01-05 23:19:43 +00001176
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001177class Bz2WriteTest(Bz2Test, WriteTest):
1178 pass
Neal Norwitzb9ef4ae2003-01-05 23:19:43 +00001179
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001180class LzmaWriteTest(LzmaTest, WriteTest):
1181 pass
1182
1183
1184class StreamWriteTest(WriteTestBase, unittest.TestCase):
1185
1186 prefix = "w|"
1187 decompressor = None
Thomas Wouters00ee7ba2006-08-21 19:07:27 +00001188
Guido van Rossumd8faa362007-04-27 19:54:29 +00001189 def test_stream_padding(self):
1190 # Test for bug #1543303.
1191 tar = tarfile.open(tmpname, self.mode)
1192 tar.close()
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001193 if self.decompressor:
1194 dec = self.decompressor()
Antoine Pitrou95f55602010-09-23 18:36:46 +00001195 with open(tmpname, "rb") as fobj:
1196 data = fobj.read()
Guido van Rossumd8faa362007-04-27 19:54:29 +00001197 data = dec.decompress(data)
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001198 self.assertFalse(dec.unused_data, "found trailing data")
Thomas Wouters00ee7ba2006-08-21 19:07:27 +00001199 else:
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001200 with self.open(tmpname) as fobj:
Antoine Pitrou95f55602010-09-23 18:36:46 +00001201 data = fobj.read()
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001202 self.assertEqual(data.count(b"\0"), tarfile.RECORDSIZE,
1203 "incorrect zero padding")
Thomas Wouters00ee7ba2006-08-21 19:07:27 +00001204
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001205 @unittest.skipUnless(sys.platform != "win32" and hasattr(os, "umask"),
1206 "Missing umask implementation")
Lars Gustäbeld6eb70b2010-04-29 15:37:02 +00001207 def test_file_mode(self):
1208 # Test for issue #8464: Create files with correct
1209 # permissions.
Lars Gustäbeld6eb70b2010-04-29 15:37:02 +00001210 if os.path.exists(tmpname):
1211 os.remove(tmpname)
1212
1213 original_umask = os.umask(0o022)
1214 try:
1215 tar = tarfile.open(tmpname, self.mode)
1216 tar.close()
1217 mode = os.stat(tmpname).st_mode & 0o777
1218 self.assertEqual(mode, 0o644, "wrong file permissions")
1219 finally:
1220 os.umask(original_umask)
1221
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001222class GzipStreamWriteTest(GzipTest, StreamWriteTest):
1223 pass
1224
1225class Bz2StreamWriteTest(Bz2Test, StreamWriteTest):
1226 decompressor = bz2.BZ2Decompressor if bz2 else None
1227
1228class LzmaStreamWriteTest(LzmaTest, StreamWriteTest):
1229 decompressor = lzma.LZMADecompressor if lzma else None
1230
Thomas Wouters00ee7ba2006-08-21 19:07:27 +00001231
Guido van Rossumd8faa362007-04-27 19:54:29 +00001232class GNUWriteTest(unittest.TestCase):
1233 # This testcase checks for correct creation of GNU Longname
1234 # and Longlink extended headers (cp. bug #812325).
Neal Norwitz0662f8a2004-07-20 21:54:18 +00001235
Neal Norwitz0662f8a2004-07-20 21:54:18 +00001236 def _length(self, s):
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001237 blocks = len(s) // 512 + 1
Neal Norwitz0662f8a2004-07-20 21:54:18 +00001238 return blocks * 512
1239
1240 def _calc_size(self, name, link=None):
Guido van Rossumd8faa362007-04-27 19:54:29 +00001241 # Initial tar header
Neal Norwitz0662f8a2004-07-20 21:54:18 +00001242 count = 512
1243
1244 if len(name) > tarfile.LENGTH_NAME:
Guido van Rossumd8faa362007-04-27 19:54:29 +00001245 # GNU longname extended header + longname
Neal Norwitz0662f8a2004-07-20 21:54:18 +00001246 count += 512
1247 count += self._length(name)
Neal Norwitz0662f8a2004-07-20 21:54:18 +00001248 if link is not None and len(link) > tarfile.LENGTH_LINK:
Guido van Rossumd8faa362007-04-27 19:54:29 +00001249 # GNU longlink extended header + longlink
Neal Norwitz0662f8a2004-07-20 21:54:18 +00001250 count += 512
1251 count += self._length(link)
Neal Norwitz0662f8a2004-07-20 21:54:18 +00001252 return count
1253
1254 def _test(self, name, link=None):
1255 tarinfo = tarfile.TarInfo(name)
1256 if link:
1257 tarinfo.linkname = link
1258 tarinfo.type = tarfile.LNKTYPE
1259
Guido van Rossumd8faa362007-04-27 19:54:29 +00001260 tar = tarfile.open(tmpname, "w")
Antoine Pitrou95f55602010-09-23 18:36:46 +00001261 try:
1262 tar.format = tarfile.GNU_FORMAT
1263 tar.addfile(tarinfo)
Neal Norwitz0662f8a2004-07-20 21:54:18 +00001264
Antoine Pitrou95f55602010-09-23 18:36:46 +00001265 v1 = self._calc_size(name, link)
1266 v2 = tar.offset
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001267 self.assertEqual(v1, v2, "GNU longname/longlink creation failed")
Antoine Pitrou95f55602010-09-23 18:36:46 +00001268 finally:
1269 tar.close()
Thomas Wouters89f507f2006-12-13 04:49:30 +00001270
Guido van Rossumd8faa362007-04-27 19:54:29 +00001271 tar = tarfile.open(tmpname)
Antoine Pitrou95f55602010-09-23 18:36:46 +00001272 try:
1273 member = tar.next()
1274 self.assertIsNotNone(member,
1275 "unable to read longname member")
1276 self.assertEqual(tarinfo.name, member.name,
1277 "unable to read longname member")
1278 self.assertEqual(tarinfo.linkname, member.linkname,
1279 "unable to read longname member")
1280 finally:
1281 tar.close()
Thomas Wouters89f507f2006-12-13 04:49:30 +00001282
Neal Norwitz0662f8a2004-07-20 21:54:18 +00001283 def test_longname_1023(self):
1284 self._test(("longnam/" * 127) + "longnam")
1285
1286 def test_longname_1024(self):
1287 self._test(("longnam/" * 127) + "longname")
1288
1289 def test_longname_1025(self):
1290 self._test(("longnam/" * 127) + "longname_")
1291
1292 def test_longlink_1023(self):
1293 self._test("name", ("longlnk/" * 127) + "longlnk")
1294
1295 def test_longlink_1024(self):
1296 self._test("name", ("longlnk/" * 127) + "longlink")
1297
1298 def test_longlink_1025(self):
1299 self._test("name", ("longlnk/" * 127) + "longlink_")
1300
1301 def test_longnamelink_1023(self):
1302 self._test(("longnam/" * 127) + "longnam",
1303 ("longlnk/" * 127) + "longlnk")
1304
1305 def test_longnamelink_1024(self):
1306 self._test(("longnam/" * 127) + "longname",
1307 ("longlnk/" * 127) + "longlink")
1308
1309 def test_longnamelink_1025(self):
1310 self._test(("longnam/" * 127) + "longname_",
1311 ("longlnk/" * 127) + "longlink_")
1312
Guido van Rossumd8faa362007-04-27 19:54:29 +00001313
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001314@unittest.skipUnless(hasattr(os, "link"), "Missing hardlink implementation")
Guido van Rossumd8faa362007-04-27 19:54:29 +00001315class HardlinkTest(unittest.TestCase):
1316 # Test the creation of LNKTYPE (hardlink) members in an archive.
Thomas Wouters477c8d52006-05-27 19:21:47 +00001317
1318 def setUp(self):
Guido van Rossumd8faa362007-04-27 19:54:29 +00001319 self.foo = os.path.join(TEMPDIR, "foo")
1320 self.bar = os.path.join(TEMPDIR, "bar")
Thomas Wouters477c8d52006-05-27 19:21:47 +00001321
Antoine Pitrou95f55602010-09-23 18:36:46 +00001322 with open(self.foo, "wb") as fobj:
1323 fobj.write(b"foo")
Thomas Wouters477c8d52006-05-27 19:21:47 +00001324
Guido van Rossumd8faa362007-04-27 19:54:29 +00001325 os.link(self.foo, self.bar)
Thomas Wouters477c8d52006-05-27 19:21:47 +00001326
Guido van Rossumd8faa362007-04-27 19:54:29 +00001327 self.tar = tarfile.open(tmpname, "w")
Neal Norwitzb0e32e22005-10-20 04:50:13 +00001328 self.tar.add(self.foo)
1329
Guido van Rossumd8faa362007-04-27 19:54:29 +00001330 def tearDown(self):
Hirokazu Yamamotoaf079d42008-09-21 11:50:03 +00001331 self.tar.close()
Antoine Pitrou95f55602010-09-23 18:36:46 +00001332 support.unlink(self.foo)
1333 support.unlink(self.bar)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001334
Neal Norwitzb0e32e22005-10-20 04:50:13 +00001335 def test_add_twice(self):
Guido van Rossumd8faa362007-04-27 19:54:29 +00001336 # The same name will be added as a REGTYPE every
1337 # time regardless of st_nlink.
Neal Norwitzb0e32e22005-10-20 04:50:13 +00001338 tarinfo = self.tar.gettarinfo(self.foo)
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001339 self.assertEqual(tarinfo.type, tarfile.REGTYPE,
Neal Norwitzb0e32e22005-10-20 04:50:13 +00001340 "add file as regular failed")
1341
1342 def test_add_hardlink(self):
Neal Norwitzb0e32e22005-10-20 04:50:13 +00001343 tarinfo = self.tar.gettarinfo(self.bar)
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001344 self.assertEqual(tarinfo.type, tarfile.LNKTYPE,
Neal Norwitzb0e32e22005-10-20 04:50:13 +00001345 "add file as hardlink failed")
1346
1347 def test_dereference_hardlink(self):
1348 self.tar.dereference = True
Neal Norwitzb0e32e22005-10-20 04:50:13 +00001349 tarinfo = self.tar.gettarinfo(self.bar)
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001350 self.assertEqual(tarinfo.type, tarfile.REGTYPE,
Neal Norwitzb0e32e22005-10-20 04:50:13 +00001351 "dereferencing hardlink failed")
1352
Neal Norwitza4f651a2004-07-20 22:07:44 +00001353
Guido van Rossumd8faa362007-04-27 19:54:29 +00001354class PaxWriteTest(GNUWriteTest):
Martin v. Löwis78be7df2005-03-05 12:47:42 +00001355
Guido van Rossumd8faa362007-04-27 19:54:29 +00001356 def _test(self, name, link=None):
1357 # See GNUWriteTest.
1358 tarinfo = tarfile.TarInfo(name)
1359 if link:
1360 tarinfo.linkname = link
1361 tarinfo.type = tarfile.LNKTYPE
Andrew M. Kuchlingd4f25522004-10-20 11:47:01 +00001362
Guido van Rossumd8faa362007-04-27 19:54:29 +00001363 tar = tarfile.open(tmpname, "w", format=tarfile.PAX_FORMAT)
Antoine Pitrou95f55602010-09-23 18:36:46 +00001364 try:
1365 tar.addfile(tarinfo)
1366 finally:
1367 tar.close()
Andrew M. Kuchlingd4f25522004-10-20 11:47:01 +00001368
Guido van Rossumd8faa362007-04-27 19:54:29 +00001369 tar = tarfile.open(tmpname)
Antoine Pitrou95f55602010-09-23 18:36:46 +00001370 try:
1371 if link:
1372 l = tar.getmembers()[0].linkname
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001373 self.assertEqual(link, l, "PAX longlink creation failed")
Antoine Pitrou95f55602010-09-23 18:36:46 +00001374 else:
1375 n = tar.getmembers()[0].name
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001376 self.assertEqual(name, n, "PAX longname creation failed")
Antoine Pitrou95f55602010-09-23 18:36:46 +00001377 finally:
1378 tar.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +00001379
Guido van Rossume7ba4952007-06-06 23:52:48 +00001380 def test_pax_global_header(self):
1381 pax_headers = {
Guido van Rossum9cbfffd2007-06-07 00:54:15 +00001382 "foo": "bar",
1383 "uid": "0",
1384 "mtime": "1.23",
Guido van Rossuma0557702007-08-07 23:19:53 +00001385 "test": "\xe4\xf6\xfc",
1386 "\xe4\xf6\xfc": "test"}
Guido van Rossume7ba4952007-06-06 23:52:48 +00001387
Benjamin Peterson886af962010-03-21 23:13:07 +00001388 tar = tarfile.open(tmpname, "w", format=tarfile.PAX_FORMAT,
Guido van Rossume7ba4952007-06-06 23:52:48 +00001389 pax_headers=pax_headers)
Antoine Pitrou95f55602010-09-23 18:36:46 +00001390 try:
1391 tar.addfile(tarfile.TarInfo("test"))
1392 finally:
1393 tar.close()
Guido van Rossume7ba4952007-06-06 23:52:48 +00001394
1395 # Test if the global header was written correctly.
1396 tar = tarfile.open(tmpname, encoding="iso8859-1")
Antoine Pitrou95f55602010-09-23 18:36:46 +00001397 try:
1398 self.assertEqual(tar.pax_headers, pax_headers)
1399 self.assertEqual(tar.getmembers()[0].pax_headers, pax_headers)
1400 # Test if all the fields are strings.
1401 for key, val in tar.pax_headers.items():
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001402 self.assertIsNot(type(key), bytes)
1403 self.assertIsNot(type(val), bytes)
Antoine Pitrou95f55602010-09-23 18:36:46 +00001404 if key in tarfile.PAX_NUMBER_FIELDS:
1405 try:
1406 tarfile.PAX_NUMBER_FIELDS[key](val)
1407 except (TypeError, ValueError):
1408 self.fail("unable to convert pax header field")
1409 finally:
1410 tar.close()
Guido van Rossume7ba4952007-06-06 23:52:48 +00001411
1412 def test_pax_extended_header(self):
1413 # The fields from the pax header have priority over the
1414 # TarInfo.
Guido van Rossum9cbfffd2007-06-07 00:54:15 +00001415 pax_headers = {"path": "foo", "uid": "123"}
Guido van Rossume7ba4952007-06-06 23:52:48 +00001416
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001417 tar = tarfile.open(tmpname, "w", format=tarfile.PAX_FORMAT,
1418 encoding="iso8859-1")
Antoine Pitrou95f55602010-09-23 18:36:46 +00001419 try:
1420 t = tarfile.TarInfo()
1421 t.name = "\xe4\xf6\xfc" # non-ASCII
1422 t.uid = 8**8 # too large
1423 t.pax_headers = pax_headers
1424 tar.addfile(t)
1425 finally:
1426 tar.close()
Guido van Rossume7ba4952007-06-06 23:52:48 +00001427
1428 tar = tarfile.open(tmpname, encoding="iso8859-1")
Antoine Pitrou95f55602010-09-23 18:36:46 +00001429 try:
1430 t = tar.getmembers()[0]
1431 self.assertEqual(t.pax_headers, pax_headers)
1432 self.assertEqual(t.name, "foo")
1433 self.assertEqual(t.uid, 123)
1434 finally:
1435 tar.close()
Guido van Rossume7ba4952007-06-06 23:52:48 +00001436
1437
1438class UstarUnicodeTest(unittest.TestCase):
Guido van Rossume7ba4952007-06-06 23:52:48 +00001439
1440 format = tarfile.USTAR_FORMAT
1441
1442 def test_iso8859_1_filename(self):
1443 self._test_unicode_filename("iso8859-1")
1444
1445 def test_utf7_filename(self):
1446 self._test_unicode_filename("utf7")
Guido van Rossumd8faa362007-04-27 19:54:29 +00001447
1448 def test_utf8_filename(self):
Marc-André Lemburg8f36af72011-02-25 15:42:01 +00001449 self._test_unicode_filename("utf-8")
Guido van Rossumd8faa362007-04-27 19:54:29 +00001450
Guido van Rossumd8faa362007-04-27 19:54:29 +00001451 def _test_unicode_filename(self, encoding):
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001452 tar = tarfile.open(tmpname, "w", format=self.format,
1453 encoding=encoding, errors="strict")
Antoine Pitrou95f55602010-09-23 18:36:46 +00001454 try:
1455 name = "\xe4\xf6\xfc"
1456 tar.addfile(tarfile.TarInfo(name))
1457 finally:
1458 tar.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +00001459
1460 tar = tarfile.open(tmpname, encoding=encoding)
Antoine Pitrou95f55602010-09-23 18:36:46 +00001461 try:
1462 self.assertEqual(tar.getmembers()[0].name, name)
1463 finally:
1464 tar.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +00001465
1466 def test_unicode_filename_error(self):
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001467 tar = tarfile.open(tmpname, "w", format=self.format,
1468 encoding="ascii", errors="strict")
Antoine Pitrou95f55602010-09-23 18:36:46 +00001469 try:
1470 tarinfo = tarfile.TarInfo()
Guido van Rossume7ba4952007-06-06 23:52:48 +00001471
Antoine Pitrou95f55602010-09-23 18:36:46 +00001472 tarinfo.name = "\xe4\xf6\xfc"
1473 self.assertRaises(UnicodeError, tar.addfile, tarinfo)
Guido van Rossume7ba4952007-06-06 23:52:48 +00001474
Antoine Pitrou95f55602010-09-23 18:36:46 +00001475 tarinfo.name = "foo"
1476 tarinfo.uname = "\xe4\xf6\xfc"
1477 self.assertRaises(UnicodeError, tar.addfile, tarinfo)
1478 finally:
1479 tar.close()
Guido van Rossume7ba4952007-06-06 23:52:48 +00001480
1481 def test_unicode_argument(self):
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001482 tar = tarfile.open(tarname, "r",
1483 encoding="iso8859-1", errors="strict")
Antoine Pitrou95f55602010-09-23 18:36:46 +00001484 try:
1485 for t in tar:
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001486 self.assertIs(type(t.name), str)
1487 self.assertIs(type(t.linkname), str)
1488 self.assertIs(type(t.uname), str)
1489 self.assertIs(type(t.gname), str)
Antoine Pitrou95f55602010-09-23 18:36:46 +00001490 finally:
1491 tar.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +00001492
Guido van Rossume7ba4952007-06-06 23:52:48 +00001493 def test_uname_unicode(self):
Lars Gustäbel3741eff2007-08-21 12:17:05 +00001494 t = tarfile.TarInfo("foo")
1495 t.uname = "\xe4\xf6\xfc"
1496 t.gname = "\xe4\xf6\xfc"
Guido van Rossumd8faa362007-04-27 19:54:29 +00001497
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001498 tar = tarfile.open(tmpname, mode="w", format=self.format,
1499 encoding="iso8859-1")
Antoine Pitrou95f55602010-09-23 18:36:46 +00001500 try:
1501 tar.addfile(t)
1502 finally:
1503 tar.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +00001504
Lars Gustäbel3741eff2007-08-21 12:17:05 +00001505 tar = tarfile.open(tmpname, encoding="iso8859-1")
Antoine Pitrou95f55602010-09-23 18:36:46 +00001506 try:
Guido van Rossume7ba4952007-06-06 23:52:48 +00001507 t = tar.getmember("foo")
Antoine Pitrou95f55602010-09-23 18:36:46 +00001508 self.assertEqual(t.uname, "\xe4\xf6\xfc")
1509 self.assertEqual(t.gname, "\xe4\xf6\xfc")
1510
1511 if self.format != tarfile.PAX_FORMAT:
Antoine Pitrouab58b5f2010-09-23 19:39:35 +00001512 tar.close()
Antoine Pitrou95f55602010-09-23 18:36:46 +00001513 tar = tarfile.open(tmpname, encoding="ascii")
1514 t = tar.getmember("foo")
1515 self.assertEqual(t.uname, "\udce4\udcf6\udcfc")
1516 self.assertEqual(t.gname, "\udce4\udcf6\udcfc")
1517 finally:
1518 tar.close()
Guido van Rossumd8faa362007-04-27 19:54:29 +00001519
Lars Gustäbelb506dc32007-08-07 18:36:16 +00001520
Guido van Rossume7ba4952007-06-06 23:52:48 +00001521class GNUUnicodeTest(UstarUnicodeTest):
Guido van Rossumd8faa362007-04-27 19:54:29 +00001522
Guido van Rossume7ba4952007-06-06 23:52:48 +00001523 format = tarfile.GNU_FORMAT
Guido van Rossumd8faa362007-04-27 19:54:29 +00001524
Lars Gustäbel1465cc22010-05-17 18:02:50 +00001525 def test_bad_pax_header(self):
1526 # Test for issue #8633. GNU tar <= 1.23 creates raw binary fields
1527 # without a hdrcharset=BINARY header.
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001528 for encoding, name in (
1529 ("utf-8", "pax/bad-pax-\udce4\udcf6\udcfc"),
Lars Gustäbel1465cc22010-05-17 18:02:50 +00001530 ("iso8859-1", "pax/bad-pax-\xe4\xf6\xfc"),):
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001531 with tarfile.open(tarname, encoding=encoding,
1532 errors="surrogateescape") as tar:
Lars Gustäbel1465cc22010-05-17 18:02:50 +00001533 try:
1534 t = tar.getmember(name)
1535 except KeyError:
1536 self.fail("unable to read bad GNU tar pax header")
1537
Guido van Rossumd8faa362007-04-27 19:54:29 +00001538
Lars Gustäbel3741eff2007-08-21 12:17:05 +00001539class PAXUnicodeTest(UstarUnicodeTest):
1540
1541 format = tarfile.PAX_FORMAT
1542
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001543 # PAX_FORMAT ignores encoding in write mode.
1544 test_unicode_filename_error = None
1545
Lars Gustäbel1465cc22010-05-17 18:02:50 +00001546 def test_binary_header(self):
1547 # Test a POSIX.1-2008 compatible header with a hdrcharset=BINARY field.
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001548 for encoding, name in (
1549 ("utf-8", "pax/hdrcharset-\udce4\udcf6\udcfc"),
Lars Gustäbel1465cc22010-05-17 18:02:50 +00001550 ("iso8859-1", "pax/hdrcharset-\xe4\xf6\xfc"),):
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001551 with tarfile.open(tarname, encoding=encoding,
1552 errors="surrogateescape") as tar:
Lars Gustäbel1465cc22010-05-17 18:02:50 +00001553 try:
1554 t = tar.getmember(name)
1555 except KeyError:
1556 self.fail("unable to read POSIX.1-2008 binary header")
1557
Lars Gustäbel3741eff2007-08-21 12:17:05 +00001558
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001559class AppendTestBase:
Guido van Rossumd8faa362007-04-27 19:54:29 +00001560 # Test append mode (cp. patch #1652681).
Thomas Wouters902d6eb2007-01-09 23:18:33 +00001561
Guido van Rossumd8faa362007-04-27 19:54:29 +00001562 def setUp(self):
1563 self.tarname = tmpname
1564 if os.path.exists(self.tarname):
1565 os.remove(self.tarname)
Thomas Wouters902d6eb2007-01-09 23:18:33 +00001566
Guido van Rossumd8faa362007-04-27 19:54:29 +00001567 def _create_testtar(self, mode="w:"):
Antoine Pitrou95f55602010-09-23 18:36:46 +00001568 with tarfile.open(tarname, encoding="iso8859-1") as src:
1569 t = src.getmember("ustar/regtype")
1570 t.name = "foo"
Lars Gustäbel7a919e92012-05-05 18:15:03 +02001571 with src.extractfile(t) as f:
Antoine Pitroue1eca4e2010-10-29 23:49:49 +00001572 with tarfile.open(self.tarname, mode) as tar:
1573 tar.addfile(t, f)
Neal Norwitzb9ef4ae2003-01-05 23:19:43 +00001574
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001575 def test_append_compressed(self):
1576 self._create_testtar("w:" + self.suffix)
1577 self.assertRaises(tarfile.ReadError, tarfile.open, tmpname, "a")
1578
1579class AppendTest(AppendTestBase, unittest.TestCase):
1580 test_append_compressed = None
1581
1582 def _add_testfile(self, fileobj=None):
1583 with tarfile.open(self.tarname, "a", fileobj=fileobj) as tar:
1584 tar.addfile(tarfile.TarInfo("bar"))
1585
Guido van Rossumd8faa362007-04-27 19:54:29 +00001586 def _test(self, names=["bar"], fileobj=None):
Antoine Pitrou95f55602010-09-23 18:36:46 +00001587 with tarfile.open(self.tarname, fileobj=fileobj) as tar:
1588 self.assertEqual(tar.getnames(), names)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001589
1590 def test_non_existing(self):
1591 self._add_testfile()
1592 self._test()
1593
1594 def test_empty(self):
Lars Gustäbel9520a432009-11-22 18:48:49 +00001595 tarfile.open(self.tarname, "w:").close()
Guido van Rossumd8faa362007-04-27 19:54:29 +00001596 self._add_testfile()
1597 self._test()
1598
1599 def test_empty_fileobj(self):
Lars Gustäbel9520a432009-11-22 18:48:49 +00001600 fobj = io.BytesIO(b"\0" * 1024)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001601 self._add_testfile(fobj)
1602 fobj.seek(0)
1603 self._test(fileobj=fobj)
1604
1605 def test_fileobj(self):
1606 self._create_testtar()
Antoine Pitrou95f55602010-09-23 18:36:46 +00001607 with open(self.tarname, "rb") as fobj:
1608 data = fobj.read()
Guido van Rossum34d19282007-08-09 01:03:29 +00001609 fobj = io.BytesIO(data)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001610 self._add_testfile(fobj)
1611 fobj.seek(0)
1612 self._test(names=["foo", "bar"], fileobj=fobj)
1613
1614 def test_existing(self):
1615 self._create_testtar()
1616 self._add_testfile()
1617 self._test(names=["foo", "bar"])
1618
Lars Gustäbel9520a432009-11-22 18:48:49 +00001619 # Append mode is supposed to fail if the tarfile to append to
1620 # does not end with a zero block.
1621 def _test_error(self, data):
Antoine Pitrou95f55602010-09-23 18:36:46 +00001622 with open(self.tarname, "wb") as fobj:
1623 fobj.write(data)
Lars Gustäbel9520a432009-11-22 18:48:49 +00001624 self.assertRaises(tarfile.ReadError, self._add_testfile)
1625
1626 def test_null(self):
1627 self._test_error(b"")
1628
1629 def test_incomplete(self):
1630 self._test_error(b"\0" * 13)
1631
1632 def test_premature_eof(self):
1633 data = tarfile.TarInfo("foo").tobuf()
1634 self._test_error(data)
1635
1636 def test_trailing_garbage(self):
1637 data = tarfile.TarInfo("foo").tobuf()
1638 self._test_error(data + b"\0" * 13)
1639
1640 def test_invalid(self):
1641 self._test_error(b"a" * 512)
1642
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001643class GzipAppendTest(GzipTest, AppendTestBase, unittest.TestCase):
1644 pass
1645
1646class Bz2AppendTest(Bz2Test, AppendTestBase, unittest.TestCase):
1647 pass
1648
1649class LzmaAppendTest(LzmaTest, AppendTestBase, unittest.TestCase):
1650 pass
1651
Guido van Rossumd8faa362007-04-27 19:54:29 +00001652
1653class LimitsTest(unittest.TestCase):
1654
1655 def test_ustar_limits(self):
1656 # 100 char name
1657 tarinfo = tarfile.TarInfo("0123456789" * 10)
Guido van Rossume7ba4952007-06-06 23:52:48 +00001658 tarinfo.tobuf(tarfile.USTAR_FORMAT)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001659
1660 # 101 char name that cannot be stored
1661 tarinfo = tarfile.TarInfo("0123456789" * 10 + "0")
Guido van Rossume7ba4952007-06-06 23:52:48 +00001662 self.assertRaises(ValueError, tarinfo.tobuf, tarfile.USTAR_FORMAT)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001663
1664 # 256 char name with a slash at pos 156
1665 tarinfo = tarfile.TarInfo("123/" * 62 + "longname")
Guido van Rossume7ba4952007-06-06 23:52:48 +00001666 tarinfo.tobuf(tarfile.USTAR_FORMAT)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001667
1668 # 256 char name that cannot be stored
1669 tarinfo = tarfile.TarInfo("1234567/" * 31 + "longname")
Guido van Rossume7ba4952007-06-06 23:52:48 +00001670 self.assertRaises(ValueError, tarinfo.tobuf, tarfile.USTAR_FORMAT)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001671
1672 # 512 char name
1673 tarinfo = tarfile.TarInfo("123/" * 126 + "longname")
Guido van Rossume7ba4952007-06-06 23:52:48 +00001674 self.assertRaises(ValueError, tarinfo.tobuf, tarfile.USTAR_FORMAT)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001675
1676 # 512 char linkname
1677 tarinfo = tarfile.TarInfo("longlink")
1678 tarinfo.linkname = "123/" * 126 + "longname"
Guido van Rossume7ba4952007-06-06 23:52:48 +00001679 self.assertRaises(ValueError, tarinfo.tobuf, tarfile.USTAR_FORMAT)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001680
1681 # uid > 8 digits
1682 tarinfo = tarfile.TarInfo("name")
Guido van Rossumcd16bf62007-06-13 18:07:49 +00001683 tarinfo.uid = 0o10000000
Guido van Rossume7ba4952007-06-06 23:52:48 +00001684 self.assertRaises(ValueError, tarinfo.tobuf, tarfile.USTAR_FORMAT)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001685
1686 def test_gnu_limits(self):
1687 tarinfo = tarfile.TarInfo("123/" * 126 + "longname")
Guido van Rossume7ba4952007-06-06 23:52:48 +00001688 tarinfo.tobuf(tarfile.GNU_FORMAT)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001689
1690 tarinfo = tarfile.TarInfo("longlink")
1691 tarinfo.linkname = "123/" * 126 + "longname"
Guido van Rossume7ba4952007-06-06 23:52:48 +00001692 tarinfo.tobuf(tarfile.GNU_FORMAT)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001693
1694 # uid >= 256 ** 7
1695 tarinfo = tarfile.TarInfo("name")
Guido van Rossumcd16bf62007-06-13 18:07:49 +00001696 tarinfo.uid = 0o4000000000000000000
Guido van Rossume7ba4952007-06-06 23:52:48 +00001697 self.assertRaises(ValueError, tarinfo.tobuf, tarfile.GNU_FORMAT)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001698
1699 def test_pax_limits(self):
Guido van Rossumd8faa362007-04-27 19:54:29 +00001700 tarinfo = tarfile.TarInfo("123/" * 126 + "longname")
Guido van Rossume7ba4952007-06-06 23:52:48 +00001701 tarinfo.tobuf(tarfile.PAX_FORMAT)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001702
1703 tarinfo = tarfile.TarInfo("longlink")
1704 tarinfo.linkname = "123/" * 126 + "longname"
Guido van Rossume7ba4952007-06-06 23:52:48 +00001705 tarinfo.tobuf(tarfile.PAX_FORMAT)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001706
1707 tarinfo = tarfile.TarInfo("name")
Guido van Rossumcd16bf62007-06-13 18:07:49 +00001708 tarinfo.uid = 0o4000000000000000000
Guido van Rossume7ba4952007-06-06 23:52:48 +00001709 tarinfo.tobuf(tarfile.PAX_FORMAT)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001710
1711
Lars Gustäbelb506dc32007-08-07 18:36:16 +00001712class MiscTest(unittest.TestCase):
1713
1714 def test_char_fields(self):
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001715 self.assertEqual(tarfile.stn("foo", 8, "ascii", "strict"),
1716 b"foo\0\0\0\0\0")
1717 self.assertEqual(tarfile.stn("foobar", 3, "ascii", "strict"),
1718 b"foo")
1719 self.assertEqual(tarfile.nts(b"foo\0\0\0\0\0", "ascii", "strict"),
1720 "foo")
1721 self.assertEqual(tarfile.nts(b"foo\0bar\0", "ascii", "strict"),
1722 "foo")
Lars Gustäbelb506dc32007-08-07 18:36:16 +00001723
Lars Gustäbelac3d1372011-10-14 12:46:40 +02001724 def test_read_number_fields(self):
1725 # Issue 13158: Test if GNU tar specific base-256 number fields
1726 # are decoded correctly.
1727 self.assertEqual(tarfile.nti(b"0000001\x00"), 1)
1728 self.assertEqual(tarfile.nti(b"7777777\x00"), 0o7777777)
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001729 self.assertEqual(tarfile.nti(b"\x80\x00\x00\x00\x00\x20\x00\x00"),
1730 0o10000000)
1731 self.assertEqual(tarfile.nti(b"\x80\x00\x00\x00\xff\xff\xff\xff"),
1732 0xffffffff)
1733 self.assertEqual(tarfile.nti(b"\xff\xff\xff\xff\xff\xff\xff\xff"),
1734 -1)
1735 self.assertEqual(tarfile.nti(b"\xff\xff\xff\xff\xff\xff\xff\x9c"),
1736 -100)
1737 self.assertEqual(tarfile.nti(b"\xff\x00\x00\x00\x00\x00\x00\x00"),
1738 -0x100000000000000)
Lars Gustäbelac3d1372011-10-14 12:46:40 +02001739
1740 def test_write_number_fields(self):
Lars Gustäbelb506dc32007-08-07 18:36:16 +00001741 self.assertEqual(tarfile.itn(1), b"0000001\x00")
Lars Gustäbelac3d1372011-10-14 12:46:40 +02001742 self.assertEqual(tarfile.itn(0o7777777), b"7777777\x00")
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001743 self.assertEqual(tarfile.itn(0o10000000),
1744 b"\x80\x00\x00\x00\x00\x20\x00\x00")
1745 self.assertEqual(tarfile.itn(0xffffffff),
1746 b"\x80\x00\x00\x00\xff\xff\xff\xff")
1747 self.assertEqual(tarfile.itn(-1),
1748 b"\xff\xff\xff\xff\xff\xff\xff\xff")
1749 self.assertEqual(tarfile.itn(-100),
1750 b"\xff\xff\xff\xff\xff\xff\xff\x9c")
1751 self.assertEqual(tarfile.itn(-0x100000000000000),
1752 b"\xff\x00\x00\x00\x00\x00\x00\x00")
Lars Gustäbelac3d1372011-10-14 12:46:40 +02001753
1754 def test_number_field_limits(self):
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001755 with self.assertRaises(ValueError):
1756 tarfile.itn(-1, 8, tarfile.USTAR_FORMAT)
1757 with self.assertRaises(ValueError):
1758 tarfile.itn(0o10000000, 8, tarfile.USTAR_FORMAT)
1759 with self.assertRaises(ValueError):
1760 tarfile.itn(-0x10000000001, 6, tarfile.GNU_FORMAT)
1761 with self.assertRaises(ValueError):
1762 tarfile.itn(0x10000000000, 6, tarfile.GNU_FORMAT)
Lars Gustäbelb506dc32007-08-07 18:36:16 +00001763
1764
Lars Gustäbel01385812010-03-03 12:08:54 +00001765class ContextManagerTest(unittest.TestCase):
1766
1767 def test_basic(self):
1768 with tarfile.open(tarname) as tar:
1769 self.assertFalse(tar.closed, "closed inside runtime context")
1770 self.assertTrue(tar.closed, "context manager failed")
1771
1772 def test_closed(self):
1773 # The __enter__() method is supposed to raise IOError
1774 # if the TarFile object is already closed.
1775 tar = tarfile.open(tarname)
1776 tar.close()
1777 with self.assertRaises(IOError):
1778 with tar:
1779 pass
1780
1781 def test_exception(self):
1782 # Test if the IOError exception is passed through properly.
1783 with self.assertRaises(Exception) as exc:
1784 with tarfile.open(tarname) as tar:
1785 raise IOError
1786 self.assertIsInstance(exc.exception, IOError,
1787 "wrong exception raised in context manager")
1788 self.assertTrue(tar.closed, "context manager failed")
1789
1790 def test_no_eof(self):
1791 # __exit__() must not write end-of-archive blocks if an
1792 # exception was raised.
1793 try:
1794 with tarfile.open(tmpname, "w") as tar:
1795 raise Exception
1796 except:
1797 pass
1798 self.assertEqual(os.path.getsize(tmpname), 0,
1799 "context manager wrote an end-of-archive block")
1800 self.assertTrue(tar.closed, "context manager failed")
1801
1802 def test_eof(self):
1803 # __exit__() must write end-of-archive blocks, i.e. call
1804 # TarFile.close() if there was no error.
1805 with tarfile.open(tmpname, "w"):
1806 pass
1807 self.assertNotEqual(os.path.getsize(tmpname), 0,
1808 "context manager wrote no end-of-archive block")
1809
1810 def test_fileobj(self):
1811 # Test that __exit__() did not close the external file
1812 # object.
Antoine Pitrou95f55602010-09-23 18:36:46 +00001813 with open(tmpname, "wb") as fobj:
1814 try:
1815 with tarfile.open(fileobj=fobj, mode="w") as tar:
1816 raise Exception
1817 except:
1818 pass
1819 self.assertFalse(fobj.closed, "external file object was closed")
1820 self.assertTrue(tar.closed, "context manager failed")
Lars Gustäbel01385812010-03-03 12:08:54 +00001821
1822
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001823@unittest.skipIf(hasattr(os, "link"), "requires os.link to be missing")
1824class LinkEmulationTest(ReadTest, unittest.TestCase):
Lars Gustäbel1b512722010-06-03 12:45:16 +00001825
1826 # Test for issue #8741 regression. On platforms that do not support
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001827 # symbolic or hard links tarfile tries to extract these types of members
1828 # as the regular files they point to.
Lars Gustäbel1b512722010-06-03 12:45:16 +00001829 def _test_link_extraction(self, name):
1830 self.tar.extract(name, TEMPDIR)
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001831 with open(os.path.join(TEMPDIR, name), "rb") as f:
1832 data = f.read()
Lars Gustäbel1b512722010-06-03 12:45:16 +00001833 self.assertEqual(md5sum(data), md5_regtype)
1834
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001835 # See issues #1578269, #8879, and #17689 for some history on these skips
Brian Curtind40e6f72010-07-08 21:39:08 +00001836 @unittest.skipIf(hasattr(os.path, "islink"),
1837 "Skip emulation - has os.path.islink but not os.link")
Lars Gustäbel1b512722010-06-03 12:45:16 +00001838 def test_hardlink_extraction1(self):
1839 self._test_link_extraction("ustar/lnktype")
1840
Brian Curtind40e6f72010-07-08 21:39:08 +00001841 @unittest.skipIf(hasattr(os.path, "islink"),
1842 "Skip emulation - has os.path.islink but not os.link")
Lars Gustäbel1b512722010-06-03 12:45:16 +00001843 def test_hardlink_extraction2(self):
1844 self._test_link_extraction("./ustar/linktest2/lnktype")
1845
Brian Curtin74e45612010-07-09 15:58:59 +00001846 @unittest.skipIf(hasattr(os, "symlink"),
1847 "Skip emulation if symlink exists")
Lars Gustäbel1b512722010-06-03 12:45:16 +00001848 def test_symlink_extraction1(self):
1849 self._test_link_extraction("ustar/symtype")
1850
Brian Curtin74e45612010-07-09 15:58:59 +00001851 @unittest.skipIf(hasattr(os, "symlink"),
1852 "Skip emulation if symlink exists")
Lars Gustäbel1b512722010-06-03 12:45:16 +00001853 def test_symlink_extraction2(self):
1854 self._test_link_extraction("./ustar/linktest2/symtype")
1855
1856
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001857class Bz2PartialReadTest(Bz2Test, unittest.TestCase):
Lars Gustäbel42e00912009-03-22 20:34:29 +00001858 # Issue5068: The _BZ2Proxy.read() method loops forever
1859 # on an empty or partial bzipped file.
1860
1861 def _test_partial_input(self, mode):
1862 class MyBytesIO(io.BytesIO):
1863 hit_eof = False
1864 def read(self, n):
1865 if self.hit_eof:
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001866 raise AssertionError("infinite loop detected in "
1867 "tarfile.open()")
Lars Gustäbel42e00912009-03-22 20:34:29 +00001868 self.hit_eof = self.tell() == len(self.getvalue())
1869 return super(MyBytesIO, self).read(n)
Lars Gustäbel9520a432009-11-22 18:48:49 +00001870 def seek(self, *args):
1871 self.hit_eof = False
1872 return super(MyBytesIO, self).seek(*args)
Lars Gustäbel42e00912009-03-22 20:34:29 +00001873
1874 data = bz2.compress(tarfile.TarInfo("foo").tobuf())
1875 for x in range(len(data) + 1):
Lars Gustäbel9520a432009-11-22 18:48:49 +00001876 try:
1877 tarfile.open(fileobj=MyBytesIO(data[:x]), mode=mode)
1878 except tarfile.ReadError:
1879 pass # we have no interest in ReadErrors
Lars Gustäbel42e00912009-03-22 20:34:29 +00001880
1881 def test_partial_input(self):
1882 self._test_partial_input("r")
1883
1884 def test_partial_input_bz2(self):
1885 self._test_partial_input("r:bz2")
1886
1887
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001888def setUpModule():
Antoine Pitrou95f55602010-09-23 18:36:46 +00001889 support.unlink(TEMPDIR)
Antoine Pitrou941ee882009-11-11 20:59:38 +00001890 os.makedirs(TEMPDIR)
Neal Norwitzb9ef4ae2003-01-05 23:19:43 +00001891
Antoine Pitrou95f55602010-09-23 18:36:46 +00001892 with open(tarname, "rb") as fobj:
1893 data = fobj.read()
Neal Norwitza4f651a2004-07-20 22:07:44 +00001894
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001895 # Create compressed tarfiles.
1896 for c in GzipTest, Bz2Test, LzmaTest:
1897 if c.open:
1898 support.unlink(c.tarname)
1899 with c.open(c.tarname, "wb") as tar:
1900 tar.write(data)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001901
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001902def tearDownModule():
1903 if os.path.exists(TEMPDIR):
1904 shutil.rmtree(TEMPDIR)
Neal Norwitzb9ef4ae2003-01-05 23:19:43 +00001905
Neal Norwitz996acf12003-02-17 14:51:41 +00001906if __name__ == "__main__":
Serhiy Storchaka8b562922013-06-17 15:38:50 +03001907 unittest.main()