mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
read the ECN bits
This commit is contained in:
parent
876ab1d531
commit
ea3d32394d
19 changed files with 420 additions and 75 deletions
26
conn_test.go
Normal file
26
conn_test.go
Normal file
|
@ -0,0 +1,26 @@
|
|||
package quic
|
||||
|
||||
import (
|
||||
"net"
|
||||
"time"
|
||||
|
||||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
)
|
||||
|
||||
var _ = Describe("Basic Conn Test", func() {
|
||||
It("reads a packet", func() {
|
||||
c := newMockPacketConn()
|
||||
addr := &net.UDPAddr{IP: net.IPv4(1, 2, 3, 4), Port: 1234}
|
||||
c.dataReadFrom = addr
|
||||
c.dataToRead <- []byte("foobar")
|
||||
|
||||
conn, err := wrapConn(c)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
p, err := conn.ReadPacket()
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
Expect(p.data).To(Equal([]byte("foobar")))
|
||||
Expect(p.rcvTime).To(BeTemporally("~", time.Now(), scaleDuration(100*time.Millisecond)))
|
||||
Expect(p.remoteAddr).To(Equal(addr))
|
||||
})
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue