add a command line option to export qlogs from the integration tests

This commit is contained in:
Marten Seemann 2020-03-26 17:08:18 +07:00
parent 3ea4a66d63
commit a5b967a309
17 changed files with 137 additions and 105 deletions

View file

@ -60,13 +60,13 @@ var _ = Describe("Connection ID lengths tests", func() {
}
It("downloads a file using a 0-byte connection ID for the client", func() {
serverConf := &quic.Config{
serverConf := getQuicConfigForServer(&quic.Config{
ConnectionIDLength: randomConnIDLen(),
Versions: []protocol.VersionNumber{protocol.VersionTLS},
}
clientConf := &quic.Config{
})
clientConf := getQuicConfigForClient(&quic.Config{
Versions: []protocol.VersionNumber{protocol.VersionTLS},
}
})
ln := runServer(serverConf)
defer ln.Close()
@ -74,14 +74,14 @@ var _ = Describe("Connection ID lengths tests", func() {
})
It("downloads a file when both client and server use a random connection ID length", func() {
serverConf := &quic.Config{
serverConf := getQuicConfigForServer(&quic.Config{
ConnectionIDLength: randomConnIDLen(),
Versions: []protocol.VersionNumber{protocol.VersionTLS},
}
clientConf := &quic.Config{
})
clientConf := getQuicConfigForClient(&quic.Config{
ConnectionIDLength: randomConnIDLen(),
Versions: []protocol.VersionNumber{protocol.VersionTLS},
}
})
ln := runServer(serverConf)
defer ln.Close()