rewrite the QUIC proxy used in the integrationtests

The new QUIC proxy allows to listen on “:0”, which allows us to get rid
of all “address already in use” errors. The constructor now takes an
Opts struct, which makes configuring it easier.
This commit is contained in:
Marten Seemann
2017-04-22 23:34:51 +07:00
parent 61f5f1e668
commit 08cf78d2b0
10 changed files with 635 additions and 526 deletions

View File

@@ -0,0 +1,13 @@
package quicproxy
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"testing"
)
func TestQuicGo(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "QUIC Proxy")
}