export a key log file from the client in the interop runner

This commit is contained in:
Marten Seemann 2020-01-05 11:20:04 +07:00
parent 07d76c547f
commit 664474b058

View file

@ -19,6 +19,8 @@ import (
var errUnsupported = errors.New("unsupported test case") var errUnsupported = errors.New("unsupported test case")
var tlsConf *tls.Config
func main() { func main() {
logFile, err := os.Create("/logs/log.txt") logFile, err := os.Create("/logs/log.txt")
if err != nil { if err != nil {
@ -28,6 +30,17 @@ func main() {
defer logFile.Close() defer logFile.Close()
log.SetOutput(logFile) log.SetOutput(logFile)
keyLog, err := os.Create("/logs/keylogfile.txt")
if err != nil {
fmt.Printf("Could not create key log file: %s\n", err.Error())
os.Exit(1)
}
defer keyLog.Close()
tlsConf = &tls.Config{
InsecureSkipVerify: true,
KeyLogWriter: keyLog,
}
testcase := os.Getenv("TESTCASE") testcase := os.Getenv("TESTCASE")
if err := runTestcase(testcase); err != nil { if err := runTestcase(testcase); err != nil {
if err == errUnsupported { if err == errUnsupported {
@ -45,9 +58,7 @@ func runTestcase(testcase string) error {
switch testcase { switch testcase {
case "http3": case "http3":
r := &http3.RoundTripper{ r := &http3.RoundTripper{TLSClientConfig: tlsConf}
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
defer r.Close() defer r.Close()
return downloadFiles(r, urls) return downloadFiles(r, urls)
case "handshake", "transfer", "retry": case "handshake", "transfer", "retry":
@ -59,9 +70,7 @@ func runTestcase(testcase string) error {
return errUnsupported return errUnsupported
} }
r := &http09.RoundTripper{ r := &http09.RoundTripper{TLSClientConfig: tlsConf}
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
defer r.Close() defer r.Close()
return downloadFiles(r, urls) return downloadFiles(r, urls)
} }
@ -85,27 +94,18 @@ func runResumptionTest(urls []string) error {
if len(urls) < 2 { if len(urls) < 2 {
return errors.New("expected at least 2 URLs") return errors.New("expected at least 2 URLs")
} }
csc := tls.NewLRUClientSessionCache(1)
tlsConf.ClientSessionCache = tls.NewLRUClientSessionCache(1)
// do the first transfer // do the first transfer
r := &http09.RoundTripper{ r := &http09.RoundTripper{TLSClientConfig: tlsConf}
TLSClientConfig: &tls.Config{
InsecureSkipVerify: true,
ClientSessionCache: csc,
},
}
if err := downloadFiles(r, urls[:1]); err != nil { if err := downloadFiles(r, urls[:1]); err != nil {
return err return err
} }
r.Close() r.Close()
// reestablish the connection, using the session ticket that the server (hopefully provided) // reestablish the connection, using the session ticket that the server (hopefully provided)
r = &http09.RoundTripper{ r = &http09.RoundTripper{TLSClientConfig: tlsConf}
TLSClientConfig: &tls.Config{
InsecureSkipVerify: true,
ClientSessionCache: csc,
},
}
defer r.Close() defer r.Close()
return downloadFiles(r, urls[1:]) return downloadFiles(r, urls[1:])
} }