"""Define self.rfile and self.wfile for datagram sockets."""
def setup(self):
- from io import StringIO
+ from io import BytesIO
self.packet, self.socket = self.request
- self.rfile = StringIO(self.packet)
- self.wfile = StringIO()
+ self.rfile = BytesIO(self.packet)
+ self.wfile = BytesIO()
def finish(self):
self.socket.sendto(self.wfile.getvalue(), self.client_address)
self.server_close()
raise
-teststring = "hello world\n"
+teststring = b"hello world\n"
def receive(sock, n, timeout=20):
r, w, x = select.select([sock], [], [], timeout)
s = socket.socket(proto, socket.SOCK_DGRAM)
s.sendto(teststring, addr)
buf = data = receive(s, 100)
- while data and '\n' not in buf:
+ while data and b'\n' not in buf:
data = receive(s, 100)
buf += data
verify(buf == teststring)
s.connect(addr)
s.sendall(teststring)
buf = data = receive(s, 100)
- while data and '\n' not in buf:
+ while data and b'\n' not in buf:
data = receive(s, 100)
buf += data
verify(buf == teststring)