1
0
mirror of https://github.com/actix/examples synced 2025-01-22 22:05:57 +01:00
examples/websocket-autobahn
yjh 89d2e4e3f7
fix typo and update some deps (#390)
* chore: fix typo for `run-in-thread`

* chore: update some deps for examples
2020-12-14 11:30:06 +00:00
..
2020-09-12 16:49:45 +01:00

websocket

Websocket server for autobahn suite testing.

Usage

server

cd examples/websocket-autobahn
cargo run --bin websocket-autobahn-server

Running Autobahn Test Suite

Running the autobahn test suite is easiest using the docker image as explained on the autobahn-testsuite repo.

First, start a server (see above). Then, run the test suite in fuzzingclient mode:

docker run -it --rm \
    -v "${PWD}/config:/config" \
    -v "${PWD}/reports:/reports" \
    --network host \
    --name autobahn \
    crossbario/autobahn-testsuite \
    wstest \
    --spec /config/fuzzingclient.json \
    --mode fuzzingclient

Results are written to the reports/servers directory for viewing.