test version negotiation packet

This commit is contained in:
Lucas Clemente 2016-04-21 09:21:21 +02:00
parent bb3c8b707b
commit fd28921bdd
2 changed files with 29 additions and 11 deletions

17
server_test.go Normal file
View file

@ -0,0 +1,17 @@
package quic
import (
"github.com/lucas-clemente/quic-go/protocol"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("Server", func() {
It("composes version negotiation packets", func() {
expected := append(
[]byte{0x2d, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0},
protocol.SupportedVersionsAsTags...,
)
Expect(composeVersionNegotiation(1)).To(Equal(expected))
})
})