tests: Format all Python code with black, except tests in basics subdir.
This adds the Python files in the tests/ directory to be formatted with ./tools/codeformat.py. The basics/ subdirectory is excluded for now so we aren't changing too much at once. In a few places `# fmt: off`/`# fmt: on` was used where the code had special formatting for readability or where the test was actually testing the specific formatting.
This commit is contained in:
committed by
Damien George
parent
488613bca6
commit
3dc324d3f1
@@ -11,6 +11,7 @@ def ws_read(msg, sz):
|
||||
ws = uwebsocket.websocket(uio.BytesIO(msg))
|
||||
return ws.read(sz)
|
||||
|
||||
|
||||
# do a websocket write and then return the raw data from the stream
|
||||
def ws_write(msg, sz):
|
||||
s = uio.BytesIO()
|
||||
@@ -19,31 +20,32 @@ def ws_write(msg, sz):
|
||||
s.seek(0)
|
||||
return s.read(sz)
|
||||
|
||||
|
||||
# basic frame
|
||||
print(ws_read(b"\x81\x04ping", 4))
|
||||
print(ws_read(b"\x80\x04ping", 4)) # FRAME_CONT
|
||||
print(ws_read(b"\x80\x04ping", 4)) # FRAME_CONT
|
||||
print(ws_write(b"pong", 6))
|
||||
|
||||
# split frames are not supported
|
||||
# print(ws_read(b"\x01\x04ping", 4))
|
||||
|
||||
# extended payloads
|
||||
print(ws_read(b'\x81~\x00\x80' + b'ping' * 32, 128))
|
||||
print(ws_read(b"\x81~\x00\x80" + b"ping" * 32, 128))
|
||||
print(ws_write(b"pong" * 32, 132))
|
||||
|
||||
# mask (returned data will be 'mask' ^ 'mask')
|
||||
print(ws_read(b"\x81\x84maskmask", 4))
|
||||
|
||||
# close control frame
|
||||
s = uio.BytesIO(b'\x88\x00') # FRAME_CLOSE
|
||||
s = uio.BytesIO(b"\x88\x00") # FRAME_CLOSE
|
||||
ws = uwebsocket.websocket(s)
|
||||
print(ws.read(1))
|
||||
s.seek(2)
|
||||
print(s.read(4))
|
||||
|
||||
# misc control frames
|
||||
print(ws_read(b"\x89\x00\x81\x04ping", 4)) # FRAME_PING
|
||||
print(ws_read(b"\x8a\x00\x81\x04pong", 4)) # FRAME_PONG
|
||||
print(ws_read(b"\x89\x00\x81\x04ping", 4)) # FRAME_PING
|
||||
print(ws_read(b"\x8a\x00\x81\x04pong", 4)) # FRAME_PONG
|
||||
|
||||
# close method
|
||||
ws = uwebsocket.websocket(uio.BytesIO())
|
||||
@@ -51,8 +53,8 @@ ws.close()
|
||||
|
||||
# ioctl
|
||||
ws = uwebsocket.websocket(uio.BytesIO())
|
||||
print(ws.ioctl(8)) # GET_DATA_OPTS
|
||||
print(ws.ioctl(9, 2)) # SET_DATA_OPTS
|
||||
print(ws.ioctl(8)) # GET_DATA_OPTS
|
||||
print(ws.ioctl(9, 2)) # SET_DATA_OPTS
|
||||
print(ws.ioctl(9))
|
||||
try:
|
||||
ws.ioctl(-1)
|
||||
|
||||
Reference in New Issue
Block a user