diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-07-07 22:00:30 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-07-07 22:00:30 (GMT) |
commit | d9e810a8701b92371232eece5896a799c33de505 (patch) | |
tree | 97e9d76d0babfc969275ebb4e9e9d60314957598 /Lib/test/test_asynchat.py | |
parent | ab826d11a310fd4d7c99f6cf449660b690846a3b (diff) | |
download | cpython-d9e810a8701b92371232eece5896a799c33de505.zip cpython-d9e810a8701b92371232eece5896a799c33de505.tar.gz cpython-d9e810a8701b92371232eece5896a799c33de505.tar.bz2 |
Issue #12523: asynchat.async_chat.push() now raises a TypeError if it doesn't
get a bytes string
Diffstat (limited to 'Lib/test/test_asynchat.py')
-rw-r--r-- | Lib/test/test_asynchat.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Lib/test/test_asynchat.py b/Lib/test/test_asynchat.py index f93a52d..fd50c03 100644 --- a/Lib/test/test_asynchat.py +++ b/Lib/test/test_asynchat.py @@ -249,6 +249,22 @@ class TestAsynchat(unittest.TestCase): # (which could still result in the client not having received anything) self.assertGreater(len(s.buffer), 0) + def test_push(self): + # Issue #12523: push() should raise a TypeError if it doesn't get + # a bytes string + s, event = start_echo_server() + c = echo_client(b'\n', s.port) + data = b'bytes\n' + c.push(data) + c.push(bytearray(data)) + c.push(memoryview(data)) + self.assertRaises(TypeError, c.push, 10) + self.assertRaises(TypeError, c.push, 'unicode') + c.push(SERVER_QUIT) + asyncore.loop(use_poll=self.usepoll, count=300, timeout=.01) + s.join(timeout=TIMEOUT) + self.assertEqual(c.contents, [b'bytes', b'bytes', b'bytes']) + class TestAsynchat_WithPoll(TestAsynchat): usepoll = True |