...
1# Test Server
2
3This package contains a server for the [Autobahn WebSockets Test Suite](https://github.com/crossbario/autobahn-testsuite).
4
5To test the server, run
6
7 go run server.go
8
9and start the client test driver
10
11 mkdir -p reports
12 docker run -it --rm \
13 -v ${PWD}/config:/config \
14 -v ${PWD}/reports:/reports \
15 crossbario/autobahn-testsuite \
16 wstest -m fuzzingclient -s /config/fuzzingclient.json
17
18When the client completes, it writes a report to reports/index.html.
View as plain text