mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
replace certificate path with tls.Config instance throughout the server
The example server now reads the certificate and key data itself. Tests use the new testdata package, where the sample key & cert are stored. Fixes #24
This commit is contained in:
parent
7adafb4c5f
commit
c068cbcb8f
9 changed files with 105 additions and 44 deletions
|
@ -3,11 +3,12 @@ package quic
|
|||
import (
|
||||
"bytes"
|
||||
"net"
|
||||
"os"
|
||||
"time"
|
||||
|
||||
"github.com/lucas-clemente/quic-go/handshake"
|
||||
"github.com/lucas-clemente/quic-go/protocol"
|
||||
"github.com/lucas-clemente/quic-go/testdata"
|
||||
|
||||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
)
|
||||
|
@ -71,8 +72,7 @@ var _ = Describe("Server", func() {
|
|||
})
|
||||
|
||||
It("setups and responds with version negotiation", func() {
|
||||
path := os.Getenv("GOPATH") + "/src/github.com/lucas-clemente/quic-go/example/"
|
||||
server, err := NewServer(path+"cert.der", path+"key.der", nil)
|
||||
server, err := NewServer(testdata.GetTLSConfig(), nil)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
go func() {
|
||||
time.Sleep(10 * time.Millisecond)
|
||||
|
@ -99,8 +99,7 @@ var _ = Describe("Server", func() {
|
|||
})
|
||||
|
||||
It("setups and responds with error on invalid frame", func() {
|
||||
path := os.Getenv("GOPATH") + "/src/github.com/lucas-clemente/quic-go/example/"
|
||||
server, err := NewServer(path+"cert.der", path+"key.der", nil)
|
||||
server, err := NewServer(testdata.GetTLSConfig(), nil)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
go func() {
|
||||
time.Sleep(10 * time.Millisecond)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue