The test suite comprises a minimal Go implementation of QUIC which is currently draft-29 and TLS-1.3 compatible, as well as several test scenarii built upon this implementation. The test suite outputs its result as JSON files, which contains the result, the decrypted packets exchanged, as well as a pcap file and exporter secrets.
You should have Go 1.9, tcpdump, libpcap libraries and headers as well as openssl headers installed before starting.
go get -u github.com/QUIC-Tracker/quic-tracker # This will fail because of the missing dependencies that should be build using the 4 lines below cd $GOPATH/src/github.com/mpiraux/pigotls make cd $GOPATH/src/github.com/mpiraux/ls-qpack-go make
The test suite is run using the scripts in bin/test_suite/
. For help
about their usage see:
go run bin/test_suite/scenario_runner.go -h go run bin/test_suite/test_suite.go -h
Docker builds exist on Docker Hub.
docker run --network="host" mpiraux/quictracker /http_get -h docker run --network="host" mpiraux/quictracker /scenario_runner -h docker run --network="host" mpiraux/quictracker /test_suite -h # Running the web app and mounting traces files from the current directory docker run -v "$PWD:/traces" -p 5000:5000 mpiraux/quictracker flask run -h 0.0.0.0