/Lib/test/test_uu.py

https://bitbucket.org/mirror/cpython/ · Python · 260 lines · 201 code · 43 blank · 16 comment · 22 complexity · 716f2c2af00c7c17dffd5a4911d4bbae MD5 · raw file

  1. """
  2. Tests for uu module.
  3. Nick Mathewson
  4. """
  5. import unittest
  6. from test import support
  7. import sys, os
  8. import uu
  9. import io
  10. plaintext = b"The smooth-scaled python crept over the sleeping dog\n"
  11. encodedtext = b"""\
  12. M5&AE('-M;V]T:\"US8V%L960@<'ET:&]N(&-R97!T(&]V97(@=&AE('-L965P
  13. (:6YG(&1O9PH """
  14. # Stolen from io.py
  15. class FakeIO(io.TextIOWrapper):
  16. """Text I/O implementation using an in-memory buffer.
  17. Can be a used as a drop-in replacement for sys.stdin and sys.stdout.
  18. """
  19. # XXX This is really slow, but fully functional
  20. def __init__(self, initial_value="", encoding="utf-8",
  21. errors="strict", newline="\n"):
  22. super(FakeIO, self).__init__(io.BytesIO(),
  23. encoding=encoding,
  24. errors=errors,
  25. newline=newline)
  26. self._encoding = encoding
  27. self._errors = errors
  28. if initial_value:
  29. if not isinstance(initial_value, str):
  30. initial_value = str(initial_value)
  31. self.write(initial_value)
  32. self.seek(0)
  33. def getvalue(self):
  34. self.flush()
  35. return self.buffer.getvalue().decode(self._encoding, self._errors)
  36. def encodedtextwrapped(mode, filename):
  37. return (bytes("begin %03o %s\n" % (mode, filename), "ascii") +
  38. encodedtext + b"\n \nend\n")
  39. class UUTest(unittest.TestCase):
  40. def test_encode(self):
  41. inp = io.BytesIO(plaintext)
  42. out = io.BytesIO()
  43. uu.encode(inp, out, "t1")
  44. self.assertEqual(out.getvalue(), encodedtextwrapped(0o666, "t1"))
  45. inp = io.BytesIO(plaintext)
  46. out = io.BytesIO()
  47. uu.encode(inp, out, "t1", 0o644)
  48. self.assertEqual(out.getvalue(), encodedtextwrapped(0o644, "t1"))
  49. def test_decode(self):
  50. inp = io.BytesIO(encodedtextwrapped(0o666, "t1"))
  51. out = io.BytesIO()
  52. uu.decode(inp, out)
  53. self.assertEqual(out.getvalue(), plaintext)
  54. inp = io.BytesIO(
  55. b"UUencoded files may contain many lines,\n" +
  56. b"even some that have 'begin' in them.\n" +
  57. encodedtextwrapped(0o666, "t1")
  58. )
  59. out = io.BytesIO()
  60. uu.decode(inp, out)
  61. self.assertEqual(out.getvalue(), plaintext)
  62. def test_truncatedinput(self):
  63. inp = io.BytesIO(b"begin 644 t1\n" + encodedtext)
  64. out = io.BytesIO()
  65. try:
  66. uu.decode(inp, out)
  67. self.fail("No exception raised")
  68. except uu.Error as e:
  69. self.assertEqual(str(e), "Truncated input file")
  70. def test_missingbegin(self):
  71. inp = io.BytesIO(b"")
  72. out = io.BytesIO()
  73. try:
  74. uu.decode(inp, out)
  75. self.fail("No exception raised")
  76. except uu.Error as e:
  77. self.assertEqual(str(e), "No valid begin line found in input file")
  78. def test_garbage_padding(self):
  79. # Issue #22406
  80. encodedtext = (
  81. b"begin 644 file\n"
  82. # length 1; bits 001100 111111 111111 111111
  83. b"\x21\x2C\x5F\x5F\x5F\n"
  84. b"\x20\n"
  85. b"end\n"
  86. )
  87. plaintext = b"\x33" # 00110011
  88. with self.subTest("uu.decode()"):
  89. inp = io.BytesIO(encodedtext)
  90. out = io.BytesIO()
  91. uu.decode(inp, out, quiet=True)
  92. self.assertEqual(out.getvalue(), plaintext)
  93. with self.subTest("uu_codec"):
  94. import codecs
  95. decoded = codecs.decode(encodedtext, "uu_codec")
  96. self.assertEqual(decoded, plaintext)
  97. class UUStdIOTest(unittest.TestCase):
  98. def setUp(self):
  99. self.stdin = sys.stdin
  100. self.stdout = sys.stdout
  101. def tearDown(self):
  102. sys.stdin = self.stdin
  103. sys.stdout = self.stdout
  104. def test_encode(self):
  105. sys.stdin = FakeIO(plaintext.decode("ascii"))
  106. sys.stdout = FakeIO()
  107. uu.encode("-", "-", "t1", 0o666)
  108. self.assertEqual(sys.stdout.getvalue(),
  109. encodedtextwrapped(0o666, "t1").decode("ascii"))
  110. def test_decode(self):
  111. sys.stdin = FakeIO(encodedtextwrapped(0o666, "t1").decode("ascii"))
  112. sys.stdout = FakeIO()
  113. uu.decode("-", "-")
  114. stdout = sys.stdout
  115. sys.stdout = self.stdout
  116. sys.stdin = self.stdin
  117. self.assertEqual(stdout.getvalue(), plaintext.decode("ascii"))
  118. class UUFileTest(unittest.TestCase):
  119. def _kill(self, f):
  120. # close and remove file
  121. if f is None:
  122. return
  123. try:
  124. f.close()
  125. except (SystemExit, KeyboardInterrupt):
  126. raise
  127. except:
  128. pass
  129. try:
  130. os.unlink(f.name)
  131. except (SystemExit, KeyboardInterrupt):
  132. raise
  133. except:
  134. pass
  135. def setUp(self):
  136. self.tmpin = support.TESTFN + "i"
  137. self.tmpout = support.TESTFN + "o"
  138. def tearDown(self):
  139. del self.tmpin
  140. del self.tmpout
  141. def test_encode(self):
  142. fin = fout = None
  143. try:
  144. support.unlink(self.tmpin)
  145. fin = open(self.tmpin, 'wb')
  146. fin.write(plaintext)
  147. fin.close()
  148. fin = open(self.tmpin, 'rb')
  149. fout = open(self.tmpout, 'wb')
  150. uu.encode(fin, fout, self.tmpin, mode=0o644)
  151. fin.close()
  152. fout.close()
  153. fout = open(self.tmpout, 'rb')
  154. s = fout.read()
  155. fout.close()
  156. self.assertEqual(s, encodedtextwrapped(0o644, self.tmpin))
  157. # in_file and out_file as filenames
  158. uu.encode(self.tmpin, self.tmpout, self.tmpin, mode=0o644)
  159. fout = open(self.tmpout, 'rb')
  160. s = fout.read()
  161. fout.close()
  162. self.assertEqual(s, encodedtextwrapped(0o644, self.tmpin))
  163. finally:
  164. self._kill(fin)
  165. self._kill(fout)
  166. def test_decode(self):
  167. f = None
  168. try:
  169. support.unlink(self.tmpin)
  170. f = open(self.tmpin, 'wb')
  171. f.write(encodedtextwrapped(0o644, self.tmpout))
  172. f.close()
  173. f = open(self.tmpin, 'rb')
  174. uu.decode(f)
  175. f.close()
  176. f = open(self.tmpout, 'rb')
  177. s = f.read()
  178. f.close()
  179. self.assertEqual(s, plaintext)
  180. # XXX is there an xp way to verify the mode?
  181. finally:
  182. self._kill(f)
  183. def test_decode_filename(self):
  184. f = None
  185. try:
  186. support.unlink(self.tmpin)
  187. f = open(self.tmpin, 'wb')
  188. f.write(encodedtextwrapped(0o644, self.tmpout))
  189. f.close()
  190. uu.decode(self.tmpin)
  191. f = open(self.tmpout, 'rb')
  192. s = f.read()
  193. f.close()
  194. self.assertEqual(s, plaintext)
  195. finally:
  196. self._kill(f)
  197. def test_decodetwice(self):
  198. # Verify that decode() will refuse to overwrite an existing file
  199. f = None
  200. try:
  201. f = io.BytesIO(encodedtextwrapped(0o644, self.tmpout))
  202. f = open(self.tmpin, 'rb')
  203. uu.decode(f)
  204. f.close()
  205. f = open(self.tmpin, 'rb')
  206. self.assertRaises(uu.Error, uu.decode, f)
  207. f.close()
  208. finally:
  209. self._kill(f)
  210. def test_main():
  211. support.run_unittest(UUTest,
  212. UUStdIOTest,
  213. UUFileTest,
  214. )
  215. if __name__=="__main__":
  216. test_main()