summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-01-08 11:16:06 (GMT)
committerGitHub <noreply@github.com>2024-01-08 11:16:06 (GMT)
commit73573352fc4489ab3ded61f9a55965d9913de1f5 (patch)
treec7274212a62cbaae15675181b3fd07cbbe7f5abb
parent4db8d3be49b3a229932a24f6271d3f062843d08f (diff)
downloadcpython-73573352fc4489ab3ded61f9a55965d9913de1f5.zip
cpython-73573352fc4489ab3ded61f9a55965d9913de1f5.tar.gz
cpython-73573352fc4489ab3ded61f9a55965d9913de1f5.tar.bz2
[3.11] gh-74678: Increase base64 test coverage (GH-21913) (GH-113810)
Ensure the character y is disallowed within an Ascii85 5-tuple. (cherry picked from commit 802d4954f12541ba28dd7f18bf4a65054941a80d) Co-authored-by: Zackery Spytz <zspytz@gmail.com> Co-authored-by: Lee Cannon <leecannon@leecannon.xyz>
-rw-r--r--Lib/test/test_base64.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_base64.py b/Lib/test/test_base64.py
index 217f294..8582cdc 100644
--- a/Lib/test/test_base64.py
+++ b/Lib/test/test_base64.py
@@ -582,6 +582,7 @@ class BaseXYTestCase(unittest.TestCase):
eq(base64.a85decode(b'y+<Vd', foldspaces=True, adobe=False), b' '*7)
eq(base64.a85decode(b'y+<U', foldspaces=True, adobe=False), b' '*6)
eq(base64.a85decode(b'y+9', foldspaces=True, adobe=False), b' '*5)
+ eq(base64.a85decode(b'aaaaay', foldspaces=True), b'\xc9\x80\x0b@ ')
self.check_other_types(base64.a85decode, b'GB\\6`E-ZP=Df.1GEb>',
b"www.python.org")
@@ -685,6 +686,8 @@ class BaseXYTestCase(unittest.TestCase):
self.assertRaises(ValueError, base64.a85decode, b's8W', adobe=False)
self.assertRaises(ValueError, base64.a85decode, b's8W-', adobe=False)
self.assertRaises(ValueError, base64.a85decode, b's8W-"', adobe=False)
+ self.assertRaises(ValueError, base64.a85decode, b'aaaay',
+ foldspaces=True)
def test_b85decode_errors(self):
illegal = list(range(33)) + \