Testing Qt WebSockets

Autobahn|Testsuite, a standard test suite for WebSocket Protocol (RFC 6455), can be used for testing the conformance of Qt WebSockets. Refer to Autobahn|Testsuite installation documentation to set up the test suite.

Testing Qt WebSockets with Autobahn|Testsuite

wstest - fuzzingserver mode

cd your_build_dir/tests/manual/compliance
qmake your_src_dir/tests/manual/compliance/compliance.pro
make

cd ~
wstest -m fuzzingserver

Then, in another terminal:

cd your_build_dir/tests/manual/compliance
./tst_compliance

Test results will be generated under ~/reports/clients directory. Point your browser to ~/reports/clients/index.html.

wstest - fuzzingclient mode

cd your_build_dir/examples/websockets/echoserver
qmake your_src_dir/examples/websockets/echoserver/echoserver.pro
make

./echoserver -p 9001

Then, in another terminal:

cd ~
wstest -m fuzzingclient

Test results will be generated under ~/reports/servers directory. Point your browser to ~/reports/servers/index.html.

© 2021 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.