File: msgpack_test.go

package info (click to toggle)
golang-github-gofiber-utils 2.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 432 kB
  • sloc: makefile: 40
file content (59 lines) | stat: -rw-r--r-- 1,203 bytes parent folder | download
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)
}