mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Add support for the send/recvmsg API to the socket module. Patch by David Watson and Heiko Wundram. (Closes #6560)
This commit is contained in:
parent
8983729dc0
commit
96fe56abec
7 changed files with 3167 additions and 0 deletions
|
@ -186,8 +186,11 @@ class BasicSocketTests(unittest.TestCase):
|
|||
self.assertRaises(socket.error, ss.recv_into, bytearray(b'x'))
|
||||
self.assertRaises(socket.error, ss.recvfrom, 1)
|
||||
self.assertRaises(socket.error, ss.recvfrom_into, bytearray(b'x'), 1)
|
||||
self.assertRaises(socket.error, ss.recvmsg, 1)
|
||||
self.assertRaises(socket.error, ss.recvmsg_into, [bytearray(b'x')])
|
||||
self.assertRaises(socket.error, ss.send, b'x')
|
||||
self.assertRaises(socket.error, ss.sendto, b'x', ('0.0.0.0', 0))
|
||||
self.assertRaises(socket.error, ss.sendmsg, [b'x'])
|
||||
|
||||
def test_timeout(self):
|
||||
# Issue #8524: when creating an SSL socket, the timeout of the
|
||||
|
@ -1520,17 +1523,30 @@ else:
|
|||
count, addr = s.recvfrom_into(b)
|
||||
return b[:count]
|
||||
|
||||
def _recvmsg(*args, **kwargs):
|
||||
return s.recvmsg(*args, **kwargs)[0]
|
||||
|
||||
def _recvmsg_into(bufsize, *args, **kwargs):
|
||||
b = bytearray(bufsize)
|
||||
return bytes(b[:s.recvmsg_into([b], *args, **kwargs)[0]])
|
||||
|
||||
def _sendmsg(msg, *args, **kwargs):
|
||||
return s.sendmsg([msg])
|
||||
|
||||
# (name, method, whether to expect success, *args)
|
||||
send_methods = [
|
||||
('send', s.send, True, []),
|
||||
('sendto', s.sendto, False, ["some.address"]),
|
||||
('sendmsg', _sendmsg, False, []),
|
||||
('sendall', s.sendall, True, []),
|
||||
]
|
||||
recv_methods = [
|
||||
('recv', s.recv, True, []),
|
||||
('recvfrom', s.recvfrom, False, ["some.address"]),
|
||||
('recvmsg', _recvmsg, False, [100]),
|
||||
('recv_into', _recv_into, True, []),
|
||||
('recvfrom_into', _recvfrom_into, False, []),
|
||||
('recvmsg_into', _recvmsg_into, False, [100]),
|
||||
]
|
||||
data_prefix = "PREFIX_"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue