mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
rename files dealing with low level conns to sys_conn
This commit is contained in:
parent
f68b38635a
commit
3126062aa7
14 changed files with 9 additions and 2 deletions
33
conn_test.go
33
conn_test.go
|
@ -1,33 +0,0 @@
|
|||
package quic
|
||||
|
||||
import (
|
||||
"net"
|
||||
"time"
|
||||
|
||||
"github.com/lucas-clemente/quic-go/internal/protocol"
|
||||
|
||||
"github.com/golang/mock/gomock"
|
||||
|
||||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
)
|
||||
|
||||
var _ = Describe("Basic Conn Test", func() {
|
||||
It("reads a packet", func() {
|
||||
c := NewMockPacketConn(mockCtrl)
|
||||
addr := &net.UDPAddr{IP: net.IPv4(1, 2, 3, 4), Port: 1234}
|
||||
c.EXPECT().ReadFrom(gomock.Any()).DoAndReturn(func(b []byte) (int, net.Addr, error) {
|
||||
data := []byte("foobar")
|
||||
Expect(b).To(HaveLen(int(protocol.MaxPacketBufferSize)))
|
||||
return copy(b, data), addr, nil
|
||||
})
|
||||
|
||||
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