-
Notifications
You must be signed in to change notification settings - Fork 146
Expand file tree
/
Copy pathupdate_service_type_gen_test.go
More file actions
158 lines (144 loc) · 3.2 KB
/
update_service_type_gen_test.go
File metadata and controls
158 lines (144 loc) · 3.2 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
package types
// Code generated by github.com/CovenantSQL/HashStablePack DO NOT EDIT.
import (
"bytes"
"crypto/rand"
"encoding/binary"
"testing"
)
func TestMarshalHashSignedUpdateServiceHeader(t *testing.T) {
v := SignedUpdateServiceHeader{}
binary.Read(rand.Reader, binary.BigEndian, &v)
bts1, err := v.MarshalHash()
if err != nil {
t.Fatal(err)
}
bts2, err := v.MarshalHash()
if err != nil {
t.Fatal(err)
}
if !bytes.Equal(bts1, bts2) {
t.Fatal("hash not stable")
}
}
func BenchmarkMarshalHashSignedUpdateServiceHeader(b *testing.B) {
v := SignedUpdateServiceHeader{}
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
v.MarshalHash()
}
}
func BenchmarkAppendMsgSignedUpdateServiceHeader(b *testing.B) {
v := SignedUpdateServiceHeader{}
bts := make([]byte, 0, v.Msgsize())
bts, _ = v.MarshalHash()
b.SetBytes(int64(len(bts)))
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
bts, _ = v.MarshalHash()
}
}
func TestMarshalHashUpdateService(t *testing.T) {
v := UpdateService{}
binary.Read(rand.Reader, binary.BigEndian, &v)
bts1, err := v.MarshalHash()
if err != nil {
t.Fatal(err)
}
bts2, err := v.MarshalHash()
if err != nil {
t.Fatal(err)
}
if !bytes.Equal(bts1, bts2) {
t.Fatal("hash not stable")
}
}
func BenchmarkMarshalHashUpdateService(b *testing.B) {
v := UpdateService{}
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
v.MarshalHash()
}
}
func BenchmarkAppendMsgUpdateService(b *testing.B) {
v := UpdateService{}
bts := make([]byte, 0, v.Msgsize())
bts, _ = v.MarshalHash()
b.SetBytes(int64(len(bts)))
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
bts, _ = v.MarshalHash()
}
}
func TestMarshalHashUpdateServiceHeader(t *testing.T) {
v := UpdateServiceHeader{}
binary.Read(rand.Reader, binary.BigEndian, &v)
bts1, err := v.MarshalHash()
if err != nil {
t.Fatal(err)
}
bts2, err := v.MarshalHash()
if err != nil {
t.Fatal(err)
}
if !bytes.Equal(bts1, bts2) {
t.Fatal("hash not stable")
}
}
func BenchmarkMarshalHashUpdateServiceHeader(b *testing.B) {
v := UpdateServiceHeader{}
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
v.MarshalHash()
}
}
func BenchmarkAppendMsgUpdateServiceHeader(b *testing.B) {
v := UpdateServiceHeader{}
bts := make([]byte, 0, v.Msgsize())
bts, _ = v.MarshalHash()
b.SetBytes(int64(len(bts)))
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
bts, _ = v.MarshalHash()
}
}
func TestMarshalHashUpdateServiceResponse(t *testing.T) {
v := UpdateServiceResponse{}
binary.Read(rand.Reader, binary.BigEndian, &v)
bts1, err := v.MarshalHash()
if err != nil {
t.Fatal(err)
}
bts2, err := v.MarshalHash()
if err != nil {
t.Fatal(err)
}
if !bytes.Equal(bts1, bts2) {
t.Fatal("hash not stable")
}
}
func BenchmarkMarshalHashUpdateServiceResponse(b *testing.B) {
v := UpdateServiceResponse{}
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
v.MarshalHash()
}
}
func BenchmarkAppendMsgUpdateServiceResponse(b *testing.B) {
v := UpdateServiceResponse{}
bts := make([]byte, 0, v.Msgsize())
bts, _ = v.MarshalHash()
b.SetBytes(int64(len(bts)))
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
bts, _ = v.MarshalHash()
}
}