History log of /unit/test/unit/applications/websockets.py (Results 1 – 23 of 23)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 2491:aae60837ac20 14-Jun-2023 Andrei Zeliankou

Tests: get rid of classes in test files.

Class usage came from the unittest framework and it was always redundant
after migration to the pytest. This commit removes classes from files
containing te

Tests: get rid of classes in test files.

Class usage came from the unittest framework and it was always redundant
after migration to the pytest. This commit removes classes from files
containing tests to make them more readable and understandable.

show more ...


Revision tags: 1.30.0-1, 1.30.0, 1.29.1-1, 1.29.1
# 2330:4b1f175f9c88 21-Feb-2023 Andrei Zeliankou

Tests: switched to using f-strings.

Previously, it was necessary to support older versions of Python for
compatibility. F-strings were released in Python 3.6. Python 3.5 was
marked as unsupported

Tests: switched to using f-strings.

Previously, it was necessary to support older versions of Python for
compatibility. F-strings were released in Python 3.6. Python 3.5 was
marked as unsupported by the end of 2020, so now it's possible to start
using f-strings safely for better readability and performance.

show more ...


Revision tags: 1.29.0-1, 1.29.0
# 2212:975ab1624784 11-Oct-2022 Andrei Zeliankou

Tests: don't try to return response when "no_recv" is True.


Revision tags: 1.28.0-1, 1.28.0, 1.27.0-1, 1.27.0
# 2073:bc6ad31ce286 11-Apr-2022 Andrei Zeliankou

Tests: style.


Revision tags: 1.26.1-1, 1.26.1, 1.26.0-1, 1.26.0, 1.25.0-1, 1.25.0, 1.24.0-1, 1.24.0
# 1848:4bd548074e2c 05-Apr-2021 Andrei Zeliankou

Tests: style.


Revision tags: 1.23.0-1, 1.23.0, 1.22.0-1, 1.22.0, 1.21.0-1, 1.21.0, 1.20.0-1, 1.20.0
# 1635:97afbb6c5a15 07-Oct-2020 Andrei Zeliankou

Tests: minor fixes.


# 1625:d7215787a23a 01-Oct-2020 Max Romanov

Tests: added ASGI WebSocket.


# 1609:b5a7b5e94f1d 21-Sep-2020 Max Romanov

Tests: improved response receiving while upgrade.

The patch required to process non-101 response.


# 1596:b7e2d4d92624 16-Sep-2020 Andrei Zeliankou

Tests: migrated to the pytest.


Revision tags: 1.19.0-1, 1.19.0, 1.18.0-1, 1.18.0
# 1477:b93d1acf81bd 15-May-2020 Andrei Zeliankou

Tests: style.


Revision tags: 1.17.0-1, 1.17.0
# 1444:8f7f7970c07a 03-Apr-2020 Andrei Zeliankou

Tests: added notification on "read_timeout" expiration.


# 1433:bcdf5daaf688 27-Mar-2020 Andrei Zeliankou

Tests: increase default "read_timeout" to 60s in message_read().


# 1424:449e7e7d25c9 23-Mar-2020 Andrei Zeliankou

Tests: increase default "read_timeout" value to 60s.

This change is necessary to avoid errors on slow hosts.

Also slightly reworked argument passing to the recvall() function.


Revision tags: 1.16.0-1, 1.16.0, 1.15.0-1, 1.15.0, 1.14.0-1, 1.14.0, 1.13.0-1, 1.13.0
# 1262:ba07e83ecf6f 13-Nov-2019 Andrei Zeliankou

Tests: fixed websocket tests.


# 1246:1b6adb628960 23-Oct-2019 Andrey Zelenkov

Tests: improved handshake for websocket tests.


Revision tags: 1.12.0-1, 1.12.0, 1.11.0-2, 1.11.0-1, 1.11.0
# 1156:2649a249721f 03-Sep-2019 Andrey Zelenkov

Tests: increased read_timeout for websockets tests.


# 1154:ebf03502ba28 02-Sep-2019 Andrey Zelenkov

Tests: fixed recv_bytes() in websockets.py.


# 1152:2b887c383535 02-Sep-2019 Andrey Zelenkov

Tests: prevented writing non-chopped frames to the closed socket.


# 1151:5ad0006fb0a0 30-Aug-2019 Andrey Zelenkov

Tests: prevented writing to the closed socket for websocket tests.


# 1150:3dc2f4d0cd60 30-Aug-2019 Andrey Zelenkov

Tests: websockets style fixes.


Revision tags: 1.10.0-2, 1.10.0-1
# 1138:a758c3f9ae77 22-Aug-2019 Andrey Zelenkov

Tests: removed keepalive_interval for websocket tests.

Also increased read_timeout in frame_read() for slow hosts.


Revision tags: 1.10.0
# 1133:eaa4695cb0e5 22-Aug-2019 Andrey Zelenkov

Tests: Node.js websockets tests tuned.


# 1130:020fa3fb48f8 22-Aug-2019 Andrey Zelenkov

Tests: Node.js websockets.