-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcontract_scripts_test.go
306 lines (291 loc) · 8.57 KB
/
contract_scripts_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
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
package tezosprotocol_test
import (
"encoding/hex"
"math"
"strings"
"testing"
"github.com/anchorageoss/tezosprotocol/v3"
"github.com/stretchr/testify/require"
)
func TestContractScriptUnmarshalBinary(t *testing.T) {
require := require.New(t)
// invalid code length
err := (&tezosprotocol.ContractScript{}).UnmarshalBinary([]byte{})
require.Error(err)
require.Contains(err.Error(), "failed to read code length")
// invalid code
badCode, err := hex.DecodeString("00000002")
require.NoError(err)
err = (&tezosprotocol.ContractScript{}).UnmarshalBinary(badCode)
require.Error(err)
require.Contains(err.Error(), "failed to read code")
// invalid storage length
badStorageLength, err := hex.DecodeString("00000002C0DE00")
require.NoError(err)
err = (&tezosprotocol.ContractScript{}).UnmarshalBinary(badStorageLength)
require.Error(err)
require.Contains(err.Error(), "failed to read storage length")
// invalid storage
badStorage, err := hex.DecodeString("00000002C0DE00000007")
require.NoError(err)
err = (&tezosprotocol.ContractScript{}).UnmarshalBinary(badStorage)
require.Error(err)
require.Contains(err.Error(), "failed to read storage")
}
func TestSerializeTransactionParameters(t *testing.T) {
require := require.New(t)
// "do" entrypoint
// ---------------
// tezos-client rpc post /chains/main/blocks/head/helpers/forge/operations with '{
// "branch": "BMTiv62VhjkVXZJL9Cu5s56qTAJxyciQB2fzA9vd2EiVMsaucWB",
// "contents":
// [ { "kind": "transaction",
// "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx",
// "fee": "1266", "counter": "1", "gas_limit": "10100",
// "storage_limit": "277", "amount": "0",
// "destination": "KT1GrStTuhgMMpzbNWKTt7NoXGrYiufrHDYq",
// "parameters": {"entrypoint": "do", "value": {}} } ]
// }'
// e655948a282fcfc31b98abe9b37a82038c4c0e9b8e11f60ea0c7b33e6ecc625f6c0002298c03ed7d454a101eb7022bc95f7e5f41ac78f20901f44e950200015ab81204ccd229281b9c462edaf0a43e78075f4600ff02000000050200000000
paramsValueBytes, err := hex.DecodeString("0200000000")
require.NoError(err)
paramsValue := tezosprotocol.TransactionParametersValueRawBytes(paramsValueBytes)
params := tezosprotocol.TransactionParameters{
Entrypoint: tezosprotocol.EntrypointDo,
Value: ¶msValue,
}
expectedBytes := "02000000050200000000"
observedBytes, err := params.MarshalBinary()
require.NoError(err)
require.Equal(expectedBytes, hex.EncodeToString(observedBytes))
reserialized := tezosprotocol.TransactionParameters{}
require.NoError(reserialized.UnmarshalBinary(observedBytes))
require.Equal(params, reserialized)
}
func TestSerializeNamedEntrypoint(t *testing.T) {
require := require.New(t)
// misc named entrypoint
// ---------------------
// tezos-client rpc post /chains/main/blocks/head/helpers/forge/operations with '{
// "branch": "BMTiv62VhjkVXZJL9Cu5s56qTAJxyciQB2fzA9vd2EiVMsaucWB",
// "contents":
// [ { "kind": "transaction",
// "source": "tz1KqTpEZ7Yob7QbPE4Hy4Wo8fHG8LhKxZSx",
// "fee": "1266", "counter": "1", "gas_limit": "10100",
// "storage_limit": "277", "amount": "0",
// "destination": "KT1GrStTuhgMMpzbNWKTt7NoXGrYiufrHDYq",
// "parameters": {"entrypoint": "dummy", "value": {}} } ]
// }'
// e655948a282fcfc31b98abe9b37a82038c4c0e9b8e11f60ea0c7b33e6ecc625f6c0002298c03ed7d454a101eb7022bc95f7e5f41ac78f20901f44e950200015ab81204ccd229281b9c462edaf0a43e78075f4600ffff0564756d6d79000000050200000000
paramsValueBytes, err := hex.DecodeString("0200000000")
require.NoError(err)
entrypoint, err := tezosprotocol.NewNamedEntrypoint("dummy")
require.NoError(err)
paramsValue := tezosprotocol.TransactionParametersValueRawBytes(paramsValueBytes)
expectedBytes := "ff0564756d6d79000000050200000000"
params := tezosprotocol.TransactionParameters{
Entrypoint: entrypoint,
Value: ¶msValue,
}
observedBytes, err := params.MarshalBinary()
require.NoError(err)
require.Equal(expectedBytes, hex.EncodeToString(observedBytes))
reserialized := tezosprotocol.TransactionParameters{}
require.NoError(reserialized.UnmarshalBinary(observedBytes))
require.Equal(params, reserialized)
}
func TestEndpointNameTooLong(t *testing.T) {
_, err := tezosprotocol.NewNamedEntrypoint(strings.Repeat("a", math.MaxUint8+1))
require.Error(t, err)
}
func TestEntrypoint_Name(t *testing.T) {
tests := []struct {
name string
bytes []byte
want string
wantErr bool
}{
{
name: "default",
bytes: []byte{byte(tezosprotocol.EntrypointTagDefault)},
want: "default",
wantErr: false,
},
{
name: "root",
bytes: []byte{byte(tezosprotocol.EntrypointTagRoot)},
want: "root",
wantErr: false,
},
{
name: "do",
bytes: []byte{byte(tezosprotocol.EntrypointTagDo)},
want: "do",
wantErr: false,
},
{
name: "set_delegate",
bytes: []byte{byte(tezosprotocol.EntrypointTagSetDelegate)},
want: "set_delegate",
wantErr: false,
},
{
name: "remove_delegate",
bytes: []byte{byte(tezosprotocol.EntrypointTagRemoveDelegate)},
want: "remove_delegate",
wantErr: false,
},
{
name: "named",
bytes: append([]byte{byte(tezosprotocol.EntrypointTagNamed), 4}, []byte("tada")...),
want: "tada",
wantErr: false,
},
{
name: "empty named",
bytes: []byte{byte(tezosprotocol.EntrypointTagNamed), 0},
want: "",
wantErr: true,
},
{
name: "potato",
bytes: []byte{byte(42)},
want: "",
wantErr: true,
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
var e tezosprotocol.Entrypoint
err := e.UnmarshalBinary(tt.bytes)
if err != nil {
t.Errorf("UnmarshalBinary(%v) error = %v", tt.bytes, err)
return
}
got, err := e.Name()
if (err != nil) != tt.wantErr {
t.Errorf("Entrypoint.Name() error = %v, wantErr %v", err, tt.wantErr)
return
}
if got != tt.want {
t.Errorf("Entrypoint.Name() = %v, want %v", got, tt.want)
}
})
}
}
func TestEntrypoint_Tag(t *testing.T) {
tests := []struct {
name string
bytes []byte
want tezosprotocol.EntrypointTag
}{
{
name: "default",
bytes: []byte{byte(tezosprotocol.EntrypointTagDefault)},
want: tezosprotocol.EntrypointTagDefault,
},
{
name: "root",
bytes: []byte{byte(tezosprotocol.EntrypointTagRoot)},
want: tezosprotocol.EntrypointTagRoot,
},
{
name: "do",
bytes: []byte{byte(tezosprotocol.EntrypointTagDo)},
want: tezosprotocol.EntrypointTagDo,
},
{
name: "set_delegate",
bytes: []byte{byte(tezosprotocol.EntrypointTagSetDelegate)},
want: tezosprotocol.EntrypointTagSetDelegate,
},
{
name: "remove_delegate",
bytes: []byte{byte(tezosprotocol.EntrypointTagRemoveDelegate)},
want: tezosprotocol.EntrypointTagRemoveDelegate,
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
var e tezosprotocol.Entrypoint
err := e.UnmarshalBinary(tt.bytes)
if err != nil {
t.Errorf("UnmarshalBinary(%v) error = %v", tt.bytes, err)
return
}
if got := e.Tag(); got != tt.want {
t.Errorf("Entrypoint.Name() = %v, want %v", got, tt.want)
}
})
}
}
func TestEntrypoint_String(t *testing.T) {
tests := []struct {
name string
bytes []byte
want string
}{
{
name: "default",
bytes: []byte{byte(tezosprotocol.EntrypointTagDefault)},
want: "default",
},
{
name: "root",
bytes: []byte{byte(tezosprotocol.EntrypointTagRoot)},
want: "root",
},
{
name: "do",
bytes: []byte{byte(tezosprotocol.EntrypointTagDo)},
want: "do",
},
{
name: "set_delegate",
bytes: []byte{byte(tezosprotocol.EntrypointTagSetDelegate)},
want: "set_delegate",
},
{
name: "remove_delegate",
bytes: []byte{byte(tezosprotocol.EntrypointTagRemoveDelegate)},
want: "remove_delegate",
},
{
name: "named",
bytes: append([]byte{byte(tezosprotocol.EntrypointTagNamed), 4}, []byte("tada")...),
want: "tada",
},
{
name: "empty named",
bytes: []byte{byte(tezosprotocol.EntrypointTagNamed), 0},
want: "<invalid entrypoint>",
},
{
name: "potato",
bytes: []byte{byte(42)},
want: "<invalid entrypoint>",
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
var e tezosprotocol.Entrypoint
err := e.UnmarshalBinary(tt.bytes)
if err != nil {
t.Errorf("UnmarshalBinary(%v) error = %v", tt.bytes, err)
return
}
if tt.want == "<invalid entrypoint>" {
if got := e.String(); got != tt.want {
t.Errorf("Entrypoint.String() = %v, want %v", got, tt.want)
}
} else {
if got := e.String(); got != "%"+tt.want {
t.Errorf("Entrypoint.String() = %v, want %v", got, tt.want)
}
}
})
}
}