extend ByteOrder interface to allow converting from a byte slice

This commit is contained in:
Marten Seemann 2022-08-27 14:38:21 +03:00
parent e3723a0ef1
commit 42cec84221
3 changed files with 35 additions and 0 deletions

View file

@ -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}