mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
extend ByteOrder interface to allow converting from a byte slice
This commit is contained in:
parent
e3723a0ef1
commit
42cec84221
3 changed files with 35 additions and 0 deletions
|
@ -9,6 +9,23 @@ import (
|
|||
)
|
||||
|
||||
var _ = Describe("Big Endian encoding / decoding", func() {
|
||||
Context("converting", func() {
|
||||
It("Uint16", func() {
|
||||
b := []byte{0x13, 0x37}
|
||||
Expect(BigEndian.Uint16(b)).To(Equal(uint16(0x1337)))
|
||||
})
|
||||
|
||||
It("Uint24", func() {
|
||||
b := []byte{0x13, 0x99, 0x37}
|
||||
Expect(BigEndian.Uint24(b)).To(Equal(uint32(0x139937)))
|
||||
})
|
||||
|
||||
It("Uint32", func() {
|
||||
b := []byte{0xde, 0xad, 0xbe, 0xef}
|
||||
Expect(BigEndian.Uint32(b)).To(Equal(uint32(0xdeadbeef)))
|
||||
})
|
||||
})
|
||||
|
||||
Context("ReadUint16", func() {
|
||||
It("reads a big endian", func() {
|
||||
b := []byte{0x13, 0xEF}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue