summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-08-22 19:18:56 (GMT)
committerGuido van Rossum <guido@python.org>2002-08-22 19:18:56 (GMT)
commitcb682584a3aa4057f9df53db188b7e163b8db58b (patch)
tree3d69eb3505abcb7c4e4a582c09105c6ba77b081c
parent373198e7515906c7945f289c7b16fa5995bb30a5 (diff)
downloadcpython-cb682584a3aa4057f9df53db188b7e163b8db58b.zip
cpython-cb682584a3aa4057f9df53db188b7e163b8db58b.tar.gz
cpython-cb682584a3aa4057f9df53db188b7e163b8db58b.tar.bz2
Made it more readable.
-rw-r--r--Lib/test/test_base64.py76
1 files changed, 30 insertions, 46 deletions
diff --git a/Lib/test/test_base64.py b/Lib/test/test_base64.py
index 42e3c81..dfd67a3 100644
--- a/Lib/test/test_base64.py
+++ b/Lib/test/test_base64.py
@@ -1,53 +1,37 @@
-import unittest
-from test import test_support
-import base64
-from binascii import Error as binascii_error
+from unittest import TestCase
+from test.test_support import vereq, run_unittest
+from base64 import encodestring, decodestring
-class Base64TestCase(unittest.TestCase):
- def test_encode_string(self):
- """Testing encode string"""
- test_support.verify(base64.encodestring("www.python.org") ==
- "d3d3LnB5dGhvbi5vcmc=\n",
- reason="www.python.org encodestring failed")
- test_support.verify(base64.encodestring("a") ==
- "YQ==\n",
- reason="a encodestring failed")
- test_support.verify(base64.encodestring("ab") ==
- "YWI=\n",
- reason="ab encodestring failed")
- test_support.verify(base64.encodestring("abc") ==
- "YWJj\n",
- reason="abc encodestring failed")
- test_support.verify(base64.encodestring("") ==
- "",
- reason="null encodestring failed")
- test_support.verify(base64.encodestring(
- "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#0^&*();:<>,. []{}") ==
- "YWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWjAxMjM0\nNTY3ODkhQCMwXiYqKCk7Ojw+LC4gW117fQ==\n",
- reason = "long encodestring failed")
+class Base64TestCase(TestCase):
- def test_decode_string(self):
- """Testing decode string"""
- test_support.verify(base64.decodestring("d3d3LnB5dGhvbi5vcmc=\n") ==
- "www.python.org",
- reason="www.python.org decodestring failed")
- test_support.verify(base64.decodestring("YQ==\n") ==
- "a",
- reason="a decodestring failed")
- test_support.verify(base64.decodestring("YWI=\n") ==
- "ab",
- reason="ab decodestring failed")
- test_support.verify(base64.decodestring("YWJj\n") ==
- "abc",
- reason="abc decodestring failed")
- test_support.verify(base64.decodestring(
- "YWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWjAxMjM0\nNTY3ODkhQCMwXiYqKCk7Ojw+LC4gW117fQ==\n") ==
- "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#0^&*();:<>,. []{}",
- reason = "long decodestring failed")
- test_support.verify(base64.decodestring('') == '')
+ def test_encodestring(self):
+ vereq(encodestring("www.python.org"), "d3d3LnB5dGhvbi5vcmc=\n")
+ vereq(encodestring("a"), "YQ==\n")
+ vereq(encodestring("ab"), "YWI=\n")
+ vereq(encodestring("abc"), "YWJj\n")
+ vereq(encodestring(""), "")
+ vereq(encodestring("abcdefghijklmnopqrstuvwxyz"
+ "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
+ "0123456789!@#0^&*();:<>,. []{}"),
+ "YWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNE"
+ "RUZHSElKS0xNTk9QUVJTVFVWV1hZWjAxMjM0\nNT"
+ "Y3ODkhQCMwXiYqKCk7Ojw+LC4gW117fQ==\n")
+
+ def test_decodestring(self):
+ vereq(decodestring("d3d3LnB5dGhvbi5vcmc=\n"), "www.python.org")
+ vereq(decodestring("YQ==\n"), "a")
+ vereq(decodestring("YWI=\n"), "ab")
+ vereq(decodestring("YWJj\n"), "abc")
+ vereq(decodestring("YWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNE"
+ "RUZHSElKS0xNTk9QUVJTVFVWV1hZWjAxMjM0\nNT"
+ "Y3ODkhQCMwXiYqKCk7Ojw+LC4gW117fQ==\n"),
+ "abcdefghijklmnopqrstuvwxyz"
+ "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
+ "0123456789!@#0^&*();:<>,. []{}")
+ vereq(decodestring(''), '')
def test_main():
- test_support.run_unittest(Base64TestCase)
+ run_unittest(Base64TestCase)
if __name__ == "__main__":
test_main()