-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpack_test.go
86 lines (75 loc) · 1.5 KB
/
pack_test.go
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package vpack
import (
"testing"
"time"
"encoding/json"
)
func toJson(v any) string {
j, _ := json.Marshal(v)
return string(j)
}
func _CheckEqual[T comparable](t *testing.T, name string, v1 T, v2 T) {
t.Logf("Testing %s: %v | %v", name, v1, v2)
if v1 != v2 {
t.Errorf("%s not equal: %v != %v", name, v1, v2)
}
}
func TestPackingThings(t *testing.T) {
type Other struct {
I1 int
S1 string
}
PackOther := func(self *Other, buf *Buffer) {
Int(&self.I1, buf)
String(&self.S1, buf)
}
type Something struct {
I1 int
I2 int
S1 string
S2 string
O1 []Other
B1 bool
T1 time.Time
}
PackSomething := func(self *Something, buf *Buffer) {
Int(&self.I1, buf)
Int(&self.I2, buf)
String(&self.S1, buf)
StringZ(&self.S2, buf)
Slice(&self.O1, PackOther, buf)
Bool(&self.B1, buf)
UnixTime(&self.T1, buf)
}
var obj1 Something
obj1.I1 = 100 // small number
obj1.I2 = 43222 // big number
obj1.S1 = "Hello"
obj1.S2 = "World"
obj1.O1 = []Other {
{I1: 10},
{S1: "k"},
}
obj1.B1 = true
obj1.T1 = time.UnixMilli(2342000) // packer truncates to seconds
// encode to bytes and to json
data := ToBytes(&obj1, PackSomething)
if data == nil {
t.Fatal("packing failed")
}
obj2 := FromBytes(data, PackSomething)
if obj2 == nil {
t.Fatal("unpacking failed")
}
json1 := toJson(obj1)
json2 := toJson(obj2)
if len(json1) < 4 {
t.Log(json1)
t.Fatal("json appears abnormal")
}
if json1 != json2 {
t.Log(json1)
t.Log(json2)
t.Fatal("Objects don't appear to match")
}
}