mirror of
https://github.com/mochi-mqtt/server.git
synced 2025-09-27 04:26:23 +08:00
423 lines
10 KiB
Go
423 lines
10 KiB
Go
// SPDX-License-Identifier: MIT
|
|
// SPDX-FileCopyrightText: 2022 mochi-mqtt, mochi-co
|
|
// SPDX-FileContributor: mochi-co
|
|
|
|
package packets
|
|
|
|
import (
|
|
"bytes"
|
|
"errors"
|
|
"fmt"
|
|
"math"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestBytesToString(t *testing.T) {
|
|
b := []byte{'a', 'b', 'c'}
|
|
require.Equal(t, "abc", bytesToString(b))
|
|
}
|
|
|
|
func TestDecodeString(t *testing.T) {
|
|
expect := []struct {
|
|
name string
|
|
rawBytes []byte
|
|
result string
|
|
offset int
|
|
shouldFail error
|
|
}{
|
|
{
|
|
offset: 0,
|
|
rawBytes: []byte{0, 7, 97, 47, 98, 47, 99, 47, 100, 97},
|
|
result: "a/b/c/d",
|
|
},
|
|
{
|
|
offset: 14,
|
|
rawBytes: []byte{
|
|
Connect << 4, 17, // Fixed header
|
|
0, 6, // Protocol Name - MSB+LSB
|
|
'M', 'Q', 'I', 's', 'd', 'p', // Protocol Name
|
|
3, // Protocol Version
|
|
0, // Packet Flags
|
|
0, 30, // Keepalive
|
|
0, 3, // Client ID - MSB+LSB
|
|
'h', 'e', 'y', // Client ID "zen"},
|
|
},
|
|
result: "hey",
|
|
},
|
|
{
|
|
offset: 2,
|
|
rawBytes: []byte{0, 0, 0, 23, 49, 47, 50, 47, 51, 47, 52, 47, 97, 47, 98, 47, 99, 47, 100, 47, 101, 47, 94, 47, 64, 47, 33, 97},
|
|
result: "1/2/3/4/a/b/c/d/e/^/@/!",
|
|
},
|
|
{
|
|
offset: 0,
|
|
rawBytes: []byte{0, 5, 120, 47, 121, 47, 122, 33, 64, 35, 36, 37, 94, 38},
|
|
result: "x/y/z",
|
|
},
|
|
{
|
|
offset: 0,
|
|
rawBytes: []byte{0, 9, 'a', '/', 'b', '/', 'c', '/', 'd', 'z'},
|
|
shouldFail: ErrMalformedOffsetBytesOutOfRange,
|
|
},
|
|
{
|
|
offset: 5,
|
|
rawBytes: []byte{0, 7, 97, 47, 98, 47, 'x'},
|
|
shouldFail: ErrMalformedOffsetBytesOutOfRange,
|
|
},
|
|
{
|
|
offset: 9,
|
|
rawBytes: []byte{0, 7, 97, 47, 98, 47, 'y'},
|
|
shouldFail: ErrMalformedOffsetUintOutOfRange,
|
|
},
|
|
{
|
|
offset: 17,
|
|
rawBytes: []byte{
|
|
Connect << 4, 0, // Fixed header
|
|
0, 4, // Protocol Name - MSB+LSB
|
|
'M', 'Q', 'T', 'T', // Protocol Name
|
|
4, // Protocol Version
|
|
0, // Flags
|
|
0, 20, // Keepalive
|
|
0, 3, // Client ID - MSB+LSB
|
|
'z', 'e', 'n', // Client ID "zen"
|
|
0, 6, // Will Topic - MSB+LSB
|
|
'l',
|
|
},
|
|
shouldFail: ErrMalformedOffsetBytesOutOfRange,
|
|
},
|
|
{
|
|
offset: 0,
|
|
rawBytes: []byte{0, 7, 0xc3, 0x28, 98, 47, 99, 47, 100},
|
|
shouldFail: ErrMalformedInvalidUTF8,
|
|
},
|
|
}
|
|
|
|
for i, wanted := range expect {
|
|
t.Run(fmt.Sprint(i), func(t *testing.T) {
|
|
result, _, err := decodeString(wanted.rawBytes, wanted.offset)
|
|
if wanted.shouldFail != nil {
|
|
require.True(t, errors.Is(err, wanted.shouldFail), "want %v to be a %v", err, wanted.shouldFail)
|
|
return
|
|
}
|
|
|
|
require.NoError(t, err)
|
|
require.Equal(t, wanted.result, result)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestDecodeStringZeroWidthNoBreak(t *testing.T) { // [MQTT-1.5.4-3]
|
|
result, _, err := decodeString([]byte{0, 3, 0xEF, 0xBB, 0xBF}, 0)
|
|
require.NoError(t, err)
|
|
require.Equal(t, "\ufeff", result)
|
|
}
|
|
|
|
func TestDecodeBytes(t *testing.T) {
|
|
expect := []struct {
|
|
rawBytes []byte
|
|
result []uint8
|
|
next int
|
|
offset int
|
|
shouldFail error
|
|
}{
|
|
{
|
|
rawBytes: []byte{0, 4, 77, 81, 84, 84, 4, 194, 0, 50, 0, 36, 49, 53, 52}, // truncated connect packet (clean session)
|
|
result: []byte{0x4d, 0x51, 0x54, 0x54},
|
|
next: 6,
|
|
offset: 0,
|
|
},
|
|
{
|
|
rawBytes: []byte{0, 4, 77, 81, 84, 84, 4, 192, 0, 50, 0, 36, 49, 53, 52, 50}, // truncated connect packet, only checking start
|
|
result: []byte{0x4d, 0x51, 0x54, 0x54},
|
|
next: 6,
|
|
offset: 0,
|
|
},
|
|
{
|
|
rawBytes: []byte{0, 4, 77, 81},
|
|
offset: 0,
|
|
shouldFail: ErrMalformedOffsetBytesOutOfRange,
|
|
},
|
|
{
|
|
rawBytes: []byte{0, 4, 77, 81},
|
|
offset: 8,
|
|
shouldFail: ErrMalformedOffsetUintOutOfRange,
|
|
},
|
|
}
|
|
|
|
for i, wanted := range expect {
|
|
t.Run(fmt.Sprint(i), func(t *testing.T) {
|
|
result, _, err := decodeBytes(wanted.rawBytes, wanted.offset)
|
|
if wanted.shouldFail != nil {
|
|
require.True(t, errors.Is(err, wanted.shouldFail), "want %v to be a %v", err, wanted.shouldFail)
|
|
return
|
|
}
|
|
|
|
require.NoError(t, err)
|
|
require.Equal(t, wanted.result, result)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestDecodeByte(t *testing.T) {
|
|
expect := []struct {
|
|
rawBytes []byte
|
|
result uint8
|
|
offset int
|
|
shouldFail error
|
|
}{
|
|
{
|
|
rawBytes: []byte{0, 4, 77, 81, 84, 84}, // nonsense slice of bytes
|
|
result: uint8(0x00),
|
|
offset: 0,
|
|
},
|
|
{
|
|
rawBytes: []byte{0, 4, 77, 81, 84, 84},
|
|
result: uint8(0x04),
|
|
offset: 1,
|
|
},
|
|
{
|
|
rawBytes: []byte{0, 4, 77, 81, 84, 84},
|
|
result: uint8(0x4d),
|
|
offset: 2,
|
|
},
|
|
{
|
|
rawBytes: []byte{0, 4, 77, 81, 84, 84},
|
|
result: uint8(0x51),
|
|
offset: 3,
|
|
},
|
|
{
|
|
rawBytes: []byte{0, 4, 77, 80, 82, 84},
|
|
offset: 8,
|
|
shouldFail: ErrMalformedOffsetByteOutOfRange,
|
|
},
|
|
}
|
|
|
|
for i, wanted := range expect {
|
|
t.Run(fmt.Sprint(i), func(t *testing.T) {
|
|
result, offset, err := decodeByte(wanted.rawBytes, wanted.offset)
|
|
if wanted.shouldFail != nil {
|
|
require.True(t, errors.Is(err, wanted.shouldFail), "want %v to be a %v", err, wanted.shouldFail)
|
|
return
|
|
}
|
|
|
|
require.NoError(t, err)
|
|
require.Equal(t, wanted.result, result)
|
|
require.Equal(t, i+1, offset)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestDecodeUint16(t *testing.T) {
|
|
expect := []struct {
|
|
rawBytes []byte
|
|
result uint16
|
|
offset int
|
|
shouldFail error
|
|
}{
|
|
{
|
|
rawBytes: []byte{0, 7, 97, 47, 98, 47, 99, 47, 100, 97},
|
|
result: uint16(0x07),
|
|
offset: 0,
|
|
},
|
|
{
|
|
rawBytes: []byte{0, 7, 97, 47, 98, 47, 99, 47, 100, 97},
|
|
result: uint16(0x761),
|
|
offset: 1,
|
|
},
|
|
{
|
|
rawBytes: []byte{0, 7, 255, 47},
|
|
offset: 8,
|
|
shouldFail: ErrMalformedOffsetUintOutOfRange,
|
|
},
|
|
}
|
|
|
|
for i, wanted := range expect {
|
|
t.Run(fmt.Sprint(i), func(t *testing.T) {
|
|
result, offset, err := decodeUint16(wanted.rawBytes, wanted.offset)
|
|
if wanted.shouldFail != nil {
|
|
require.True(t, errors.Is(err, wanted.shouldFail), "want %v to be a %v", err, wanted.shouldFail)
|
|
return
|
|
}
|
|
|
|
require.NoError(t, err)
|
|
require.Equal(t, wanted.result, result)
|
|
require.Equal(t, i+2, offset)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestDecodeUint32(t *testing.T) {
|
|
expect := []struct {
|
|
rawBytes []byte
|
|
result uint32
|
|
offset int
|
|
shouldFail error
|
|
}{
|
|
{
|
|
rawBytes: []byte{0, 0, 0, 7, 8},
|
|
result: uint32(7),
|
|
offset: 0,
|
|
},
|
|
{
|
|
rawBytes: []byte{0, 0, 1, 226, 64, 8},
|
|
result: uint32(123456),
|
|
offset: 1,
|
|
},
|
|
{
|
|
rawBytes: []byte{0, 7, 255, 47},
|
|
offset: 8,
|
|
shouldFail: ErrMalformedOffsetUintOutOfRange,
|
|
},
|
|
}
|
|
|
|
for i, wanted := range expect {
|
|
t.Run(fmt.Sprint(i), func(t *testing.T) {
|
|
result, offset, err := decodeUint32(wanted.rawBytes, wanted.offset)
|
|
if wanted.shouldFail != nil {
|
|
require.True(t, errors.Is(err, wanted.shouldFail), "want %v to be a %v", err, wanted.shouldFail)
|
|
return
|
|
}
|
|
|
|
require.NoError(t, err)
|
|
require.Equal(t, wanted.result, result)
|
|
require.Equal(t, i+4, offset)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestDecodeByteBool(t *testing.T) {
|
|
expect := []struct {
|
|
rawBytes []byte
|
|
result bool
|
|
offset int
|
|
shouldFail error
|
|
}{
|
|
{
|
|
rawBytes: []byte{0x00, 0x00},
|
|
result: false,
|
|
},
|
|
{
|
|
rawBytes: []byte{0x01, 0x00},
|
|
result: true,
|
|
},
|
|
{
|
|
rawBytes: []byte{0x01, 0x00},
|
|
offset: 5,
|
|
shouldFail: ErrMalformedOffsetBoolOutOfRange,
|
|
},
|
|
}
|
|
|
|
for i, wanted := range expect {
|
|
t.Run(fmt.Sprint(i), func(t *testing.T) {
|
|
result, offset, err := decodeByteBool(wanted.rawBytes, wanted.offset)
|
|
if wanted.shouldFail != nil {
|
|
require.True(t, errors.Is(err, wanted.shouldFail), "want %v to be a %v", err, wanted.shouldFail)
|
|
return
|
|
}
|
|
|
|
require.NoError(t, err)
|
|
require.Equal(t, wanted.result, result)
|
|
require.Equal(t, 1, offset)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestDecodeLength(t *testing.T) {
|
|
b := bytes.NewBuffer([]byte{0x78})
|
|
n, bu, err := DecodeLength(b)
|
|
require.NoError(t, err)
|
|
require.Equal(t, 120, n)
|
|
require.Equal(t, 1, bu)
|
|
|
|
b = bytes.NewBuffer([]byte{255, 255, 255, 127})
|
|
n, bu, err = DecodeLength(b)
|
|
require.NoError(t, err)
|
|
require.Equal(t, 268435455, n)
|
|
require.Equal(t, 4, bu)
|
|
}
|
|
|
|
func TestDecodeLengthErrors(t *testing.T) {
|
|
b := bytes.NewBuffer([]byte{})
|
|
_, _, err := DecodeLength(b)
|
|
require.Error(t, err)
|
|
|
|
b = bytes.NewBuffer([]byte{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f})
|
|
_, _, err = DecodeLength(b)
|
|
require.Error(t, err)
|
|
require.ErrorIs(t, err, ErrMalformedVariableByteInteger)
|
|
}
|
|
|
|
func TestEncodeBool(t *testing.T) {
|
|
result := encodeBool(true)
|
|
require.Equal(t, byte(1), result)
|
|
|
|
result = encodeBool(false)
|
|
require.Equal(t, byte(0), result)
|
|
|
|
// Check failure.
|
|
result = encodeBool(false)
|
|
require.NotEqual(t, byte(1), result)
|
|
}
|
|
|
|
func TestEncodeBytes(t *testing.T) {
|
|
result := encodeBytes([]byte("testing"))
|
|
require.Equal(t, []uint8{0, 7, 116, 101, 115, 116, 105, 110, 103}, result)
|
|
|
|
result = encodeBytes([]byte("testing"))
|
|
require.NotEqual(t, []uint8{0, 7, 113, 101, 115, 116, 105, 110, 103}, result)
|
|
}
|
|
|
|
func TestEncodeUint16(t *testing.T) {
|
|
result := encodeUint16(0)
|
|
require.Equal(t, []byte{0x00, 0x00}, result)
|
|
|
|
result = encodeUint16(32767)
|
|
require.Equal(t, []byte{0x7f, 0xff}, result)
|
|
|
|
result = encodeUint16(math.MaxUint16)
|
|
require.Equal(t, []byte{0xff, 0xff}, result)
|
|
}
|
|
|
|
func TestEncodeUint32(t *testing.T) {
|
|
result := encodeUint32(7)
|
|
require.Equal(t, []byte{0x00, 0x00, 0x00, 0x07}, result)
|
|
|
|
result = encodeUint32(32767)
|
|
require.Equal(t, []byte{0, 0, 127, 255}, result)
|
|
|
|
result = encodeUint32(math.MaxUint32)
|
|
require.Equal(t, []byte{255, 255, 255, 255}, result)
|
|
}
|
|
|
|
func TestEncodeString(t *testing.T) {
|
|
result := encodeString("testing")
|
|
require.Equal(t, []uint8{0x00, 0x07, 0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67}, result)
|
|
|
|
result = encodeString("")
|
|
require.Equal(t, []uint8{0x00, 0x00}, result)
|
|
|
|
result = encodeString("a")
|
|
require.Equal(t, []uint8{0x00, 0x01, 0x61}, result)
|
|
|
|
result = encodeString("b")
|
|
require.NotEqual(t, []uint8{0x00, 0x00}, result)
|
|
}
|
|
|
|
func TestEncodeLength(t *testing.T) {
|
|
b := new(bytes.Buffer)
|
|
encodeLength(b, 120)
|
|
require.Equal(t, []byte{0x78}, b.Bytes())
|
|
|
|
b = new(bytes.Buffer)
|
|
encodeLength(b, math.MaxInt64)
|
|
require.Equal(t, []byte{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f}, b.Bytes())
|
|
}
|
|
|
|
func TestValidUTF8(t *testing.T) {
|
|
require.True(t, validUTF8([]byte{0x74, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x67}))
|
|
require.False(t, validUTF8([]byte{0xff, 0xff}))
|
|
require.False(t, validUTF8([]byte{0x74, 0x00, 0x73, 0x74}))
|
|
}
|