mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 05:07:36 +03:00
34 lines
745 B
Go
34 lines
745 B
Go
package frames
|
|
|
|
import (
|
|
"bytes"
|
|
|
|
"github.com/lucas-clemente/quic-go/protocol"
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("PingFrame", func() {
|
|
Context("when parsing", func() {
|
|
It("accepts sample frame", func() {
|
|
b := bytes.NewReader([]byte{0x07})
|
|
_, err := ParsePingFrame(b)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(b.Len()).To(Equal(0))
|
|
})
|
|
})
|
|
|
|
Context("when writing", func() {
|
|
It("writes a sample frame", func() {
|
|
b := &bytes.Buffer{}
|
|
frame := PingFrame{}
|
|
frame.Write(b, 10, protocol.PacketNumberLen6, 0)
|
|
Expect(b.Bytes()).To(Equal([]byte{0x07}))
|
|
})
|
|
|
|
It("has the correct min length", func() {
|
|
frame := PingFrame{}
|
|
Expect(frame.MinLength()).To(Equal(1))
|
|
})
|
|
})
|
|
})
|