-
Notifications
You must be signed in to change notification settings - Fork 15
/
spec_common_test.go
242 lines (223 loc) · 6.35 KB
/
spec_common_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
package aptos
import (
"fmt"
"github.com/aptos-labs/aptos-go-sdk/internal/util"
"math/big"
"strconv"
"strings"
)
// TODO Add specific keys that must be deserialized and compared
const Test64ByteHex = "0x1234123412341234123412341234123412341234123412341234123412341234"
const Test65ByteHex = "0x1234123412341234123412341234123412341234123412341234123412341234A"
const Test128ByteHex = "0x12341234123412341234123412341234123412341234123412341234123412341234123412341234123412341234123412341234123412341234123412341234"
const TestInvalidHex = "0x0101"
const TestInvalidHexCharacters = "Not-Hex"
// Ed25519 test data
const (
TestEd25519PrivateKeyHex = "0xc5338cd251c22daa8c9c9cc94f498cc8a5c7e1d2e75287a5dda91096fe64efa5"
TestEd25519PublicKeyHex = "0xde19e5d1880cac87d57484ce9ed2e84cf0f9599f12e7cc3a52e4e7657a763f2c"
TestEd25519AddressHex = "0x978c213990c4833df71548df7ce49d54c759d6b6d932de22b24d56060b7af2aa"
TestEd25519Message = "0x68656c6c6f20776f726c64" // ("Hello world")
TestEd25519SignatureHex = "0x9e653d56a09247570bb174a389e85b9226abd5c403ea6c504b386626a145158cd4efd66fc5e071c0e19538a96a05ddbda24d3c51e1e6a9dacc6bb1ce775cce07"
)
// SingleSignerEd25519 test data
const (
TestSingleSignerEd25519PrivateKeyHex = "0xf508cbef4e0fe463204aab724a90791c9a9dbe60a53b4978bbddbc712b55f2fd"
TestSingleSignerEd25519PublicKeyHex = "0xe425451a5dc888ac871976c3c724dec6118910e7d11d344b4b07a22cd94e8c2e"
TestSingleSignerEd25519AddressHex = "0x5bdf77d5bf826c8c04273d4e7323f7bc4a85ee7ee34b37bd7458b7aed3639dd3"
TestSingleSignerEd25519Message = "0x68656c6c6f20776f726c64" // ("Hello world")
TestSingleSignerEd25519SignatureHex = "0xc6f50f4e0cb1961f6f7b28be1a1d80e3ece240dfbb7bd8a8b03cc26bfd144fc176295d7c322c5bf3d9669d2ad49d8bdbfe77254b4a6393d8c49da04b40cee600"
)
// Secp256k1 test data
const (
TestSecp256k1PrivateKeyHex = "0xd107155adf816a0a94c6db3c9489c13ad8a1eda7ada2e558ba3bfa47c020347e"
TestSecp256k1PublicKeyHex = "0x04acdd16651b839c24665b7e2033b55225f384554949fef46c397b5275f37f6ee95554d70fb5d9f93c5831ebf695c7206e7477ce708f03ae9bb2862dc6c9e033ea"
TestSecp256k1AddressHex = "0x5792c985bc96f436270bd2a3c692210b09c7febb8889345ceefdbae4bacfe498"
TestSecp256k1Message = "0x68656c6c6f20776f726c64" // ("Hello world")
TestSecp256k1SignatureHex = "0xd0d634e843b61339473b028105930ace022980708b2855954b977da09df84a770c0b68c29c8ca1b5409a5085b0ec263be80e433c83fcf6debb82f3447e71edca"
)
const (
OtherMessage = "0x1337deadbeef"
)
// ParseHex parses hex, but skips the error
func parseHex(hex string) []byte {
bytes, err := util.ParseHex(hex)
if err != nil {
panic("Failed to parse hex: " + hex + " " + err.Error())
}
return bytes
}
func parseBoolean(input string) bool {
switch input {
case "true":
return true
case "false":
return false
default:
panic(fmt.Sprintf("invalid boolean input %s", input))
}
}
func parseU8(input string) uint8 {
out, err := strconv.ParseUint(input, 10, 8)
if err != nil {
panic(fmt.Sprintf("invalid u8 input %s", input))
}
return (uint8)(out)
}
func parseU16(input string) uint16 {
out, err := strconv.ParseUint(input, 10, 16)
if err != nil {
panic(fmt.Sprintf("invalid u16 input %s", input))
}
return (uint16)(out)
}
func parseU32(input string) uint32 {
out, err := strconv.ParseUint(input, 10, 32)
if err != nil {
panic(fmt.Sprintf("invalid u32 input %s", input))
}
return (uint32)(out)
}
func parseU64(input string) uint64 {
out, err := StrToUint64(input)
if err != nil {
panic(fmt.Sprintf("invalid u64 input %s", input))
}
return out
}
func parseU128(input string) *big.Int {
out, err := StrToBigInt(input)
if err != nil {
panic(fmt.Sprintf("invalid u128 input %s", input))
}
return out
}
func parseU256(input string) *big.Int {
out, err := StrToBigInt(input)
if err != nil {
panic(fmt.Sprintf("invalid u256 input %s", input))
}
return out
}
func parseString(input string) string {
// Remove quotes
return strings.ReplaceAll(input, "\"", "")
}
func parseAddress(input string) *AccountAddress {
address := &AccountAddress{}
err := address.ParseStringRelaxed(input)
if err != nil {
panic(fmt.Sprintf("invalid address input %s", input))
}
return address
}
func parseSequence(itemType string, items string) any {
itemList := strings.Split(items, ",")
switch itemType {
case "address":
addresses := make([]AccountAddress, 0)
if items == "" {
return addresses
}
for _, item := range itemList {
address := AccountAddress{}
err := address.ParseStringRelaxed(item)
if err != nil {
return nil
}
addresses = append(addresses, address)
}
return addresses
case "bool":
bools := make([]bool, 0)
if items == "" {
return bools
}
for _, item := range itemList {
bools = append(bools, parseBoolean(item))
}
return bools
case "u8":
u8s := make([]uint8, 0)
if items == "" {
return u8s
}
for _, item := range itemList {
u8s = append(u8s, parseU8(item))
}
return u8s
case "u16":
u16s := make([]uint16, 0)
if items == "" {
return u16s
}
for _, item := range itemList {
u16s = append(u16s, parseU16(item))
}
return u16s
case "u32":
u32s := make([]uint32, 0)
if items == "" {
return u32s
}
for _, item := range itemList {
u32s = append(u32s, parseU32(item))
}
return u32s
case "u64":
u64s := make([]uint64, 0)
if items == "" {
return u64s
}
for _, item := range itemList {
u64s = append(u64s, parseU64(item))
}
return u64s
case "u128":
u128s := make([]*big.Int, 0)
if items == "" {
return u128s
}
for _, item := range itemList {
u128s = append(u128s, parseU128(item))
}
return u128s
case "u256":
u256s := make([]*big.Int, 0)
if items == "" {
return u256s
}
for _, item := range itemList {
u256s = append(u256s, parseU256(item))
}
return u256s
case "uleb128":
uleb128s := make([]uint32, 0)
if items == "" {
return uleb128s
}
for _, item := range itemList {
uleb128s = append(uleb128s, parseU32(item))
}
return uleb128s
case "bytes":
bytesList := make([][]byte, 0)
if items == "" {
return bytesList
}
for _, item := range itemList {
bytesList = append(bytesList, parseHex(item))
}
return bytesList
case "string":
stringList := make([]string, 0)
if items == "" {
return stringList
}
for _, item := range itemList {
stringList = append(stringList, parseString(item))
}
return stringList
}
panic(fmt.Sprintf("unsupported given sequence item type %s", itemType))
}