-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathkind_test.go
82 lines (74 loc) · 1.65 KB
/
kind_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
package pack_test
import (
"encoding/json"
"math/rand"
"github.com/renproject/pack"
"github.com/renproject/surge"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("Kind", func() {
numTrials := 100
randomKind := func() pack.Kind {
r := rand.New(rand.NewSource(GinkgoRandomSeed()))
switch r.Int() % 13 {
// Nil
case 0:
return pack.KindNil
// Scalar
case 1:
return pack.KindU8
case 2:
return pack.KindU16
case 3:
return pack.KindU32
case 4:
return pack.KindU64
case 5:
return pack.KindU128
case 6:
return pack.KindU256
// Bytes
case 7:
return pack.KindString
case 8:
return pack.KindBytes
case 9:
return pack.KindBytes32
case 10:
return pack.KindBytes65
// Abstract
case 11:
return pack.KindStruct
case 12:
return pack.KindList
}
panic("unreachable")
}
Context("when marshaling and unmarshaling to binary", func() {
It("should equal itself", func() {
for trial := 0; trial < numTrials; trial++ {
expected := randomKind()
data, err := surge.ToBinary(expected)
Expect(err).ToNot(HaveOccurred())
got := pack.KindNil
err = surge.FromBinary(&got, data)
Expect(err).ToNot(HaveOccurred())
Expect(expected).To(Equal(got))
}
})
})
Context("when marshaling and unmarshaling to JSON", func() {
It("should equal itself", func() {
for trial := 0; trial < numTrials; trial++ {
expected := randomKind()
data, err := json.Marshal(expected)
Expect(err).ToNot(HaveOccurred())
got := pack.KindNil
err = json.Unmarshal(data, &got)
Expect(err).ToNot(HaveOccurred())
Expect(expected).To(Equal(got))
}
})
})
})