mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
32 lines
772 B
Go
32 lines
772 B
Go
package testdata
|
|
|
|
import (
|
|
"io"
|
|
|
|
tls "github.com/refraction-networking/utls"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("certificates", func() {
|
|
It("returns certificates", func() {
|
|
ln, err := tls.Listen("tcp", "localhost:4433", GetTLSConfig())
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
go func() {
|
|
defer GinkgoRecover()
|
|
conn, err := ln.Accept()
|
|
Expect(err).ToNot(HaveOccurred())
|
|
defer conn.Close()
|
|
_, err = conn.Write([]byte("foobar"))
|
|
Expect(err).ToNot(HaveOccurred())
|
|
}()
|
|
|
|
conn, err := tls.Dial("tcp", "localhost:4433", &tls.Config{RootCAs: GetRootCA()})
|
|
Expect(err).ToNot(HaveOccurred())
|
|
data, err := io.ReadAll(conn)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(string(data)).To(Equal("foobar"))
|
|
})
|
|
})
|