1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
package utils
import (
"testing"
msgpack "github.com/shamaton/msgpack/v3"
"github.com/stretchr/testify/require"
)
type sampleMsgPackStructure struct {
ImportantString string `msgpack:"important_string"`
}
func Test_MsgpackEncoder(t *testing.T) {
t.Parallel()
var (
ss = &sampleStructure{
ImportantString: "Hello World",
}
msgpackEncoder = msgpack.Marshal
)
raw, err := msgpackEncoder(ss)
require.NoError(t, err)
var decoded sampleStructure
err = msgpack.Unmarshal(raw, &decoded)
require.NoError(t, err)
require.Equal(t, ss.ImportantString, decoded.ImportantString)
}
func Test_MsgpackDecoder(t *testing.T) {
t.Parallel()
var (
ss = &sampleMsgPackStructure{
ImportantString: "Hello World",
}
msgpackEncoder = msgpack.Marshal
msgpackDecoder = msgpack.Unmarshal
)
raw, err := msgpackEncoder(ss)
require.NoError(t, err)
var decoded sampleMsgPackStructure
err = msgpackDecoder(raw, &decoded)
require.NoError(t, err)
require.Equal(t, "Hello World", decoded.ImportantString)
}
func Test_MsgpackDecodeInvalid(t *testing.T) {
t.Parallel()
var decoded sampleMsgPackStructure
err := msgpack.Unmarshal([]byte{0xff, 0xff}, &decoded)
require.Error(t, err)
}
|