diff options
author | Hynek Schlawack <hs@ox.cx> | 2012-07-17 11:10:15 (GMT) |
---|---|---|
committer | Hynek Schlawack <hs@ox.cx> | 2012-07-17 11:10:15 (GMT) |
commit | 1815191f1722546f6af2b5207df4efaa50be38fd (patch) | |
tree | f9b57d6c79d551df882f6982f9d18679c3d35f60 /Lib/test/test_posixpath.py | |
parent | 9c3cf6b4a00d9c77063378bd5a3a238f96a36542 (diff) | |
parent | c5a45669229906a2ff8ea87bd69d1df2feac8ffc (diff) | |
download | cpython-1815191f1722546f6af2b5207df4efaa50be38fd.zip cpython-1815191f1722546f6af2b5207df4efaa50be38fd.tar.gz cpython-1815191f1722546f6af2b5207df4efaa50be38fd.tar.bz2 |
#15377: Make posixpath.join() more strict when checking for str/bytes mix
Based on a patch by Nick Coghlan.
Diffstat (limited to 'Lib/test/test_posixpath.py')
-rw-r--r-- | Lib/test/test_posixpath.py | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py index e89f22e..060fdc3 100644 --- a/Lib/test/test_posixpath.py +++ b/Lib/test/test_posixpath.py @@ -1,3 +1,4 @@ +import itertools import os import posixpath import sys @@ -56,18 +57,21 @@ class PosixPathTest(unittest.TestCase): self.assertEqual(posixpath.join(b"/foo/", b"bar/", b"baz/"), b"/foo/bar/baz/") - # Check for friendly str/bytes mixing message - for args in [[b'bytes', 'str'], - [bytearray(b'bytes'), 'str']]: - for _ in range(2): + def check_error_msg(list_of_args, msg): + """Check posixpath.join raises friendly TypeErrors.""" + for args in (item for perm in list_of_args + for item in itertools.permutations(perm)): with self.assertRaises(TypeError) as cm: posixpath.join(*args) - self.assertEqual( - "Can't mix strings and bytes in path components.", - cm.exception.args[0] - ) - args.reverse() # check both orders - + self.assertEqual(msg, cm.exception.args[0]) + + check_error_msg([[b'bytes', 'str'], [bytearray(b'bytes'), 'str']], + "Can't mix strings and bytes in path components.") + # regression, see #15377 + with self.assertRaises(TypeError) as cm: + os.path.join(None, 'str') + self.assertNotEqual("Can't mix strings and bytes in path components.", + cm.exception.args[0]) def test_split(self): self.assertEqual(posixpath.split("/foo/bar"), ("/foo", "bar")) |