mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
uTLS is not yet bumped to the new version, so this commit breaks the dependencies relationship by getting rid of the local replace.
24 lines
548 B
Go
24 lines
548 B
Go
package wire
|
|
|
|
import (
|
|
"github.com/refraction-networking/uquic/internal/protocol"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("PING frame", func() {
|
|
Context("when writing", func() {
|
|
It("writes a sample frame", func() {
|
|
frame := PingFrame{}
|
|
b, err := frame.Append(nil, protocol.Version1)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
Expect(b).To(Equal([]byte{0x1}))
|
|
})
|
|
|
|
It("has the correct length", func() {
|
|
frame := PingFrame{}
|
|
Expect(frame.Length(0)).To(Equal(protocol.ByteCount(1)))
|
|
})
|
|
})
|
|
})
|