pax_global_header 0000666 0000000 0000000 00000000064 14532742400 0014513 g ustar 00root root 0000000 0000000 52 comment=85de6c7e14058ca37224303d5468a560413a6205 websocket-client-1.7.0/ 0000775 0000000 0000000 00000000000 14532742400 0014762 5 ustar 00root root 0000000 0000000 websocket-client-1.7.0/.coveragerc 0000664 0000000 0000000 00000000441 14532742400 0017102 0 ustar 00root root 0000000 0000000 [run] branch = True source = websocket-client omit = websocket/tests/*,websocket/_wsdump.py [report] exclude_lines = if self.debug: pragma: no cover raise NotImplementedError if __name__ == .__main__.: ignore_errors = True include = websocket/* omit = websocket/tests/* websocket-client-1.7.0/.gitattributes 0000664 0000000 0000000 00000001061 14532742400 0017653 0 ustar 00root root 0000000 0000000 # Basic Python .gitattributes from https://github.com/alexkaratarakis/gitattributes # Source files # ============ *.pxd text diff=python *.py text diff=python *.py3 text diff=python *.pyw text diff=python *.pyx text diff=python *.pyz text diff=python *.pyi text diff=python # Binary files # ============ *.db binary *.p binary *.pkl binary *.pickle binary *.pyc binary export-ignore *.pyo binary export-ignore *.pyd binary # compliance files # ================ compliance/* linguist-vendored *.sh linguist-vendored websocket-client-1.7.0/.github/ 0000775 0000000 0000000 00000000000 14532742400 0016322 5 ustar 00root root 0000000 0000000 websocket-client-1.7.0/.github/workflows/ 0000775 0000000 0000000 00000000000 14532742400 0020357 5 ustar 00root root 0000000 0000000 websocket-client-1.7.0/.github/workflows/build.yml 0000664 0000000 0000000 00000002511 14532742400 0022200 0 ustar 00root root 0000000 0000000 name: build and test on: [push, pull_request] env: FORCE_COLOR: 1 jobs: build: runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] os: [ubuntu-latest] steps: - name: Check out source repository uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} environment uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} allow-prereleases: true - name: Run local websockets echo server on port ${{ env.LOCAL_WS_SERVER_PORT }} (code is for Python 3.7+) run: | pip3 install -U websockets asyncio python3 websocket/tests/echo-server.py & - name: Install build tools and print setuptools version run: | pip3 install -U pip setuptools wheel readme_renderer twine pytest python-socks python3 -c "import setuptools; print('Setup tools version'); print(setuptools.__version__)" - name: Run tests run: | pytest websocket/tests -v -rP env: TEST_WITH_INTERNET: 1 LOCAL_WS_SERVER_PORT: 8765 - name: Run distutils and confirm build of websocket-client run: | python3 setup.py sdist twine check dist/* websocket-client-1.7.0/.github/workflows/codecoverage.yml 0000664 0000000 0000000 00000004564 14532742400 0023541 0 ustar 00root root 0000000 0000000 name: Code Coverage on: [push, pull_request] jobs: code-coverage: runs-on: ubuntu-latest steps: - name: Check out source repository uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} environment uses: actions/setup-python@v4 with: python-version: "3.10" - name: Run local websockets echo server on port ${{ env.LOCAL_WS_SERVER_PORT }} run: | pip3 install -U websockets asyncio python3 websocket/tests/echo-server.py & - name: Run test cases without internet or option dependencies to verify no offline test failures and verify optional dependencies are optional run: | pip3 install coverage pytest pytest-cov setuptools python3 -c "import setuptools; print('Setup tools version'); print(setuptools.__version__)" python3 setup.py install pytest -vrP --cov=websocket websocket/tests --cov-config=.coveragerc coverage report - name: Install wsaccel and python-socks, then run all test cases for coverage collection run: | pip3 install wsaccel python-socks pytest -vrP --cov=websocket websocket/tests --cov-config=.coveragerc --cov-append coverage report env: TEST_WITH_INTERNET: 1 LOCAL_WS_SERVER_PORT: 8765 - name: Run SSL test with extra environment variable and create report run: | ls $WEBSOCKET_CLIENT_CA_BUNDLE python3 -c "import ssl; print(ssl.get_default_verify_paths().capath)" pytest -vrP --cov=websocket websocket/tests --cov-config=.coveragerc --cov-append -k "testSSLopt" coverage report -m env: TEST_WITH_INTERNET: 1 LOCAL_WS_SERVER_PORT: 8765 WEBSOCKET_CLIENT_CA_BUNDLE: "/usr/lib/ssl/certs" - name: Run SSL test with extra environment variable and create report run: | python3 -c "import ssl; print(ssl.get_default_verify_paths().capath)" pytest -vrP --cov=websocket websocket/tests --cov-config=.coveragerc --cov-append -k "testSSLopt" coverage xml env: TEST_WITH_INTERNET: 1 LOCAL_WS_SERVER_PORT: 8765 WEBSOCKET_CLIENT_CA_BUNDLE: "/usr/lib/ssl/certs/Baltimore_CyberTrust_Root.pem" - name: Submit code coverage report to Codecov.io uses: codecov/codecov-action@v3 websocket-client-1.7.0/.github/workflows/doctest.yml 0000664 0000000 0000000 00000001066 14532742400 0022552 0 ustar 00root root 0000000 0000000 name: Run doctest on Sphinx docs on: [push, pull_request] jobs: run-doctest: runs-on: ubuntu-latest name: doctest check steps: - name: Check out source repository uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} environment uses: actions/setup-python@v4 with: python-version: "3.11" - name: Run pytest with doctest args run: | pip3 install pytest 'websocket-client[docs]' rel pytest ./docs/source -v --doctest-glob="*.rst" --doctest-modules websocket-client-1.7.0/.github/workflows/lint-black.yml 0000664 0000000 0000000 00000000517 14532742400 0023125 0 ustar 00root root 0000000 0000000 name: Linting with black on: [push, pull_request] jobs: black-lint: runs-on: ubuntu-latest name: black linting steps: - name: Check out source repository uses: actions/checkout@v3 - name: Run black linting uses: psf/black@stable with: options: "--check" src: "." websocket-client-1.7.0/.github/workflows/lint-flake8.yml 0000664 0000000 0000000 00000001324 14532742400 0023220 0 ustar 00root root 0000000 0000000 name: Linting with flake8 on: [push, pull_request] jobs: flake8-lint: runs-on: ubuntu-latest name: flake8 linting steps: - name: Check out source repository uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} environment uses: actions/setup-python@v4 with: python-version: "3.11" - name: Perform mandatory flake8 linting run: | pip3 install flake8 flake8 --version flake8 . --show-source --statistics --count --ignore E231,E241,E501,E722,E741,F401,F403,F405,W503,W504 - name: Perform optional exit-zero flake8 linting run: | flake8 . --exit-zero --statistics --count websocket-client-1.7.0/.gitignore 0000664 0000000 0000000 00000000326 14532742400 0016753 0 ustar 00root root 0000000 0000000 *.pyc *~ *\# .\#* build .build/ dist *.egg-info .cache/ compliance/reports/ .eggs .vscode # venv venv/ .venv/ .env/ # PyCharm .idea/ # Sphinx documentation docs/build/ # Code coverage .coverage coverage.xml websocket-client-1.7.0/.readthedocs.yml 0000664 0000000 0000000 00000000774 14532742400 0020060 0 ustar 00root root 0000000 0000000 # .readthedocs.yml # Read the Docs configuration file # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details # Required version: 2 # Build documentation in the docs/ directory with Sphinx sphinx: configuration: docs/source/conf.py # Optionally build your docs in additional formats such as PDF formats: - pdf # Optionally set the version of Python and requirements required to build your docs python: version: 3.8 install: - requirements: docs/source/requirements.txt websocket-client-1.7.0/CONTRIBUTING.md 0000664 0000000 0000000 00000006366 14532742400 0017226 0 ustar 00root root 0000000 0000000 # Contributing Hello :wave: and thank you for contributing! :tada: Before you contribute, please take a minute to review the contribution process based on what you want to do. ## I got an error or I have a question Great! We are happy to help. Before you ask your question, please check if your question can be answered from the following 5 steps: - [ ] The [project documentation examples](https://websocket-client.readthedocs.io/en/latest/examples.html) - [ ] The [project documentation FAQ](https://websocket-client.readthedocs.io/en/latest/faq.html) - [ ] Search for your question in [old existing issues](https://github.com/websocket-client/websocket-client/issues) - [ ] If you encountered an error message, try googling the error message and see if you find an answer - [ ] Check if the same issue exists if you uninstall the websocket-client library on your system (using `pip uninstall websocket-client` or maybe `pip3 uninstall websocket-client`) and install the [latest master branch](https://github.com/websocket-client/websocket-client) directly from GitHub by using `python setup.py install` (see [installation info](https://github.com/websocket-client/websocket-client#installation)) If you did not get your question answered from these 5 steps, then please open a new issue and ask your question! When you explain your problem, please: - [ ] [Enable the tracing feature](https://websocket-client.readthedocs.io/en/latest/examples.html#debug-and-logging-options) and include the entire debug trace of your connection process in the issue - [ ] Provide a [minimum reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) program to allow other users to recreate and demonstrate the error - [ ] Add an explanation for what you are trying to accomplish. If you can provide your code (or example code) in the issue, this helps a lot! ## I have a suggestion or idea Great! Please make a new issue an explain your idea, but first do a quick search in [old existing issues](https://github.com/websocket-client/websocket-client/issues) to see if someone already proposed the same idea. ## I want to contribute code Great! In your pull request (PR), please explain: 1. What is the problem with the current code 2. How your changes make it better 3. Provide some example code that can allow someone else to recreate the problem with the current code and test your solution (if possible to recreate). ## I want to contribute documentation Great! To edit the [project documentation](https://websocket-client.readthedocs.io), it is recommended that you install Sphinx and build the updated documentation locally before submitting your edits. The Sphinx dependencies can be installed by navigating to the `docs/source` directory and running `pip3 install -r requirements.txt`. To build a new version of the documentation, change directories (or `cd`) to the `docs/` directory and run `make clean html`. Any build warnings or errors will be displayed in your terminal, and the new documentation will then be available in the `docs/build/html/` directory. You may also find the [Sphinx documentation style guide](https://documentation-style-guide-sphinx.readthedocs.io/en/latest/style-guide.html) useful when editing reStructuredText (reST), which is quite different from Markdown. websocket-client-1.7.0/ChangeLog 0000664 0000000 0000000 00000044034 14532742400 0016541 0 ustar 00root root 0000000 0000000 ChangeLog ============ - 1.7.0 - Renamed `mask` variable in ABNF to prevent name collision with `mask()` function (9b51f73) - Fixed old http import of HTTPStatus in _handshake.py (9b51f73) - Add `send_text()` and `send_bytes()` to _app.py (#953) - Improved typehint support (#953, 9b51f73, 8b73d00) - General readability improvements, made all string concatenations use f-strings (#909, 780584f, 3eabc6e) - Applied black formatting style to code (da7f286) - 1.6.4 - Fix #952, add support for HTTP 307 and 308 redirect codes (69468ad) - 1.6.3 - Fix type hints issues (#949) - Add support for Python beta release 3.12 in CI (#946) - Add maintainer email in setup.py (3d464fc) - 1.6.2 - Add support for SSLKEYLOGFILE environment variable (#943) - Add support for callable header arguments (#932) - Change handling of proxy environment variables, is_secure set to true now prevents http_proxy from getting used (#929) - 1.6.1 - Fix Dispatcher keyboard interrupt. Should solve reconnect loop with rel (#924) - 1.6.0 - Fix teardown issue when ping thread is not properly ended (#918) - Fix double ping wait time on first ping (#912) - Minor type hints improvements (eda6724, 54b3013) - 1.5.3 - Add logic to avoid error in the case where content-length header does not exist, bug introduced in 1.5.2 (#911) - Fix wsdump.py script typing, bug introduced in 1.5.2 (#914) - 1.5.2 - Add type hints (#908) - Fix pytype errors (#906) - Fix args passed to logging function (#898) - Standardize PEP 3101 formatting (c6a445f) - Add more verbose exception for unsuccessful handshake for #900 (f85ae1f) - 1.5.1 - Fix logic bug that can cause disconnects (#893) - 1.5.0 - Refactor and improve ping/pong logic to resolve several issues, including an infinite loop issue during reconnect (#862) - Fix issue where `skip_utf8_validation = True` is ignored (#886) - Fix issue where sslopt `is_ssl` is ignored (#875) - Downgrade "websocket connected" message from logging.warning to logging.info (#888) - Update github actions to newer versions (669fe1b) - 1.4.2 - create_dispatcher is determined by URL ws/wss, NOT by presence of sslopt args, to maintain consistency (#875) - Remove redundant key generation line (#864) - Updated docs to fix old links and updated CI to include Python 3.11 - 1.4.1 - Fix stack growth bug when `run_forever` reconnects (#854) - Add doctest CI for sphinx docs code examples (d150099) - General docs improvements - 1.4.0 - Fix automatic reconnect with `run_forever` (#838) - Allow a timeout to be set when using a proxy (#842) - 1.3.3 - Fix unclosed socket error (#826) - Update header dict access (#818) - Add utf8 workaround to docs (fc9ee9f) - 1.3.2 - Add support for pre-initialized stream socket in new WebSocketApp (#804) - Remove rel.saferead() in examples (f0bf03d) - Increase scope of linting checks (dca4022) - Start adding type hints (a8a4099) - 1.3.1 - Fix 10 year old bug and improve dispatcher handling for run_forever (#795) - Fix run_forever to never return None, only return True or False, and add two tests (#788) - Remove Python 3.6 support, EOL in Dec 2021 - 1.3.0 - BREAKING: Set Origin header to use https:// scheme when wss:// WebSocket URL is passed (#787) - Replace deprecated/broken WebSocket URLs with working ones (6ad5197) - Add documentation referencing rel for automatic reconnection with run_forever() - Add missing opcodes 1012, 1013 (#771) - Add errno.ENETUNREACH to improve error handling (da1b050) - Minor documentation improvements and typo fixes - 1.2.3 - Fix broken run_forever() functionality (#769) - 1.2.2 - Migrate wsdump script in setup.py from scripts to newer entry_points (#763) - Add support for ssl.SSLContext for arbitrary SSL parameters (#762) - Remove keep_running variable (#752) - Remove HAVE_CONTEXT_CHECK_HOSTNAME variable (dac1692) - Replace deprecated ssl.PROTOCOL_TLS with ssl.PROTOCOL_TLS_CLIENT (#760) - Simplify code and improve Python 3 support (#751, #750, #746) - Fill default license template fields (#748) - Update CI tests - Improve documentation (#732, #733, #734, #737, #766, #768) - 1.2.1 - Fix python-socks dependency issue mentioned in #728 - Replace echo.websocket.org with a local websockets echo server for unit tests (4951de2) - 1.2.0 - Fix #697, #665: Transition from LGPL 2.1 license to Apache 2.0 license - Revert #417 and reimplement SOCKS proxy support with python-socks instead of PySocks (fbcbd43) - 1.1.1 - Fix #377: increase exception verbosity in _app.py callback exception - Fix #717: race condition during connection close - Fix #722: improve handling where credentials include symbols like @ - Fix #711: improve handling if ssl is None - 1.1.0 - Set enable_multithread to True by default (beb135a) - Performance improvement in _mask() function (287970e, #433) - Performance improvement in recv_strict() function (60e4711, #255) - Performance improvement by removing numpy-related code (a462d45) - Support uppercase no_proxy, http_proxy, https_proxy env vars (150df4f, #700) - Add sslopt 'server_hostname' support (#698) - Replace deprecated ssl.PROTOCOL_SSLv23 with ssl.PROTOCOL_TLS (494564f) - Update documentation, README (7c9d604, #704) - 1.0.1 - Fix exception handling bug #694 - 1.0.0 - Removed Python 2 code, now only Python 3 compatible (d45343b, b7c5733, ff67af8) - Use semver for release versions, unlike breaking release 0.58.0 (#669) - Enhance enableTrace output (13e83b4) - Improve unit tests to over 80% code coverage (1679ab0, a00dd2d, etc.) - Fix old _app.py close status code bug (resulted in on_close() requiring 3 args) (#686) - Replace select import with selectors (#568) - 0.59.0 - Last main release to support Python 2 - Fix Python 2 urlparse scheme (#332) - Add support for headers with multiple values (#627) - Add debug support for reserved custom status codes (#639) - Allow multiple Set-Cookie: headers (#649) - Simplified cookie sorting (#662) - Add no_proxy support (#671) - Add Host header to HTTP proxy request (#677) - Improve PEP8 style compliance (dc3f5c4) - 0.58.0 - Fix README typos (#659) - Create README.md from README.rst (#655) - Capitalize 'Upgrade' in 'Connection: Upgrade' (#605) - Add Python 3.8 and 3.9 CI support (#596) - Replace deprecated `thread.isAlive` with `thread.is_alive` (#594) - Revert to LGPL v2.1 license (#526) - Add code coverage CI testing (#663) - Properly revert callback (#442) - Replace TravisCI with GitHub Actions (36e32c7) - Create Sphinx readthedocs.io documentation (aace06b) - 0.57.0 - wsdump: Fix --headers option (#589) - Fix getting 400 bad request with long proxy authorization string (#587) - Fix for errors that occur when closing websocket from another thread (#586) - avoid calling repr(data) if tracing is not enabled (#584) - Fixed typo (#579) - Create dummy `ssl` object (#577) - Show compressed text messages in wsdump.py (#576) - Resolve issue opening socket to intranet on Windows 10 with no proxy settings but behind proxy (#573) - Expose http connection header to user (#566) - Improve the readability of HTTP status codes. (#553) - fix the compatible issue with gevent+dnspython (#547) - v should be checked for empty string before splitting it (#539) - _handshake: hasattr checks on six before accessing the values (#533) - 0.56.0 - Don't retry sockets with timeout set to 0(#536) - 0.55.0 - Add response headers in WebSocketBadStatusException (#501) - Manually assigning WebSocket-Version (#506) - SSL socket handling fix (#474) - Let setup.py use the same license as LICENSE file (#517) - Ensure that "timeout" is passed down, when calling WebSocket.connect() (#513) - Retry connect on "Interrupted system call" (#528) - 0.54.0 - Change license from LGPL to BSD. - Status return for WebSocketApp.run_forever() (#492) - Handle redirects in handshake (#491) - Make proxy_type option available in WebSocketApp.run_forever() (#486) - Fix typo in supress_origin (#485) - WebSocketApp's on_close never emits status code or reason (#479) - 0.53.0 - on_open() missing 1 required positional argument: 'ws' (#471) - 0.52.0 - fixed callback argument in _app.py (#468) - Fixing none compare bug in run_forever (#472) - Fix NoneType bug introduced by #386 fix (#476) - 0.51.0 - revert "WebSocketApp class to make it inheritable (#442)" because of breaking the compatibility - 0.50.0 - fixed pong before ping (#461) - pass proper arguments to method callbacks (#462) - 0.49.0 - WebSocketApp class to make it inheritable (#442) - Add option to disable sending the Origin header (#459) - Websocket.close() meaning of "close status: XXXXX" (#414) - Enable multithreading protection with ping_interval (#448) - reset WebsocketApp.sock (#450) - websocket.enableTrace not working (#455) - AttributeError: 'module' object has no attribute 'NullHandler' (#443) - WebSocketBadStatusException "not enough arguments for format string" (#454) - handshake should deal with None in headers (#432) - 0.48.0 - Add NullHandler to logger to fix python 2 issue. (#400) - Fix the issue that websocket status message may not present (#403) - Socket error not raised in nested try except in python2 (#408) - Load system default certificates if none are given (#415) - Fix waiting forever on ping/pong timeout (#411) - socks5 via pysocks support (#417) - v0.47.0 breaks ability to stop stream with `run_forever` (#410) - _http.py: fix windows proxy error due to socktype (#427) - 0.47.0 - Fix socket constructor in _open_socket to use all relevant variables from getaddrinfo. (#383) - .send() method is very slow (#340) - cross-platform aync multi-client solution (#375) - Fix detecting timeouts with SSL in recv (#387) - Fix WebSocketApp does not poll for data correctly when using SSL (#384) - Fix Infinite ping/pong timeouts in WebSocketApp.run_forever (#395) - Added status message when HTTP can't be upgraded to WS (#399) - 0.46.0 - fixed OSError on windows (#370) - fixed invalid character (#379) - 0.45.0 - change license to LGP v2.1 - allow reuse of WebsocketApp.run_forever (#365) - Update example for python3 (#360) - add lock to recv function (#356) - Parse close frame response correctly when reason present (#354) - Fix SSL: SSLV3_ALERT_HANDSHAKE_FAILURE on Debian Stretch (#353) - Wrap socket.gaierror with subclass of WebsocketException (#352) - Resolve a proxy issue and a connection error (#345) - Allow empty Host header value (#369) - Fix undefined variable (#347) - fix: getting a value with the key 'ca_certs' in sslopt dict (#326) - 0.44.0 -renames key in sslopt dict (#326) - 0.43.0 - Unknown kwarg 'ca_cert' when calling ssl wrap_socket() (#326) - Race condition in WebSocket ping/pong (#327) - 0.42.0 - Implement simple cookie jar(#292) - fix: when using pppoe redial will block.(#301) - Fix insecure_pythons list in setup.py(#304) - Support WEBSOCKET_CLIENT_CA_BUNDLE being directory(#307) - WebSocketPayloadException under high traffic and limited network connection(#306) - Not working --nocert parameter in wsdump.py(#315) - Avoid the app to block on close on certain systems (#320) - Fix warning is not defined. (#323) - 0.41.0 - move to repository to https://github.com/websocket-client/websocket-client.git - _send_ping warning fails due to missing reference in _logging.__all__ (#294) - 0.40.0 - Fix opcode -> op_code (#286) - 0.39.0 - Shuffled around example code (#256) - _send_ping graceful error handling (#262) - Allow closing WebSocketApp with status/reason/timeout (#265) - Support universal wheels (#267) - _url: Added subnet IP address matching in no_proxy host detection (#270) - fixed Incorrect encoding in continued messages python3 (#261) - Pass headers for websocket handshake (#271) - setup.py: Import `logging` before calling it. (#272) - Implemented close code 1014 (#273) - Support CA bundle specified by environment variable (#279) - Response header values should not be converted to lower case (#264) - 0.38.0 - Exclude port 443 from host http header (#248) - Cleanup code (#249) - Modify a code block directive in README (#250) - fixed ping/pong timeouet (#253) - 0.37.0 - fixed failure that `websocket.create_connection` does not accept `origin` as a parameter (#246 ) - 0.36.0 - added support for using custom connection class (#235) - use Named logger (#238) - implement ping/pong timeout (#241) - Corrects the syntax highlight code (#243) - fixed failure to join thread before it is started (#242) - 0.35.0 - Prints timings in console (#217) - use inspect.getfullargspec with Python 3.x (#219) - Check that exception message is actually a string before trying for substring check (#224) - Use pre-initialized stream socket (#226) - fixed TypeError: cafile, capath and cadata cannot be all omitted (#227) - 0.34.0 - Change import style (#203) - fix attribute error on the older python. (#215) - 0.33.0 - fixed timeout+ssl error handling bug on python 2.7.10 (#190) - add proxy support to wsdump.py (#194) - use wsaccel if available (#193) - add support for ssl cert chains to support client certs (#195) - fix string formatting in exception (#196) - fix typo in README.rst (#197) - introduce on_data callback to pass data type. (#198) - WebSocketBadStatusException for Handshake error (#199) - set close timeout (#192) - Map dict to headers list (#204) - support client certification (#207) - security improvement during handshake (#211) - improve logging of error from callback (#212) - 0.32.0 - fix http proxy bug (#189) - 0.31.0 - Avoid deprecated BaseException.message (#180) - Add travis builds (#182) - fixed wsdump to work with piped input (#183) - fixed output of wsdump.py with python3 (#185) - add raw mode to wsdump.py (#186) - 0.30.0 - fixed if client is behind proxy (#169) - support SNI for python 2.7.9+ and 3.2+ (#172) - update Host HTTP header by user. (#171) - fix typo for isEnabledFor (#173) - can set verify_mode to CERT_NONE when check_hostname is enabled.(#175) - make websockets iterable (#178) - 0.29.0 - fixed ssl socket bug - 0.28.0 - Fix erroneous argument shadowing(#168) - 0.27.0 - remove unittest2 requirements for python 2.6 (#156) - fixed subprotocol case during header validation (#158) - get response status and headers (#160) - fix out-of-memory due to fragmentation when receiving a very large frame(#163) - fix error if the payload data is nothing.(#166) - refactoring. - 0.26.0 - all WebSocketException provide message string (#152) - fixed tests fail when not connected to the network (#155) - Add command line options and handle closed socket to wsdump.py (#153) - 0.25.0 - fixed for Python 2.6(#151) - 0.24.0 - Supporting http-basic auth in WebSocketApp (#143) - fix failure of test.testInternalRecvStrict(#141) - skip utf8 validation by skip_utf8_validation argument (#137) - WebsocketProxyException will be raised if we got error about proxy.(#138) - 0.23.0 - Remove spurious print statement. (#135) - 0.22.0 - Fix not thread-safe of Websocket.close() (#120) - Try to get proxy info from environment if not explicitly provided (#124) - support proxy basic authentication. (#125) - Fix NoneType exception at WebsocketApp.send (#126) - not use proxy for localhost (#132) - 0.21.0 - Check for socket before attempting to close (#115) - Enable turning off SSL verification in wsdump.py(#116) - Enable to set subprotocol(#118) - Better support for Autobahn test suite (http://autobahn.ws/testsuite) (#117) - v0.20.0 - fix typo. - v0.19.0 - suppress close event message(#107) - detect socket connection state(#109) - support for code and reason in on_close callback(#111) - continuation frame handling seems suspicious(#113) - v0.18.0 - allow override of match_hostname usage on ssl (#105) - v0.17.0 - can't set timeout on a standing websocket connection (#102) - fixed local variable 'error' referenced before assignment (#102, #98) - v0.16.0 - lock some method for multithread. (#92) - disable cert verification. (#89) - v0.15.0 - fixed exception when send a large message (#84) - v0.14.1 - fixed to work on Python2.6 (#83) - v0.14.0 - Support python 3(#73) - Support IPv6(#77) - Support explicit web proxy(#57) - specify cookie in connect method option(#82) - v0.13.0 - MemoryError when receiving large amount of data (~60 MB) at once(ISSUE#59) - Controlling fragmentation(ISSUE#55) - server certificate validation(ISSUE#56) - PyPI tarball is missing test_websocket.py(ISSUE#65) - Payload length encoding bug(ISSUE#58) - disable Nagle algorithm by default(ISSUE#41) - Better event loop in WebSocketApp(ISSUE#63) - Skip tests that require Internet access by default(ISSUE#66) - v0.12.0 - support keep alive for WebSocketApp(ISSUE#34) - fix some SSL bugs(ISSUE#35, #36) - fix "Timing out leaves websocket library in bad state"(ISSUE#37) - fix "WebSocketApp.run_with_no_err() silently eats all exceptions"(ISSUE#38) - WebSocketTimeoutException will be raised for ws/wss timeout(ISSUE#40) - improve wsdump message(ISSUE#42) - support fragmentation message(ISSUE#43) - fix some bugs - v0.11.0 - Only log non-normal close status(ISSUE#31) - Fix default Origin isn't URI(ISSUE#32) - fileno support(ISSUE#33) - v0.10.0 - allow to set HTTP Header to WebSocketApp(ISSUE#27) - fix typo in pydoc(ISSUE#28) - Passing a socketopt flag to the websocket constructor(ISSUE#29) - websocket.send fails with long data(ISSUE#30) - v0.9.0 - allow to set opcode in WebSocketApp.send(ISSUE#25) - allow to modify Origin(ISSUE#26) - v0.8.0 - many bug fix - some performance improvement - v0.7.0 - fixed problem to read long data.(ISSUE#12) - fix buffer size boundary violation - v0.6.0 - Patches: UUID4, self.keep_running, mask_key (ISSUE#11) - add wsdump.py tool - v0.5.2 - fix Echo App Demo Throw Error: 'NoneType' object has no attribute 'opcode (ISSUE#10) - v0.5.1 - delete invalid print statement. - v0.5.0 - support hybi-13 protocol. - v0.4.1 - fix incorrect custom header order(ISSUE#1) websocket-client-1.7.0/LICENSE 0000664 0000000 0000000 00000026113 14532742400 0015772 0 ustar 00root root 0000000 0000000 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright 2023 engn33r Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. websocket-client-1.7.0/MANIFEST.in 0000664 0000000 0000000 00000000121 14532742400 0016512 0 ustar 00root root 0000000 0000000 include LICENSE include README.md include ChangeLog recursive-include examples * websocket-client-1.7.0/README.md 0000664 0000000 0000000 00000014121 14532742400 0016240 0 ustar 00root root 0000000 0000000 [](https://websocket-client.readthedocs.io/) [](https://github.com/websocket-client/websocket-client/actions/workflows/build.yml) [](https://codecov.io/gh/websocket-client/websocket-client) [](https://pepy.tech/project/websocket-client) [](https://pypi.org/project/websocket_client/) [](https://opensource.org/licenses/Apache-2.0) [](https://github.com/psf/black) # websocket-client websocket-client is a WebSocket client for Python. It provides access to low level APIs for WebSockets. websocket-client implements version [hybi-13](https://tools.ietf.org/html/draft-ietf-hybi-thewebsocketprotocol-13) of the WebSocket protocol. This client does not currently support the permessage-deflate extension from [RFC 7692](https://tools.ietf.org/html/rfc7692). ## Documentation This project's documentation can be found at [https://websocket-client.readthedocs.io/](https://websocket-client.readthedocs.io/) ## Contributing Please see the [contribution guidelines](https://github.com/websocket-client/websocket-client/blob/master/CONTRIBUTING.md) ## Installation You can use either `python3 setup.py install` or `pip3 install websocket-client` to install. This module is tested on Python 3.8+. There are several optional dependencies that can be installed to enable specific websocket-client features. - To install `python-socks` for proxy usage and `wsaccel` for a minor performance boost, use: `pip3 install websocket-client[optional]` - To install `websockets` to run unit tests using the local echo server, use: `pip3 install websocket-client[test]` - To install `Sphinx` and `sphinx_rtd_theme` to build project documentation, use: `pip3 install websocket-client[docs]` While not a strict dependency, [rel](https://github.com/bubbleboy14/registeredeventlistener) is useful when using `run_forever` with automatic reconnect. Install rel with `pip3 install rel`. Footnote: Some shells, such as zsh, require you to escape the `[` and `]` characters with a `\`. ## Usage Tips Check out the documentation's FAQ for additional guidelines: [https://websocket-client.readthedocs.io/en/latest/faq.html](https://websocket-client.readthedocs.io/en/latest/faq.html) Known issues with this library include lack of WebSocket Compression support (RFC 7692) and [minimal threading documentation/support](https://websocket-client.readthedocs.io/en/latest/threading.html). ## Performance The `send` and `validate_utf8` methods can sometimes be bottleneck. You can disable UTF8 validation in this library (and receive a performance enhancement) with the `skip_utf8_validation` parameter. If you want to get better performance, install wsaccel. While websocket-client does not depend on wsaccel, it will be used if available. wsaccel doubles the speed of UTF8 validation and offers a very minor 10% performance boost when masking the payload data as part of the `send` process. Numpy used to be a suggested performance enhancement alternative, but [issue #687](https://github.com/websocket-client/websocket-client/issues/687) found it didn't help. ## Examples Many more examples are found in the [examples documentation](https://websocket-client.readthedocs.io/en/latest/examples.html). ### Long-lived Connection Most real-world WebSockets situations involve longer-lived connections. The WebSocketApp `run_forever` loop will automatically try to reconnect to an open WebSocket connection when a network connection is lost if it is provided with: - a `dispatcher` argument (async dispatcher like rel or pyevent) - a non-zero `reconnect` argument (delay between disconnection and attempted reconnection) `run_forever` provides a variety of event-based connection controls using callbacks like `on_message` and `on_error`. `run_forever` **does not automatically reconnect** if the server closes the WebSocket gracefully (returning [a standard websocket close code](https://www.rfc-editor.org/rfc/rfc6455.html#section-7.4.1)). [This is the logic](https://github.com/websocket-client/websocket-client/pull/838#issuecomment-1228454826) behind the decision. Customizing behavior when the server closes the WebSocket should be handled in the `on_close` callback. This example uses [rel](https://github.com/bubbleboy14/registeredeventlistener) for the dispatcher to provide automatic reconnection. ```python import websocket import _thread import time import rel def on_message(ws, message): print(message) def on_error(ws, error): print(error) def on_close(ws, close_status_code, close_msg): print("### closed ###") def on_open(ws): print("Opened connection") if __name__ == "__main__": websocket.enableTrace(True) ws = websocket.WebSocketApp("wss://api.gemini.com/v1/marketdata/BTCUSD", on_open=on_open, on_message=on_message, on_error=on_error, on_close=on_close) ws.run_forever(dispatcher=rel, reconnect=5) # Set dispatcher to automatic reconnection, 5 second reconnect delay if connection closed unexpectedly rel.signal(2, rel.abort) # Keyboard Interrupt rel.dispatch() ``` ### Short-lived Connection This is if you want to communicate a short message and disconnect immediately when done. For example, if you want to confirm that a WebSocket server is running and responds properly to a specific request. ```python from websocket import create_connection ws = create_connection("ws://echo.websocket.events/") print(ws.recv()) print("Sending 'Hello, World'...") ws.send("Hello, World") print("Sent") print("Receiving...") result = ws.recv() print("Received '%s'" % result) ws.close() ``` websocket-client-1.7.0/compliance/ 0000775 0000000 0000000 00000000000 14532742400 0017074 5 ustar 00root root 0000000 0000000 websocket-client-1.7.0/compliance/README.md 0000664 0000000 0000000 00000001575 14532742400 0020363 0 ustar 00root root 0000000 0000000 # Autobahn Testsuite General information and installation instructions are available at https://crossbar.io/autobahn/. ## Running the test suite 1. Install autobahn using `pip2 install autobahntestsuite`. Note that the [autobahn instructions](https://github.com/crossbario/autobahn-testsuite#installation) states that this is an outdated installation method only for Python 2, so this should be updated at some point. 2. (Optional) If you try step 1 and get an error from gcc stating "Python.h: No such file or directory", then install the python-dev package (specifically the one for Python 2) 3. Run `wstest -m fuzzingserver` 4. Make note of the port number that the server from step 3 is running on, then modify the `test_fuzzingclient.py` file accordingly 5. Run `python test_fuzzingclient.py` 6. When the test is complete, the results will be saved in a directory named `reports` websocket-client-1.7.0/compliance/autobahn-test-report-Feb-03-2021.html 0000664 0000000 0000000 00001454051 14532742400 0025357 0 ustar 00root root 0000000 0000000
Summary report generated on 2021-02-04T04:53:03.594Z (UTC) by Autobahn WebSocket Testsuite v0.8.1/v0.10.9.
Pass | Test case was executed and passed successfully. |
Non-Strict | Test case was executed and passed non-strictly. A non-strict behavior is one that does not adhere to a SHOULD-behavior as described in the protocol specification or a well-defined, canonical behavior that appears to be desirable but left open in the protocol specification. An implementation with non-strict behavior is still conformant to the protocol specification. |
Fail | Test case was executed and failed. An implementation which fails a test case - other than a performance/limits related one - is non-conforming to a MUST-behavior as described in the protocol specification. |
Info | Informational test case which detects certain implementation behavior left unspecified by the spec but nevertheless potentially interesting to implementors. |
Missing | Test case is missing, either because it was skipped via the test suite configuration or deactivated, i.e. because the implementation does not implement the tested feature or breaks during running the test case. |
1 Framing | py-websockets-client | |
1.1 Text Messages | ||
Case 1.1.1 | Pass | 1000 |
Case 1.1.2 | Pass | 1000 |
Case 1.1.3 | Pass | 1000 |
Case 1.1.4 | Pass | 1000 |
Case 1.1.5 | Pass | 1000 |
Case 1.1.6 | Pass | 1000 |
Case 1.1.7 | Pass | 1000 |
Case 1.1.8 | Pass | 1000 |
1 Framing | py-websockets-client | |
1.2 Binary Messages | ||
Case 1.2.1 | Pass | 1000 |
Case 1.2.2 | Pass | 1000 |
Case 1.2.3 | Pass | 1000 |
Case 1.2.4 | Pass | 1000 |
Case 1.2.5 | Pass | 1000 |
Case 1.2.6 | Pass | 1000 |
Case 1.2.7 | Pass | 1000 |
Case 1.2.8 | Pass | 1000 |
2 Pings/Pongs | py-websockets-client | |
Case 2.1 | Pass | 1000 |
Case 2.2 | Pass | 1000 |
Case 2.3 | Pass | 1000 |
Case 2.4 | Pass | 1000 |
Case 2.5 | Pass | 1002 |
Case 2.6 | Pass | 1000 |
Case 2.7 | Pass | 1000 |
Case 2.8 | Pass | 1000 |
Case 2.9 | Pass | 1000 |
Case 2.10 | Pass | 1000 |
Case 2.11 | Pass | 1000 |
3 Reserved Bits | py-websockets-client | |
Case 3.1 | Pass | 1002 |
Case 3.2 | Pass | 1002 |
Case 3.3 | Pass | 1002 |
Case 3.4 | Pass | 1002 |
Case 3.5 | Pass | 1002 |
Case 3.6 | Pass | 1002 |
Case 3.7 | Pass | 1002 |
4 Opcodes | py-websockets-client | |
4.1 Non-control Opcodes | ||
Case 4.1.1 | Pass | 1002 |
Case 4.1.2 | Pass | 1002 |
Case 4.1.3 | Pass | 1002 |
Case 4.1.4 | Pass | 1002 |
Case 4.1.5 | Pass | 1002 |
4 Opcodes | py-websockets-client | |
4.2 Control Opcodes | ||
Case 4.2.1 | Pass | 1002 |
Case 4.2.2 | Pass | 1002 |
Case 4.2.3 | Pass | 1002 |
Case 4.2.4 | Pass | 1002 |
Case 4.2.5 | Pass | 1002 |
5 Fragmentation | py-websockets-client | |
Case 5.1 | Pass | 1002 |
Case 5.2 | Pass | 1002 |
Case 5.3 | Pass | 1000 |
Case 5.4 | Pass | 1000 |
Case 5.5 | Pass | 1000 |
Case 5.6 | Pass | 1000 |
Case 5.7 | Pass | 1000 |
Case 5.8 | Pass | 1000 |
Case 5.9 | Pass | 1002 |
Case 5.10 | Pass | 1002 |
Case 5.11 | Pass | 1002 |
Case 5.12 | Pass | 1002 |
Case 5.13 | Pass | 1002 |
Case 5.14 | Pass | 1002 |
Case 5.15 | Pass | 1002 |
Case 5.16 | Pass | 1002 |
Case 5.17 | Pass | 1002 |
Case 5.18 | Pass | 1002 |
Case 5.19 | Pass | 1000 |
Case 5.20 | Pass | 1000 |
6 UTF-8 Handling | py-websockets-client | |
6.1 Valid UTF-8 with zero payload fragments | ||
Case 6.1.1 | Pass | 1000 |
Case 6.1.2 | Pass | 1000 |
Case 6.1.3 | Pass | 1000 |
6 UTF-8 Handling | py-websockets-client | |
6.2 Valid UTF-8 unfragmented, fragmented on code-points and within code-points | ||
Case 6.2.1 | Pass | 1000 |
Case 6.2.2 | Pass | 1000 |
Case 6.2.3 | Pass | 1000 |
Case 6.2.4 | Pass | 1000 |
6 UTF-8 Handling | py-websockets-client | |
6.3 Invalid UTF-8 differently fragmented | ||
Case 6.3.1 | Pass | 1007 |
Case 6.3.2 | Pass | 1007 |
6 UTF-8 Handling | py-websockets-client | |
6.4 Fail-fast on invalid UTF-8 | ||
Case 6.4.1 | Non-Strict | 1007 |
Case 6.4.2 | Non-Strict | 1007 |
Case 6.4.3 | Non-Strict | 1007 |
Case 6.4.4 | Non-Strict | 1007 |
6 UTF-8 Handling | py-websockets-client | |
6.5 Some valid UTF-8 sequences | ||
Case 6.5.1 | Pass | 1000 |
Case 6.5.2 | Pass | 1000 |
Case 6.5.3 | Pass | 1000 |
Case 6.5.4 | Pass | 1000 |
Case 6.5.5 | Pass | 1000 |
6 UTF-8 Handling | py-websockets-client | |
6.6 All prefixes of a valid UTF-8 string that contains multi-byte code points | ||
Case 6.6.1 | Pass | 1002 |
Case 6.6.2 | Pass | 1000 |
Case 6.6.3 | Pass | 1002 |
Case 6.6.4 | Pass | 1002 |
Case 6.6.5 | Pass | 1000 |
Case 6.6.6 | Pass | 1002 |
Case 6.6.7 | Pass | 1000 |
Case 6.6.8 | Pass | 1002 |
Case 6.6.9 | Pass | 1000 |
Case 6.6.10 | Pass | 1002 |
Case 6.6.11 | Pass | 1000 |
6 UTF-8 Handling | py-websockets-client | |
6.7 First possible sequence of a certain length | ||
Case 6.7.1 | Pass | 1000 |
Case 6.7.2 | Pass | 1000 |
Case 6.7.3 | Pass | 1000 |
Case 6.7.4 | Pass | 1000 |
6 UTF-8 Handling | py-websockets-client | |
6.8 First possible sequence length 5/6 (invalid codepoints) | ||
Case 6.8.1 | Pass | 1007 |
Case 6.8.2 | Pass | 1007 |
6 UTF-8 Handling | py-websockets-client | |
6.9 Last possible sequence of a certain length | ||
Case 6.9.1 | Pass | 1000 |
Case 6.9.2 | Pass | 1000 |
Case 6.9.3 | Pass | 1000 |
Case 6.9.4 | Pass | 1000 |
6 UTF-8 Handling | py-websockets-client | |
6.10 Last possible sequence length 4/5/6 (invalid codepoints) | ||
Case 6.10.1 | Pass | 1007 |
Case 6.10.2 | Pass | 1007 |
Case 6.10.3 | Pass | 1007 |
6 UTF-8 Handling | py-websockets-client | |
6.11 Other boundary conditions | ||
Case 6.11.1 | Pass | 1000 |
Case 6.11.2 | Pass | 1000 |
Case 6.11.3 | Pass | 1000 |
Case 6.11.4 | Pass | 1000 |
Case 6.11.5 | Pass | 1007 |
6 UTF-8 Handling | py-websockets-client | |
6.12 Unexpected continuation bytes | ||
Case 6.12.1 | Pass | 1007 |
Case 6.12.2 | Pass | 1007 |
Case 6.12.3 | Pass | 1007 |
Case 6.12.4 | Pass | 1007 |
Case 6.12.5 | Pass | 1007 |
Case 6.12.6 | Pass | 1007 |
Case 6.12.7 | Pass | 1007 |
Case 6.12.8 | Pass | 1007 |
6 UTF-8 Handling | py-websockets-client | |
6.13 Lonely start characters | ||
Case 6.13.1 | Pass | 1007 |
Case 6.13.2 | Pass | 1007 |
Case 6.13.3 | Pass | 1007 |
Case 6.13.4 | Pass | 1007 |
Case 6.13.5 | Pass | 1007 |
6 UTF-8 Handling | py-websockets-client | |
6.14 Sequences with last continuation byte missing | ||
Case 6.14.1 | Pass | 1007 |
Case 6.14.2 | Pass | 1007 |
Case 6.14.3 | Pass | 1007 |
Case 6.14.4 | Pass | 1007 |
Case 6.14.5 | Pass | 1007 |
Case 6.14.6 | Pass | 1002 |
Case 6.14.7 | Pass | 1002 |
Case 6.14.8 | Pass | 1007 |
Case 6.14.9 | Pass | 1007 |
Case 6.14.10 | Pass | 1007 |
6 UTF-8 Handling | py-websockets-client | |
6.15 Concatenation of incomplete sequences | ||
Case 6.15.1 | Pass | 1007 |
6 UTF-8 Handling | py-websockets-client | |
6.16 Impossible bytes | ||
Case 6.16.1 | Pass | 1007 |
Case 6.16.2 | Pass | 1007 |
Case 6.16.3 | Pass | 1007 |
6 UTF-8 Handling | py-websockets-client | |
6.17 Examples of an overlong ASCII character | ||
Case 6.17.1 | Pass | 1007 |
Case 6.17.2 | Pass | 1007 |
Case 6.17.3 | Pass | 1007 |
Case 6.17.4 | Pass | 1007 |
Case 6.17.5 | Pass | 1007 |
6 UTF-8 Handling | py-websockets-client | |
6.18 Maximum overlong sequences | ||
Case 6.18.1 | Pass | 1007 |
Case 6.18.2 | Pass | 1007 |
Case 6.18.3 | Pass | 1007 |
Case 6.18.4 | Pass | 1007 |
Case 6.18.5 | Pass | 1007 |
6 UTF-8 Handling | py-websockets-client | |
6.19 Overlong representation of the NUL character | ||
Case 6.19.1 | Pass | 1007 |
Case 6.19.2 | Pass | 1007 |
Case 6.19.3 | Pass | 1007 |
Case 6.19.4 | Pass | 1007 |
Case 6.19.5 | Pass | 1007 |
6 UTF-8 Handling | py-websockets-client | |
6.20 Single UTF-16 surrogates | ||
Case 6.20.1 | Pass | 1007 |
Case 6.20.2 | Pass | 1007 |
Case 6.20.3 | Pass | 1007 |
Case 6.20.4 | Pass | 1007 |
Case 6.20.5 | Pass | 1007 |
Case 6.20.6 | Pass | 1007 |
Case 6.20.7 | Pass | 1007 |
6 UTF-8 Handling | py-websockets-client | |
6.21 Paired UTF-16 surrogates | ||
Case 6.21.1 | Pass | 1007 |
Case 6.21.2 | Pass | 1007 |
Case 6.21.3 | Pass | 1007 |
Case 6.21.4 | Pass | 1007 |
Case 6.21.5 | Pass | 1007 |
Case 6.21.6 | Pass | 1007 |
Case 6.21.7 | Pass | 1007 |
Case 6.21.8 | Pass | 1007 |
6 UTF-8 Handling | py-websockets-client | |
6.22 Non-character code points (valid UTF-8) | ||
Case 6.22.1 | Pass | 1000 |
Case 6.22.2 | Pass | 1000 |
Case 6.22.3 | Pass | 1000 |
Case 6.22.4 | Pass | 1000 |
Case 6.22.5 | Pass | 1000 |
Case 6.22.6 | Pass | 1000 |
Case 6.22.7 | Pass | 1000 |
Case 6.22.8 | Pass | 1000 |
Case 6.22.9 | Pass | 1000 |
Case 6.22.10 | Pass | 1000 |
Case 6.22.11 | Pass | 1000 |
Case 6.22.12 | Pass | 1000 |
Case 6.22.13 | Pass | 1000 |
Case 6.22.14 | Pass | 1000 |
Case 6.22.15 | Pass | 1000 |
Case 6.22.16 | Pass | 1000 |
Case 6.22.17 | Pass | 1000 |
Case 6.22.18 | Pass | 1000 |
Case 6.22.19 | Pass | 1000 |
Case 6.22.20 | Pass | 1000 |
Case 6.22.21 | Pass | 1000 |
Case 6.22.22 | Pass | 1000 |
Case 6.22.23 | Pass | 1000 |
Case 6.22.24 | Pass | 1000 |
Case 6.22.25 | Pass | 1000 |
Case 6.22.26 | Pass | 1000 |
Case 6.22.27 | Pass | 1000 |
Case 6.22.28 | Pass | 1000 |
Case 6.22.29 | Pass | 1000 |
Case 6.22.30 | Pass | 1000 |
Case 6.22.31 | Pass | 1000 |
Case 6.22.32 | Pass | 1000 |
Case 6.22.33 | Pass | 1000 |
Case 6.22.34 | Pass | 1000 |
6 UTF-8 Handling | py-websockets-client | |
6.23 Unicode specials (i.e. replacement char) | ||
Case 6.23.1 | Pass | 1000 |
Case 6.23.2 | Pass | 1000 |
Case 6.23.3 | Pass | 1000 |
Case 6.23.4 | Pass | 1000 |
Case 6.23.5 | Pass | 1000 |
Case 6.23.6 | Pass | 1000 |
Case 6.23.7 | Pass | 1000 |
7 Close Handling | py-websockets-client | |
7.1 Basic close behavior (fuzzer initiated) | ||
Case 7.1.1 | Pass | 1000 |
Case 7.1.2 | Pass | 1000 |
Case 7.1.3 | Pass | 1000 |
Case 7.1.4 | Pass | 1000 |
Case 7.1.5 | Pass | 1000 |
Case 7.1.6 | Info | 1000 |
7 Close Handling | py-websockets-client | |
7.3 Close frame structure: payload length (fuzzer initiated) | ||
Case 7.3.1 | Pass | 1000 |
Case 7.3.2 | Pass | 1002 |
Case 7.3.3 | Pass | 1000 |
Case 7.3.4 | Pass | 1000 |
Case 7.3.5 | Pass | 1000 |
Case 7.3.6 | Pass | 1002 |
7 Close Handling | py-websockets-client | |
7.5 Close frame structure: payload value (fuzzer initiated) | ||
Case 7.5.1 | Pass | 1002 |
7 Close Handling | py-websockets-client | |
7.7 Close frame structure: valid close codes (fuzzer initiated) | ||
Case 7.7.1 | Pass | 1000 |
Case 7.7.2 | Pass | 1000 |
Case 7.7.3 | Pass | 1000 |
Case 7.7.4 | Pass | 1000 |
Case 7.7.5 | Pass | 1000 |
Case 7.7.6 | Pass | 1000 |
Case 7.7.7 | Pass | 1000 |
Case 7.7.8 | Pass | 1000 |
Case 7.7.9 | Pass | 1000 |
Case 7.7.10 | Pass | 1000 |
Case 7.7.11 | Pass | 1000 |
Case 7.7.12 | Pass | 1000 |
Case 7.7.13 | Pass | 1000 |
7 Close Handling | py-websockets-client | |
7.9 Close frame structure: invalid close codes (fuzzer initiated) | ||
Case 7.9.1 | Pass | 1002 |
Case 7.9.2 | Pass | 1002 |
Case 7.9.3 | Pass | 1002 |
Case 7.9.4 | Pass | 1002 |
Case 7.9.5 | Pass | 1002 |
Case 7.9.6 | Pass | 1002 |
Case 7.9.7 | Pass | 1002 |
Case 7.9.8 | Pass | 1002 |
Case 7.9.9 | Pass | 1002 |
7 Close Handling | py-websockets-client | |
7.13 Informational close information (fuzzer initiated) | ||
Case 7.13.1 | Info | 1002 |
Case 7.13.2 | Info | 1002 |
9 Limits/Performance | py-websockets-client | |
9.1 Text Message (increasing size) | ||
Case 9.1.1 | Pass 52 ms | 1000 |
Case 9.1.2 | Pass 186 ms | 1000 |
Case 9.1.3 | Pass 703 ms | 1000 |
Case 9.1.4 | Pass 2824 ms | 1000 |
Case 9.1.5 | Pass 5517 ms | 1000 |
Case 9.1.6 | Pass 11123 ms | 1000 |
9 Limits/Performance | py-websockets-client | |
9.2 Binary Message (increasing size) | ||
Case 9.2.1 | Pass 12 ms | 1000 |
Case 9.2.2 | Pass 45 ms | 1000 |
Case 9.2.3 | Pass 173 ms | 1000 |
Case 9.2.4 | Pass 699 ms | 1000 |
Case 9.2.5 | Pass 1393 ms | 1000 |
Case 9.2.6 | Pass 2790 ms | 1000 |
9 Limits/Performance | py-websockets-client | |
9.3 Fragmented Text Message (fixed size, increasing fragment size) | ||
Case 9.3.1 | Pass 15470 ms | 1000 |
Case 9.3.2 | Pass 5939 ms | 1000 |
Case 9.3.3 | Pass 3600 ms | 1000 |
Case 9.3.4 | Pass 3096 ms | 1000 |
Case 9.3.5 | Pass 3005 ms | 1000 |
Case 9.3.6 | Pass 2755 ms | 1000 |
Case 9.3.7 | Pass 2864 ms | 1000 |
Case 9.3.8 | Pass 2743 ms | 1000 |
Case 9.3.9 | Pass 2731 ms | 1000 |
9 Limits/Performance | py-websockets-client | |
9.4 Fragmented Binary Message (fixed size, increasing fragment size) | ||
Case 9.4.1 | Pass 13318 ms | 1000 |
Case 9.4.2 | Pass 3838 ms | 1000 |
Case 9.4.3 | Pass 1449 ms | 1000 |
Case 9.4.4 | Pass 854 ms | 1000 |
Case 9.4.5 | Pass 701 ms | 1000 |
Case 9.4.6 | Pass 660 ms | 1000 |
Case 9.4.7 | Pass 642 ms | 1000 |
Case 9.4.8 | Pass 649 ms | 1000 |
Case 9.4.9 | Pass 638 ms | 1000 |
9 Limits/Performance | py-websockets-client | |
9.5 Text Message (fixed size, increasing chop size) | ||
Case 9.5.1 | Pass 1269 ms | 1000 |
Case 9.5.2 | Pass 967 ms | 1000 |
Case 9.5.3 | Pass 831 ms | 1000 |
Case 9.5.4 | Pass 756 ms | 1000 |
Case 9.5.5 | Pass 728 ms | 1000 |
Case 9.5.6 | Pass 734 ms | 1000 |
9 Limits/Performance | py-websockets-client | |
9.6 Binary Text Message (fixed size, increasing chop size) | ||
Case 9.6.1 | Pass 741 ms | 1000 |
Case 9.6.2 | Pass 464 ms | 1000 |
Case 9.6.3 | Pass 315 ms | 1000 |
Case 9.6.4 | Pass 245 ms | 1000 |
Case 9.6.5 | Pass 218 ms | 1000 |
Case 9.6.6 | Pass 197 ms | 1000 |
9 Limits/Performance | py-websockets-client | |
9.7 Text Message Roundtrip Time (fixed number, increasing size) | ||
Case 9.7.1 | Pass 140 ms | 1000 |
Case 9.7.2 | Pass 137 ms | 1000 |
Case 9.7.3 | Pass 185 ms | 1000 |
Case 9.7.4 | Pass 447 ms | 1000 |
Case 9.7.5 | Pass 1030 ms | 1000 |
Case 9.7.6 | Pass 3221 ms | 1000 |
9 Limits/Performance | py-websockets-client | |
9.8 Binary Message Roundtrip Time (fixed number, increasing size) | ||
Case 9.8.1 | Pass 97 ms | 1000 |
Case 9.8.2 | Pass 108 ms | 1000 |
Case 9.8.3 | Pass 117 ms | 1000 |
Case 9.8.4 | Pass 166 ms | 1000 |
Case 9.8.5 | Pass 411 ms | 1000 |
Case 9.8.6 | Pass 983 ms | 1000 |
10 Misc | py-websockets-client | |
10.1 Auto-Fragmentation | ||
Case 10.1.1 | Pass | 1000 |
12 WebSocket Compression (different payloads) | py-websockets-client | |
12.1 Large JSON data file (utf8, 194056 bytes) | ||
Case 12.1.1 | Unimplemented | |
Case 12.1.2 | Unimplemented | |
Case 12.1.3 | Unimplemented | |
Case 12.1.4 | Unimplemented | |
Case 12.1.5 | Unimplemented | |
Case 12.1.6 | Unimplemented | |
Case 12.1.7 | Unimplemented | |
Case 12.1.8 | Unimplemented | |
Case 12.1.9 | Unimplemented | |
Case 12.1.10 | Unimplemented | |
Case 12.1.11 | Unimplemented | |
Case 12.1.12 | Unimplemented | |
Case 12.1.13 | Unimplemented | |
Case 12.1.14 | Unimplemented | |
Case 12.1.15 | Unimplemented | |
Case 12.1.16 | Unimplemented | |
Case 12.1.17 | Unimplemented | |
Case 12.1.18 | Unimplemented | |
12 WebSocket Compression (different payloads) | py-websockets-client | |
12.2 Lena Picture, Bitmap 512x512 bw (binary, 263222 bytes) | ||
Case 12.2.1 | Unimplemented | |
Case 12.2.2 | Unimplemented | |
Case 12.2.3 | Unimplemented | |
Case 12.2.4 | Unimplemented | |
Case 12.2.5 | Unimplemented | |
Case 12.2.6 | Unimplemented | |
Case 12.2.7 | Unimplemented | |
Case 12.2.8 | Unimplemented | |
Case 12.2.9 | Unimplemented | |
Case 12.2.10 | Unimplemented | |
Case 12.2.11 | Unimplemented | |
Case 12.2.12 | Unimplemented | |
Case 12.2.13 | Unimplemented | |
Case 12.2.14 | Unimplemented | |
Case 12.2.15 | Unimplemented | |
Case 12.2.16 | Unimplemented | |
Case 12.2.17 | Unimplemented | |
Case 12.2.18 | Unimplemented | |
12 WebSocket Compression (different payloads) | py-websockets-client | |
12.3 Human readable text, Goethe's Faust I (German) (binary, 222218 bytes) | ||
Case 12.3.1 | Unimplemented | |
Case 12.3.2 | Unimplemented | |
Case 12.3.3 | Unimplemented | |
Case 12.3.4 | Unimplemented | |
Case 12.3.5 | Unimplemented | |
Case 12.3.6 | Unimplemented | |
Case 12.3.7 | Unimplemented | |
Case 12.3.8 | Unimplemented | |
Case 12.3.9 | Unimplemented | |
Case 12.3.10 | Unimplemented | |
Case 12.3.11 | Unimplemented | |
Case 12.3.12 | Unimplemented | |
Case 12.3.13 | Unimplemented | |
Case 12.3.14 | Unimplemented | |
Case 12.3.15 | Unimplemented | |
Case 12.3.16 | Unimplemented | |
Case 12.3.17 | Unimplemented | |
Case 12.3.18 | Unimplemented | |
12 WebSocket Compression (different payloads) | py-websockets-client | |
12.4 Large HTML file (utf8, 263527 bytes) | ||
Case 12.4.1 | Unimplemented | |
Case 12.4.2 | Unimplemented | |
Case 12.4.3 | Unimplemented | |
Case 12.4.4 | Unimplemented | |
Case 12.4.5 | Unimplemented | |
Case 12.4.6 | Unimplemented | |
Case 12.4.7 | Unimplemented | |
Case 12.4.8 | Unimplemented | |
Case 12.4.9 | Unimplemented | |
Case 12.4.10 | Unimplemented | |
Case 12.4.11 | Unimplemented | |
Case 12.4.12 | Unimplemented | |
Case 12.4.13 | Unimplemented | |
Case 12.4.14 | Unimplemented | |
Case 12.4.15 | Unimplemented | |
Case 12.4.16 | Unimplemented | |
Case 12.4.17 | Unimplemented | |
Case 12.4.18 | Unimplemented | |
12 WebSocket Compression (different payloads) | py-websockets-client | |
12.5 A larger PDF (binary, 1042328 bytes) | ||
Case 12.5.1 | Unimplemented | |
Case 12.5.2 | Unimplemented | |
Case 12.5.3 | Unimplemented | |
Case 12.5.4 | Unimplemented | |
Case 12.5.5 | Unimplemented | |
Case 12.5.6 | Unimplemented | |
Case 12.5.7 | Unimplemented | |
Case 12.5.8 | Unimplemented | |
Case 12.5.9 | Unimplemented | |
Case 12.5.10 | Unimplemented | |
Case 12.5.11 | Unimplemented | |
Case 12.5.12 | Unimplemented | |
Case 12.5.13 | Unimplemented | |
Case 12.5.14 | Unimplemented | |
Case 12.5.15 | Unimplemented | |
Case 12.5.16 | Unimplemented | |
Case 12.5.17 | Unimplemented | |
Case 12.5.18 | Unimplemented | |
13 WebSocket Compression (different parameters) | py-websockets-client | |
13.1 Large JSON data file (utf8, 194056 bytes) - client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 0)] / server accept (requestNoContextTakeover, requestMaxWindowBits): [(False, 0)] | ||
Case 13.1.1 | Unimplemented | |
Case 13.1.2 | Unimplemented | |
Case 13.1.3 | Unimplemented | |
Case 13.1.4 | Unimplemented | |
Case 13.1.5 | Unimplemented | |
Case 13.1.6 | Unimplemented | |
Case 13.1.7 | Unimplemented | |
Case 13.1.8 | Unimplemented | |
Case 13.1.9 | Unimplemented | |
Case 13.1.10 | Unimplemented | |
Case 13.1.11 | Unimplemented | |
Case 13.1.12 | Unimplemented | |
Case 13.1.13 | Unimplemented | |
Case 13.1.14 | Unimplemented | |
Case 13.1.15 | Unimplemented | |
Case 13.1.16 | Unimplemented | |
Case 13.1.17 | Unimplemented | |
Case 13.1.18 | Unimplemented | |
13 WebSocket Compression (different parameters) | py-websockets-client | |
13.2 Large JSON data file (utf8, 194056 bytes) - client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 0)] / server accept (requestNoContextTakeover, requestMaxWindowBits): [(True, 0)] | ||
Case 13.2.1 | Unimplemented | |
Case 13.2.2 | Unimplemented | |
Case 13.2.3 | Unimplemented | |
Case 13.2.4 | Unimplemented | |
Case 13.2.5 | Unimplemented | |
Case 13.2.6 | Unimplemented | |
Case 13.2.7 | Unimplemented | |
Case 13.2.8 | Unimplemented | |
Case 13.2.9 | Unimplemented | |
Case 13.2.10 | Unimplemented | |
Case 13.2.11 | Unimplemented | |
Case 13.2.12 | Unimplemented | |
Case 13.2.13 | Unimplemented | |
Case 13.2.14 | Unimplemented | |
Case 13.2.15 | Unimplemented | |
Case 13.2.16 | Unimplemented | |
Case 13.2.17 | Unimplemented | |
Case 13.2.18 | Unimplemented | |
13 WebSocket Compression (different parameters) | py-websockets-client | |
13.3 Large JSON data file (utf8, 194056 bytes) - client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 8)] / server accept (requestNoContextTakeover, requestMaxWindowBits): [(False, 8)] | ||
Case 13.3.1 | Unimplemented | |
Case 13.3.2 | Unimplemented | |
Case 13.3.3 | Unimplemented | |
Case 13.3.4 | Unimplemented | |
Case 13.3.5 | Unimplemented | |
Case 13.3.6 | Unimplemented | |
Case 13.3.7 | Unimplemented | |
Case 13.3.8 | Unimplemented | |
Case 13.3.9 | Unimplemented | |
Case 13.3.10 | Unimplemented | |
Case 13.3.11 | Unimplemented | |
Case 13.3.12 | Unimplemented | |
Case 13.3.13 | Unimplemented | |
Case 13.3.14 | Unimplemented | |
Case 13.3.15 | Unimplemented | |
Case 13.3.16 | Unimplemented | |
Case 13.3.17 | Unimplemented | |
Case 13.3.18 | Unimplemented | |
13 WebSocket Compression (different parameters) | py-websockets-client | |
13.4 Large JSON data file (utf8, 194056 bytes) - client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 15)] / server accept (requestNoContextTakeover, requestMaxWindowBits): [(False, 15)] | ||
Case 13.4.1 | Unimplemented | |
Case 13.4.2 | Unimplemented | |
Case 13.4.3 | Unimplemented | |
Case 13.4.4 | Unimplemented | |
Case 13.4.5 | Unimplemented | |
Case 13.4.6 | Unimplemented | |
Case 13.4.7 | Unimplemented | |
Case 13.4.8 | Unimplemented | |
Case 13.4.9 | Unimplemented | |
Case 13.4.10 | Unimplemented | |
Case 13.4.11 | Unimplemented | |
Case 13.4.12 | Unimplemented | |
Case 13.4.13 | Unimplemented | |
Case 13.4.14 | Unimplemented | |
Case 13.4.15 | Unimplemented | |
Case 13.4.16 | Unimplemented | |
Case 13.4.17 | Unimplemented | |
Case 13.4.18 | Unimplemented | |
13 WebSocket Compression (different parameters) | py-websockets-client | |
13.5 Large JSON data file (utf8, 194056 bytes) - client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8)] / server accept (requestNoContextTakeover, requestMaxWindowBits): [(True, 8)] | ||
Case 13.5.1 | Unimplemented | |
Case 13.5.2 | Unimplemented | |
Case 13.5.3 | Unimplemented | |
Case 13.5.4 | Unimplemented | |
Case 13.5.5 | Unimplemented | |
Case 13.5.6 | Unimplemented | |
Case 13.5.7 | Unimplemented | |
Case 13.5.8 | Unimplemented | |
Case 13.5.9 | Unimplemented | |
Case 13.5.10 | Unimplemented | |
Case 13.5.11 | Unimplemented | |
Case 13.5.12 | Unimplemented | |
Case 13.5.13 | Unimplemented | |
Case 13.5.14 | Unimplemented | |
Case 13.5.15 | Unimplemented | |
Case 13.5.16 | Unimplemented | |
Case 13.5.17 | Unimplemented | |
Case 13.5.18 | Unimplemented | |
13 WebSocket Compression (different parameters) | py-websockets-client | |
13.6 Large JSON data file (utf8, 194056 bytes) - client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 15)] / server accept (requestNoContextTakeover, requestMaxWindowBits): [(True, 15)] | ||
Case 13.6.1 | Unimplemented | |
Case 13.6.2 | Unimplemented | |
Case 13.6.3 | Unimplemented | |
Case 13.6.4 | Unimplemented | |
Case 13.6.5 | Unimplemented | |
Case 13.6.6 | Unimplemented | |
Case 13.6.7 | Unimplemented | |
Case 13.6.8 | Unimplemented | |
Case 13.6.9 | Unimplemented | |
Case 13.6.10 | Unimplemented | |
Case 13.6.11 | Unimplemented | |
Case 13.6.12 | Unimplemented | |
Case 13.6.13 | Unimplemented | |
Case 13.6.14 | Unimplemented | |
Case 13.6.15 | Unimplemented | |
Case 13.6.16 | Unimplemented | |
Case 13.6.17 | Unimplemented | |
Case 13.6.18 | Unimplemented | |
13 WebSocket Compression (different parameters) | py-websockets-client | |
13.7 Large JSON data file (utf8, 194056 bytes) - client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8), (True, 0), (False, 0)] / server accept (requestNoContextTakeover, requestMaxWindowBits): [(True, 8), (True, 0), (False, 0)] | ||
Case 13.7.1 | Unimplemented | |
Case 13.7.2 | Unimplemented | |
Case 13.7.3 | Unimplemented | |
Case 13.7.4 | Unimplemented | |
Case 13.7.5 | Unimplemented | |
Case 13.7.6 | Unimplemented | |
Case 13.7.7 | Unimplemented | |
Case 13.7.8 | Unimplemented | |
Case 13.7.9 | Unimplemented | |
Case 13.7.10 | Unimplemented | |
Case 13.7.11 | Unimplemented | |
Case 13.7.12 | Unimplemented | |
Case 13.7.13 | Unimplemented | |
Case 13.7.14 | Unimplemented | |
Case 13.7.15 | Unimplemented | |
Case 13.7.16 | Unimplemented | |
Case 13.7.17 | Unimplemented | |
Case 13.7.18 | Unimplemented |
Case Description
Send text message with payload 0.
Case Expectation
Receive echo'ed text message (with empty payload). Clean close with normal code.
Case Description
Send text message message with payload of length 125.
Case Expectation
Receive echo'ed text message (with payload as sent). Clean close with normal code.
Case Description
Send text message message with payload of length 126.
Case Expectation
Receive echo'ed text message (with payload as sent). Clean close with normal code.
Case Description
Send text message message with payload of length 127.
Case Expectation
Receive echo'ed text message (with payload as sent). Clean close with normal code.
Case Description
Send text message message with payload of length 128.
Case Expectation
Receive echo'ed text message (with payload as sent). Clean close with normal code.
Case Description
Send text message message with payload of length 65535.
Case Expectation
Receive echo'ed text message (with payload as sent). Clean close with normal code.
Case Description
Send text message message with payload of length 65536.
Case Expectation
Receive echo'ed text message (with payload as sent). Clean close with normal code.
Case Description
Send text message message with payload of length 65536. Sent out data in chops of 997 octets.
Case Expectation
Receive echo'ed text message (with payload as sent). Clean close with normal code.
Case Description
Send binary message with payload 0.
Case Expectation
Receive echo'ed binary message (with empty payload). Clean close with normal code.
Case Description
Send binary message message with payload of length 125.
Case Expectation
Receive echo'ed binary message (with payload as sent). Clean close with normal code.
Case Description
Send binary message message with payload of length 126.
Case Expectation
Receive echo'ed binary message (with payload as sent). Clean close with normal code.
Case Description
Send binary message message with payload of length 127.
Case Expectation
Receive echo'ed binary message (with payload as sent). Clean close with normal code.
Case Description
Send binary message message with payload of length 128.
Case Expectation
Receive echo'ed binary message (with payload as sent). Clean close with normal code.
Case Description
Send binary message message with payload of length 65535.
Case Expectation
Receive echo'ed binary message (with payload as sent). Clean close with normal code.
Case Description
Send binary message message with payload of length 65536.
Case Expectation
Receive echo'ed binary message (with payload as sent). Clean close with normal code.
Case Description
Send binary message message with payload of length 65536. Sent out data in chops of 997 octets.
Case Expectation
Receive echo'ed binary message (with payload as sent). Clean close with normal code.
Case Description
Send ping without payload.
Case Expectation
Pong (with empty payload) is sent in reply to Ping. Clean close with normal code.
Case Description
Send ping with small text payload.
Case Expectation
Pong with payload echo'ed is sent in reply to Ping. Clean close with normal code.
Case Description
Send ping with small binary (non UTF-8) payload.
Case Expectation
Pong with payload echo'ed is sent in reply to Ping. Clean close with normal code.
Case Description
Send ping with binary payload of 125 octets.
Case Expectation
Pong with payload echo'ed is sent in reply to Ping. Clean close with normal code.
Case Description
Send ping with binary payload of 126 octets.
Case Expectation
Connection is failed immediately (1002/Protocol Error), since control frames are only allowed to have payload up to and including 125 octets..
Case Description
Send ping with binary payload of 125 octets, send in octet-wise chops.
Case Expectation
Pong with payload echo'ed is sent in reply to Ping. Implementations must be TCP clean. Clean close with normal code.
Case Description
Send unsolicited pong without payload. Verify nothing is received. Clean close with normal code.
Case Expectation
Nothing.
Case Description
Send unsolicited pong with payload. Verify nothing is received. Clean close with normal code.
Case Expectation
Nothing.
Case Description
Send unsolicited pong with payload. Send ping with payload. Verify pong for ping is received.
Case Expectation
Nothing in reply to own Pong, but Pong with payload echo'ed in reply to Ping. Clean close with normal code.
Case Description
Send 10 Pings with payload.
Case Expectation
Pongs for our Pings with all the payloads. Note: This is not required by the Spec .. but we check for this behaviour anyway. Clean close with normal code.
Case Description
Send 10 Pings with payload. Send out octets in octet-wise chops.
Case Expectation
Pongs for our Pings with all the payloads. Note: This is not required by the Spec .. but we check for this behaviour anyway. Clean close with normal code.
Case Description
Send small text message with RSV = 1.
Case Expectation
The connection is failed immediately (1002/protocol error), since RSV must be 0, when no extension defining RSV meaning has been negotiated.
Case Description
Send small text message, then send again with RSV = 2, then send Ping.
Case Expectation
Echo for first message is received, but then connection is failed immediately, since RSV must be 0, when no extension defining RSV meaning has been negotiated. The Pong is not received.
Case Description
Send small text message, then send again with RSV = 3, then send Ping. Octets are sent in frame-wise chops. Octets are sent in octet-wise chops.
Case Expectation
Echo for first message is received, but then connection is failed immediately, since RSV must be 0, when no extension defining RSV meaning has been negotiated. The Pong is not received.
Case Description
Send small text message, then send again with RSV = 4, then send Ping. Octets are sent in octet-wise chops.
Case Expectation
Echo for first message is received, but then connection is failed immediately, since RSV must be 0, when no extension defining RSV meaning has been negotiated. The Pong is not received.
Case Description
Send small binary message with RSV = 5.
Case Expectation
The connection is failed immediately, since RSV must be 0.
Case Description
Send Ping with RSV = 6.
Case Expectation
The connection is failed immediately, since RSV must be 0.
Case Description
Send Close with RSV = 7.
Case Expectation
The connection is failed immediately, since RSV must be 0.
Case Description
Send frame with reserved non-control Opcode = 3.
Case Expectation
The connection is failed immediately.
Case Description
Send frame with reserved non-control Opcode = 4 and non-empty payload.
Case Expectation
The connection is failed immediately.
Case Description
Send small text message, then send frame with reserved non-control Opcode = 5, then send Ping.
Case Expectation
Echo for first message is received, but then connection is failed immediately, since reserved opcode frame is used. A Pong is not received.
Case Description
Send small text message, then send frame with reserved non-control Opcode = 6 and non-empty payload, then send Ping.
Case Expectation
Echo for first message is received, but then connection is failed immediately, since reserved opcode frame is used. A Pong is not received.
Case Description
Send small text message, then send frame with reserved non-control Opcode = 7 and non-empty payload, then send Ping.
Case Expectation
Echo for first message is received, but then connection is failed immediately, since reserved opcode frame is used. A Pong is not received.
Case Description
Send frame with reserved control Opcode = 11.
Case Expectation
The connection is failed immediately.
Case Description
Send frame with reserved control Opcode = 12 and non-empty payload.
Case Expectation
The connection is failed immediately.
Case Description
Send small text message, then send frame with reserved control Opcode = 13, then send Ping.
Case Expectation
Echo for first message is received, but then connection is failed immediately, since reserved opcode frame is used. A Pong is not received.
Case Description
Send small text message, then send frame with reserved control Opcode = 14 and non-empty payload, then send Ping.
Case Expectation
Echo for first message is received, but then connection is failed immediately, since reserved opcode frame is used. A Pong is not received.
Case Description
Send small text message, then send frame with reserved control Opcode = 15 and non-empty payload, then send Ping.
Case Expectation
Echo for first message is received, but then connection is failed immediately, since reserved opcode frame is used. A Pong is not received.
Case Description
Send Ping fragmented into 2 fragments.
Case Expectation
Connection is failed immediately, since control message MUST NOT be fragmented.
Case Description
Send Pong fragmented into 2 fragments.
Case Expectation
Connection is failed immediately, since control message MUST NOT be fragmented.
Case Description
Send text Message fragmented into 2 fragments.
Case Expectation
Message is processed and echo'ed back to us.
Case Description
Send text Message fragmented into 2 fragments, octets are sent in frame-wise chops.
Case Expectation
Message is processed and echo'ed back to us.
Case Description
Send text Message fragmented into 2 fragments, octets are sent in octet-wise chops.
Case Expectation
Message is processed and echo'ed back to us.
Case Description
Send text Message fragmented into 2 fragments, one ping with payload in-between.
Case Expectation
A pong is received, then the message is echo'ed back to us.
Case Description
Send text Message fragmented into 2 fragments, one ping with payload in-between. Octets are sent in frame-wise chops.
Case Expectation
A pong is received, then the message is echo'ed back to us.
Case Description
Send text Message fragmented into 2 fragments, one ping with payload in-between. Octets are sent in octet-wise chops.
Case Expectation
A pong is received, then the message is echo'ed back to us.
Case Description
Send unfragmented Text Message after Continuation Frame with FIN = true, where there is nothing to continue, sent in one chop.
Case Expectation
The connection is failed immediately, since there is no message to continue.
Case Description
Send unfragmented Text Message after Continuation Frame with FIN = true, where there is nothing to continue, sent in per-frame chops.
Case Expectation
The connection is failed immediately, since there is no message to continue.
Case Description
Send unfragmented Text Message after Continuation Frame with FIN = true, where there is nothing to continue, sent in octet-wise chops.
Case Expectation
The connection is failed immediately, since there is no message to continue.
Case Description
Send unfragmented Text Message after Continuation Frame with FIN = false, where there is nothing to continue, sent in one chop.
Case Expectation
The connection is failed immediately, since there is no message to continue.
Case Description
Send unfragmented Text Message after Continuation Frame with FIN = false, where there is nothing to continue, sent in per-frame chops.
Case Expectation
The connection is failed immediately, since there is no message to continue.
Case Description
Send unfragmented Text Message after Continuation Frame with FIN = false, where there is nothing to continue, sent in octet-wise chops.
Case Expectation
The connection is failed immediately, since there is no message to continue.
Case Description
Send text Message fragmented into 2 fragments, then Continuation Frame with FIN = false where there is nothing to continue, then unfragmented Text Message, all sent in one chop.
Case Expectation
The connection is failed immediately, since there is no message to continue.
Case Description
Repeated 2x: Continuation Frame with FIN = false (where there is nothing to continue), then text Message fragmented into 2 fragments.
Case Expectation
The connection is failed immediately, since there is no message to continue.
Case Description
Repeated 2x: Continuation Frame with FIN = true (where there is nothing to continue), then text Message fragmented into 2 fragments.
Case Expectation
The connection is failed immediately, since there is no message to continue.
Case Description
Send text Message fragmented into 2 fragments, with both frame opcodes set to text, sent in one chop.
Case Expectation
The connection is failed immediately, since all data frames after the initial data frame must have opcode 0.
Case Description
A fragmented text message is sent in multiple frames. After
sending the first 2 frames of the text message, a Ping is sent. Then we wait 1s,
then we send 2 more text fragments, another Ping and then the final text fragment.
Everything is legal.
Case Expectation
The peer immediately answers the first Ping before
it has received the last text message fragment. The peer pong's back the Ping's
payload exactly, and echo's the payload of the fragmented message back to us.
Case Description
Same as Case 5.19, but send all frames with SYNC = True.
Note, this does not change the octets sent in any way, only how the stream
is chopped up on the wire.
Case Expectation
Same as Case 5.19. Implementations must be agnostic to how
octet stream is chopped up on wire (must be TCP clean).
Case Description
Send text message of length 0.
Case Expectation
A message is echo'ed back to us (with empty payload).
Case Description
Send fragmented text message, 3 fragments each of length 0.
Case Expectation
A message is echo'ed back to us (with empty payload).
Case Description
Send fragmented text message, 3 fragments, first and last of length 0, middle non-empty.
Case Expectation
A message is echo'ed back to us (with payload = payload of middle fragment).
Case Description
Send a valid UTF-8 text message in one fragment.
MESSAGE:
Hello-µ@ßöäüàá-UTF-8!!
48656c6c6f2dc2b540c39fc3b6c3a4c3bcc3a0c3a12d5554462d382121
Case Expectation
The message is echo'ed back to us.
Case Description
Send a valid UTF-8 text message in two fragments, fragmented on UTF-8 code point boundary.
MESSAGE FRAGMENT 1:
Hello-µ@ßöä
48656c6c6f2dc2b540c39fc3b6c3a4
MESSAGE FRAGMENT 2:
üàá-UTF-8!!
c3bcc3a0c3a12d5554462d382121
Case Expectation
The message is echo'ed back to us.
Case Description
Send a valid UTF-8 text message in fragments of 1 octet, resulting in frames ending on positions which are not code point ends.
MESSAGE:
Hello-µ@ßöäüàá-UTF-8!!
48656c6c6f2dc2b540c39fc3b6c3a4c3bcc3a0c3a12d5554462d382121
Case Expectation
The message is echo'ed back to us.
Case Description
Send a valid UTF-8 text message in fragments of 1 octet, resulting in frames ending on positions which are not code point ends.
MESSAGE:
κόσμε
cebae1bdb9cf83cebcceb5
Case Expectation
The message is echo'ed back to us.
Case Description
Send invalid UTF-8 text message unfragmented.
MESSAGE:
cebae1bdb9cf83cebcceb5eda080656469746564
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send invalid UTF-8 text message in fragments of 1 octet, resulting in frames ending on positions which are not code point ends.
MESSAGE:
cebae1bdb9cf83cebcceb5eda080656469746564
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send invalid UTF-8 text message in 3 fragments (frames).
First frame payload is valid, then wait, then 2nd frame which contains the payload making the sequence invalid, then wait, then 3rd frame with rest.
Note that PART1 and PART3 are valid UTF-8 in themselves, PART2 is a 0x110000 encoded as in the UTF-8 integer encoding scheme, but the codepoint is invalid (out of range).
MESSAGE PARTS:
PART1 = cebae1bdb9cf83cebcceb5
PART2 = f4908080
PART3 = 656469746564
Case Expectation
The first frame is accepted, we expect to timeout on the first wait. The 2nd frame should be rejected immediately (fail fast on UTF-8). If we timeout, we expect the connection is failed at least then, since the complete message payload is not valid UTF-8.
Case Description
Same as Case 6.4.1, but in 2nd frame, we send only up to and including the octet making the complete payload invalid.
MESSAGE PARTS:
PART1 = cebae1bdb9cf83cebcceb5f4
PART2 = 90
PART3 = 8080656469746564
Case Expectation
The first frame is accepted, we expect to timeout on the first wait. The 2nd frame should be rejected immediately (fail fast on UTF-8). If we timeout, we expect the connection is failed at least then, since the complete message payload is not valid UTF-8.
Case Description
Same as Case 6.4.1, but we send message not in 3 frames, but in 3 chops of the same message frame.
MESSAGE PARTS:
PART1 = cebae1bdb9cf83cebcceb5
PART2 = f4908080
PART3 = 656469746564
Case Expectation
The first chop is accepted, we expect to timeout on the first wait. The 2nd chop should be rejected immediately (fail fast on UTF-8). If we timeout, we expect the connection is failed at least then, since the complete message payload is not valid UTF-8.
Case Description
Same as Case 6.4.2, but we send message not in 3 frames, but in 3 chops of the same message frame.
MESSAGE PARTS:
PART1 = cebae1bdb9cf83cebcceb5f4
PART2 = 90
PART3 =
Case Expectation
The first chop is accepted, we expect to timeout on the first wait. The 2nd chop should be rejected immediately (fail fast on UTF-8). If we timeout, we expect the connection is failed at least then, since the complete message payload is not valid UTF-8.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0x68656c6c6f24776f726c64
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0x68656c6c6fc2a2776f726c64
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0x68656c6c6fe282ac776f726c64
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0x68656c6c6ff0a4ada2776f726c64
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xcebae1bdb9cf83cebcceb5
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xce
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xceba
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xcebae1
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xcebae1bd
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xcebae1bdb9
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xcebae1bdb9cf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xcebae1bdb9cf83
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xcebae1bdb9cf83ce
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xcebae1bdb9cf83cebc
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xcebae1bdb9cf83cebcce
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xcebae1bdb9cf83cebcceb5
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0x00
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xc280
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xe0a080
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf0908080
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xf888808080
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xfc8480808080
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0x7f
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xdfbf
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xefbfbf
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf48fbfbf
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xf7bfbfbf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xfbbfbfbfbf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xfdbfbfbfbfbf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xed9fbf
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xee8080
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xefbfbd
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf48fbfbf
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xf4908080
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0x80
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xbf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0x80bf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0x80bf80
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0x80bf80bf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0x80bf80bf80
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0x80bf80bf80bf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0x808182838485868788898a8b8c8d8e8f909192939495969798999a9b9c9d9e9fa0a1a2a3a4a5a6a7a8a9aaabacadaeafb0b1b2b3b4b5b6b7b8b9babbbcbdbe
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xc020c120c220c320c420c520c620c720c820c920ca20cb20cc20cd20ce20cf20d020d120d220d320d420d520d620d720d820d920da20db20dc20dd20de20
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xe020e120e220e320e420e520e620e720e820e920ea20eb20ec20ed20ee20
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xf020f120f220f320f420f520f620
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xf820f920fa20
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xfc20
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xc0
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xe080
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xf08080
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xf8808080
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xfc80808080
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xdf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xefbf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xf7bfbf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xfbbfbfbf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xfdbfbfbfbf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xc0e080f08080f8808080fc80808080dfefbff7bfbffbbfbfbffdbfbfbfbf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xfe
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xff
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xfefeffff
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xc0af
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xe080af
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xf08080af
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xf8808080af
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xfc80808080af
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xc1bf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xe09fbf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xf08fbfbf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xf887bfbfbf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xfc83bfbfbfbf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xc080
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xe08080
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xf0808080
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xf880808080
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xfc8080808080
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xeda080
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xedadbf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xedae80
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xedafbf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xedb080
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xedbe80
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xedbfbf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xeda080edb080
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xeda080edbfbf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xedadbfedb080
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xedadbfedbfbf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xedae80edb080
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xedae80edbfbf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xedafbfedb080
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is not valid UTF-8 in one fragment.
Payload: 0xedafbfedbfbf
Case Expectation
The connection is failed immediately, since the payload is not valid UTF-8.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xefbfbe
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xefbfbf
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf09fbfbe
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf09fbfbf
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf0afbfbe
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf0afbfbf
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf0bfbfbe
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf0bfbfbf
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf18fbfbe
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf18fbfbf
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf19fbfbe
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf19fbfbf
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf1afbfbe
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf1afbfbf
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf1bfbfbe
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf1bfbfbf
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf28fbfbe
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf28fbfbf
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf29fbfbe
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf29fbfbf
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf2afbfbe
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf2afbfbf
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf2bfbfbe
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf2bfbfbf
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf38fbfbe
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf38fbfbf
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf39fbfbe
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf39fbfbf
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf3afbfbe
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf3afbfbf
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf3bfbfbe
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf3bfbfbf
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf48fbfbe
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xf48fbfbf
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xefbfb9
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xefbfba
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xefbfbb
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xefbfbc
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xefbfbd
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xefbfbe
Case Expectation
The message is echo'ed back to us.
Case Description
Send a text message with payload which is valid UTF-8 in one fragment.
Payload: 0xefbfbf
Case Expectation
The message is echo'ed back to us.
Case Description
Send a message followed by a close frame
Case Expectation
Echoed message followed by clean close with normal code.
Case Description
Send two close frames
Case Expectation
Clean close with normal code. Second close frame ignored.
Case Description
Send a ping after close message
Case Expectation
Clean close with normal code, no pong.
Case Description
Send text message after sending a close frame.
Case Expectation
Clean close with normal code. Text message ignored.
Case Description
Send message fragment1 followed by close then fragment
Case Expectation
Clean close with normal code.
Case Description
Send 256K message followed by close then a ping
Case Expectation
Case outcome depends on implementation defined close behavior. Message and close frame are sent back to back. If the close frame is processed before the text message write is complete (as can happen in asynchronous processing models) the close frame is processed first and the text message may not be received or may only be partially received.
Case Description
Send a close frame with payload length 0 (no close code, no close reason)
Case Expectation
Clean close with normal code.
Case Description
Send a close frame with payload length 1
Case Expectation
Clean close with protocol error or drop TCP.
Case Description
Send a close frame with payload length 2 (regular close with a code)
Case Expectation
Clean close with normal code.
Case Description
Send a close frame with close code and close reason
Case Expectation
Clean close with normal code.
Case Description
Send a close frame with close code and close reason of maximum length (123)
Case Expectation
Clean close with normal code.
Case Description
Send a close frame with close code and close reason which is too long (124) - total frame payload 126 octets
Case Expectation
Clean close with protocol error code or dropped TCP connection.
Case Description
Send a close frame with invalid UTF8 payload
Case Expectation
Clean close with protocol error or invalid utf8 code or dropped TCP.
Case Description
Send close with valid close code 1000
Case Expectation
Clean close with normal or echoed code
Case Description
Send close with valid close code 1001
Case Expectation
Clean close with normal or echoed code
Case Description
Send close with valid close code 1002
Case Expectation
Clean close with normal or echoed code
Case Description
Send close with valid close code 1003
Case Expectation
Clean close with normal or echoed code
Case Description
Send close with valid close code 1007
Case Expectation
Clean close with normal or echoed code
Case Description
Send close with valid close code 1008
Case Expectation
Clean close with normal or echoed code
Case Description
Send close with valid close code 1009
Case Expectation
Clean close with normal or echoed code
Case Description
Send close with valid close code 1010
Case Expectation
Clean close with normal or echoed code
Case Description
Send close with valid close code 1011
Case Expectation
Clean close with normal or echoed code
Case Description
Send close with valid close code 3000
Case Expectation
Clean close with normal or echoed code
Case Description
Send close with valid close code 3999
Case Expectation
Clean close with normal or echoed code
Case Description
Send close with valid close code 4000
Case Expectation
Clean close with normal or echoed code
Case Description
Send close with valid close code 4999
Case Expectation
Clean close with normal or echoed code
Case Description
Send close with invalid close code 0
Case Expectation
Clean close with protocol error code or drop TCP
Case Description
Send close with invalid close code 999
Case Expectation
Clean close with protocol error code or drop TCP
Case Description
Send close with invalid close code 1004
Case Expectation
Clean close with protocol error code or drop TCP
Case Description
Send close with invalid close code 1005
Case Expectation
Clean close with protocol error code or drop TCP
Case Description
Send close with invalid close code 1006
Case Expectation
Clean close with protocol error code or drop TCP
Case Description
Send close with invalid close code 1016
Case Expectation
Clean close with protocol error code or drop TCP
Case Description
Send close with invalid close code 1100
Case Expectation
Clean close with protocol error code or drop TCP
Case Description
Send close with invalid close code 2000
Case Expectation
Clean close with protocol error code or drop TCP
Case Description
Send close with invalid close code 2999
Case Expectation
Clean close with protocol error code or drop TCP
Case Description
Send close with close code 5000
Case Expectation
Actual events are undefined by the spec.
Case Description
Send close with close code 65536
Case Expectation
Actual events are undefined by the spec.
Case Description
Send text message message with payload of length 64 * 2**10 (64k).
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send text message message with payload of length 256 * 2**10 (256k).
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send text message message with payload of length 1 * 2**20 (1M).
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send text message message with payload of length 4 * 2**20 (4M).
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send text message message with payload of length 8 * 2**20 (8M).
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send text message message with payload of length 16 * 2**20 (16M).
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send binary message message with payload of length 64 * 2**10 (64k).
Case Expectation
Receive echo'ed binary message (with payload as sent).
Case Description
Send binary message message with payload of length 256 * 2**10 (256k).
Case Expectation
Receive echo'ed binary message (with payload as sent).
Case Description
Send binary message message with payload of length 1 * 2**20 (1M).
Case Expectation
Receive echo'ed binary message (with payload as sent).
Case Description
Send binary message message with payload of length 4 * 2**20 (4M).
Case Expectation
Receive echo'ed binary message (with payload as sent).
Case Description
Send binary message message with payload of length 8 * 2**20 (16M).
Case Expectation
Receive echo'ed binary message (with payload as sent).
Case Description
Send binary message message with payload of length 16 * 2**20 (16M).
Case Expectation
Receive echo'ed binary message (with payload as sent).
Case Description
Send fragmented text message message with message payload of length 4 * 2**20 (4M). Sent out in fragments of 64.
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send fragmented text message message with message payload of length 4 * 2**20 (4M). Sent out in fragments of 256.
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send fragmented text message message with message payload of length 4 * 2**20 (4M). Sent out in fragments of 1k.
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send fragmented text message message with message payload of length 4 * 2**20 (4M). Sent out in fragments of 4k.
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send fragmented text message message with message payload of length 4 * 2**20 (4M). Sent out in fragments of 16k.
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send fragmented text message message with message payload of length 4 * 2**20 (4M). Sent out in fragments of 64k.
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send fragmented text message message with message payload of length 4 * 2**20 (4M). Sent out in fragments of 256k.
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send fragmented text message message with message payload of length 4 * 2**20 (4M). Sent out in fragments of 1M.
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send fragmented text message message with message payload of length 4 * 2**20 (8M). Sent out in fragments of 4M.
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send fragmented binary message message with message payload of length 4 * 2**20 (4M). Sent out in fragments of 64.
Case Expectation
Receive echo'ed binary message (with payload as sent).
Case Description
Send fragmented binary message message with message payload of length 4 * 2**20 (4M). Sent out in fragments of 256.
Case Expectation
Receive echo'ed binary message (with payload as sent).
Case Description
Send fragmented binary message message with message payload of length 4 * 2**20 (4M). Sent out in fragments of 1k.
Case Expectation
Receive echo'ed binary message (with payload as sent).
Case Description
Send fragmented binary message message with message payload of length 4 * 2**20 (4M). Sent out in fragments of 4k.
Case Expectation
Receive echo'ed binary message (with payload as sent).
Case Description
Send fragmented binary message message with message payload of length 4 * 2**20 (4M). Sent out in fragments of 16k.
Case Expectation
Receive echo'ed binary message (with payload as sent).
Case Description
Send fragmented binary message message with message payload of length 4 * 2**20 (4M). Sent out in fragments of 64k.
Case Expectation
Receive echo'ed binary message (with payload as sent).
Case Description
Send fragmented binary message message with message payload of length 4 * 2**20 (4M). Sent out in fragments of 256k.
Case Expectation
Receive echo'ed binary message (with payload as sent).
Case Description
Send fragmented binary message message with message payload of length 4 * 2**20 (4M). Sent out in fragments of 1M.
Case Expectation
Receive echo'ed binary message (with payload as sent).
Case Description
Send fragmented binary message message with message payload of length 4 * 2**20 (4M). Sent out in fragments of 4M.
Case Expectation
Receive echo'ed binary message (with payload as sent).
Case Description
Send text message message with payload of length 1 * 2**20 (1M). Sent out data in chops of 64 octets.
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send text message message with payload of length 1 * 2**20 (1M). Sent out data in chops of 128 octets.
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send text message message with payload of length 1 * 2**20 (1M). Sent out data in chops of 256 octets.
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send text message message with payload of length 1 * 2**20 (1M). Sent out data in chops of 512 octets.
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send text message message with payload of length 1 * 2**20 (1M). Sent out data in chops of 1024 octets.
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send text message message with payload of length 1 * 2**20 (1M). Sent out data in chops of 2048 octets.
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send binary message message with payload of length 1 * 2**20 (1M). Sent out data in chops of 64 octets.
Case Expectation
Receive echo'ed binary message (with payload as sent).
Case Description
Send binary message message with payload of length 1 * 2**20 (1M). Sent out data in chops of 128 octets.
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send binary message message with payload of length 1 * 2**20 (1M). Sent out data in chops of 256 octets.
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send binary message message with payload of length 1 * 2**20 (1M). Sent out data in chops of 512 octets.
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send binary message message with payload of length 1 * 2**20 (1M). Sent out data in chops of 1024 octets.
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send binary message message with payload of length 1 * 2**20 (1M). Sent out data in chops of 2048 octets.
Case Expectation
Receive echo'ed text message (with payload as sent).
Case Description
Send 1000 text messages of payload size 0 to measure implementation/network RTT (round trip time) / latency.
Case Expectation
Receive echo'ed text messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 text messages of payload size 16 to measure implementation/network RTT (round trip time) / latency.
Case Expectation
Receive echo'ed text messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 text messages of payload size 64 to measure implementation/network RTT (round trip time) / latency.
Case Expectation
Receive echo'ed text messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 text messages of payload size 256 to measure implementation/network RTT (round trip time) / latency.
Case Expectation
Receive echo'ed text messages (with payload as sent). Timeout case after 120 secs.
Case Description
Send 1000 text messages of payload size 1024 to measure implementation/network RTT (round trip time) / latency.
Case Expectation
Receive echo'ed text messages (with payload as sent). Timeout case after 240 secs.
Case Description
Send 1000 text messages of payload size 4096 to measure implementation/network RTT (round trip time) / latency.
Case Expectation
Receive echo'ed text messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 binary messages of payload size 0 to measure implementation/network RTT (round trip time) / latency.
Case Expectation
Receive echo'ed binary messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 binary messages of payload size 16 to measure implementation/network RTT (round trip time) / latency.
Case Expectation
Receive echo'ed binary messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 binary messages of payload size 64 to measure implementation/network RTT (round trip time) / latency.
Case Expectation
Receive echo'ed binary messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 binary messages of payload size 256 to measure implementation/network RTT (round trip time) / latency.
Case Expectation
Receive echo'ed binary messages (with payload as sent). Timeout case after 120 secs.
Case Description
Send 1000 binary messages of payload size 1024 to measure implementation/network RTT (round trip time) / latency.
Case Expectation
Receive echo'ed binary messages (with payload as sent). Timeout case after 240 secs.
Case Description
Send 1000 binary messages of payload size 4096 to measure implementation/network RTT (round trip time) / latency.
Case Expectation
Receive echo'ed binary messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send text message with payload of length 65536 auto-fragmented with autoFragmentSize = 1300.
Case Expectation
Receive echo'ed text message (with payload as sent and transmitted frame counts as expected). Clean close with normal code.
Case Description
Send 1000 compressed messages each of payload size 16, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 compressed messages each of payload size 64, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 compressed messages each of payload size 256, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 120 secs.
Case Description
Send 1000 compressed messages each of payload size 1024, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 240 secs.
Case Description
Send 1000 compressed messages each of payload size 4096, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 8192, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16384, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 32768, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 65536, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 8192, auto-fragment to 256 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16384, auto-fragment to 256 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 32768, auto-fragment to 256 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 65536, auto-fragment to 256 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 256 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 1024 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 4096 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 32768 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 compressed messages each of payload size 64, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 compressed messages each of payload size 256, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 120 secs.
Case Description
Send 1000 compressed messages each of payload size 1024, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 240 secs.
Case Description
Send 1000 compressed messages each of payload size 4096, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 8192, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16384, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 32768, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 65536, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 8192, auto-fragment to 256 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16384, auto-fragment to 256 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 32768, auto-fragment to 256 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 65536, auto-fragment to 256 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 256 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 1024 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 4096 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 32768 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 compressed messages each of payload size 64, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 compressed messages each of payload size 256, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 120 secs.
Case Description
Send 1000 compressed messages each of payload size 1024, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 240 secs.
Case Description
Send 1000 compressed messages each of payload size 4096, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 8192, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16384, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 32768, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 65536, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 8192, auto-fragment to 256 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16384, auto-fragment to 256 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 32768, auto-fragment to 256 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 65536, auto-fragment to 256 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 256 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 1024 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 4096 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 32768 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 compressed messages each of payload size 64, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 compressed messages each of payload size 256, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 120 secs.
Case Description
Send 1000 compressed messages each of payload size 1024, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 240 secs.
Case Description
Send 1000 compressed messages each of payload size 4096, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 8192, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16384, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 32768, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 65536, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 8192, auto-fragment to 256 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16384, auto-fragment to 256 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 32768, auto-fragment to 256 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 65536, auto-fragment to 256 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 256 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 1024 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 4096 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 32768 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 compressed messages each of payload size 64, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 compressed messages each of payload size 256, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 120 secs.
Case Description
Send 1000 compressed messages each of payload size 1024, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 240 secs.
Case Description
Send 1000 compressed messages each of payload size 4096, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 8192, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16384, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 32768, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 65536, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 0 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 8192, auto-fragment to 256 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16384, auto-fragment to 256 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 32768, auto-fragment to 256 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 65536, auto-fragment to 256 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 256 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 1024 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 4096 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 32768 octets. Use default permessage-deflate offer.
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 compressed messages each of payload size 64, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 compressed messages each of payload size 256, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 120 secs.
Case Description
Send 1000 compressed messages each of payload size 1024, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 240 secs.
Case Description
Send 1000 compressed messages each of payload size 4096, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 8192, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16384, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 32768, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 65536, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 8192, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16384, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 32768, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 65536, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 1024 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 4096 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 32768 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 compressed messages each of payload size 64, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 compressed messages each of payload size 256, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 120 secs.
Case Description
Send 1000 compressed messages each of payload size 1024, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 240 secs.
Case Description
Send 1000 compressed messages each of payload size 4096, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 8192, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16384, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 32768, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 65536, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 8192, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16384, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 32768, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 65536, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 1024 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 4096 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 32768 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 compressed messages each of payload size 64, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 compressed messages each of payload size 256, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 120 secs.
Case Description
Send 1000 compressed messages each of payload size 1024, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 240 secs.
Case Description
Send 1000 compressed messages each of payload size 4096, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 8192, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16384, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 32768, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 65536, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 8192, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16384, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 32768, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 65536, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 1024 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 4096 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 32768 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 compressed messages each of payload size 64, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 compressed messages each of payload size 256, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 120 secs.
Case Description
Send 1000 compressed messages each of payload size 1024, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 240 secs.
Case Description
Send 1000 compressed messages each of payload size 4096, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 8192, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16384, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 32768, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 65536, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 8192, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16384, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 32768, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 65536, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 1024 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 4096 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 32768 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(False, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 compressed messages each of payload size 64, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 compressed messages each of payload size 256, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 120 secs.
Case Description
Send 1000 compressed messages each of payload size 1024, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 240 secs.
Case Description
Send 1000 compressed messages each of payload size 4096, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 8192, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16384, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 32768, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 65536, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 8192, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16384, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 32768, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 65536, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 1024 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 4096 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 32768 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 compressed messages each of payload size 64, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 compressed messages each of payload size 256, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 120 secs.
Case Description
Send 1000 compressed messages each of payload size 1024, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 240 secs.
Case Description
Send 1000 compressed messages each of payload size 4096, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 8192, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16384, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 32768, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 65536, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 8192, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16384, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 32768, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 65536, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 1024 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 4096 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 32768 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 15)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8), (True, 0), (False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 compressed messages each of payload size 64, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8), (True, 0), (False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 60 secs.
Case Description
Send 1000 compressed messages each of payload size 256, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8), (True, 0), (False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 120 secs.
Case Description
Send 1000 compressed messages each of payload size 1024, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8), (True, 0), (False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 240 secs.
Case Description
Send 1000 compressed messages each of payload size 4096, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8), (True, 0), (False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 8192, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8), (True, 0), (False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16384, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8), (True, 0), (False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 32768, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8), (True, 0), (False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 65536, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8), (True, 0), (False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 0 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8), (True, 0), (False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 8192, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8), (True, 0), (False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 16384, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8), (True, 0), (False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 32768, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8), (True, 0), (False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 65536, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8), (True, 0), (False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 256 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8), (True, 0), (False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 1024 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8), (True, 0), (False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 4096 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8), (True, 0), (False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.
Case Description
Send 1000 compressed messages each of payload size 131072, auto-fragment to 32768 octets. Use permessage-deflate client offers (requestNoContextTakeover, requestMaxWindowBits): [(True, 8), (True, 0), (False, 0)]
Case Expectation
Receive echo'ed messages (with payload as sent). Timeout case after 480 secs.