add integration tests with the quic_server

This commit is contained in:
Marten Seemann
2017-04-17 12:09:09 +07:00
committed by Lucas Clemente
parent 8b351a9b7e
commit fb127ecfd5
2 changed files with 216 additions and 1 deletions

View File

@@ -42,7 +42,8 @@ var (
dataMan dataManager
port string
uploadDir string
clientPath string
clientPath string // path of the quic_client
serverPath string // path of the quic_server
docker *gexec.Session
)
@@ -78,6 +79,7 @@ var _ = BeforeEach(func() {
Fail("Failed to get current path")
}
clientPath = filepath.Join(thisfile, fmt.Sprintf("../../../quic-clients/client-%s-debug", runtime.GOOS))
serverPath = filepath.Join(thisfile, fmt.Sprintf("../../../quic-clients/server-%s-debug", runtime.GOOS))
})
var _ = AfterEach(func() {