Skip to content

Latest commit

 

History

History
59 lines (38 loc) · 1.62 KB

README.rst

File metadata and controls

59 lines (38 loc) · 1.62 KB

A test suite for QUIC

Documentation status

The test suite comprises a minimal Go implementation of QUIC which is currently draft-27 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.

Installation

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

Then to this

cd $GOPATH/src/github.com/QUIC-Tracker
rm -rf quic-tracker
git clone https://github.com/ike-kunze/quic-tracker.git

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

Docker builds exist on Docker Hub.

docker run --network="host" quictracker/quictracker /http_get -h
docker run --network="host" quictracker/quictracker /scenario_runner -h
docker run --network="host" quictracker/quictracker /test_suite -h