-
Notifications
You must be signed in to change notification settings - Fork 57
/
multihash_test.go
378 lines (326 loc) · 8.38 KB
/
multihash_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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
package multihash
import (
"bytes"
"encoding/binary"
"encoding/hex"
"fmt"
"strings"
"testing"
"github.com/multiformats/go-varint"
)
// maybe silly, but makes it so changing
// the table accidentally has to happen twice.
var tCodes = map[uint64]string{
0x00: "identity",
0x11: "sha1",
0x12: "sha2-256",
0x13: "sha2-512",
0x14: "sha3-512",
0x15: "sha3-384",
0x16: "sha3-256",
0x17: "sha3-224",
0x56: "dbl-sha2-256",
0x22: "murmur3-x64-64",
0x1A: "keccak-224",
0x1B: "keccak-256",
0x1C: "keccak-384",
0x1D: "keccak-512",
0x1E: "blake3",
0x18: "shake-128",
0x19: "shake-256",
0x1100: "x11",
0xd5: "md5",
0x1012: "sha2-256-trunc254-padded",
0xb401: "poseidon-bls12_381-a2-fc1",
}
type TestCase struct {
hex string
code uint64
name string
}
var testCases = []TestCase{
{"2c26b46b68ffc68ff99b453c1d30413413422d706483bfa0f98a5e886266e7ae", 0x00, "identity"},
{"", 0x00, "identity"},
{"0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a33", 0x11, "sha1"},
{"0beec7b5", 0x11, "sha1"},
{"2c26b46b68ffc68ff99b453c1d30413413422d706483bfa0f98a5e886266e7ae", 0x12, "sha2-256"},
{"2c26b46b", 0x12, "sha2-256"},
{"2c26b46b68ffc68ff99b453c1d30413413", 0xb240, "blake2b-512"},
{"243ddb9e", 0x22, "murmur3-x64-64"},
{"f00ba4", 0x1b, "keccak-256"},
{"f84e95cb5fbd2038863ab27d3cdeac295ad2d4ab96ad1f4b070c0bf36078ef08", 0x18, "shake-128"},
{"1af97f7818a28edfdfce5ec66dbdc7e871813816d7d585fe1f12475ded5b6502b7723b74e2ee36f2651a10a8eaca72aa9148c3c761aaceac8f6d6cc64381ed39", 0x19, "shake-256"},
{"4bca2b137edc580fe50a88983ef860ebaca36c857b1f492839d6d7392452a63c82cbebc68e3b70a2a1480b4bb5d437a7cba6ecf9d89f9ff3ccd14cd6146ea7e7", 0x14, "sha3-512"},
{"d41d8cd98f00b204e9800998ecf8427e", 0xd5, "md5"},
{"14fcb37dc45fa9a3c492557121bd4d461c0db40e5dcfcaa98498bd238486c307", 0x1012, "sha2-256-trunc254-padded"},
{"14fcb37dc45fa9a3c492557121bd4d461c0db40e5dcfcaa98498bd238486c307", 0xb401, "poseidon-bls12_381-a2-fc1"},
{"04e0bb39f30b1a3feb89f536c93be15055482df748674b00d26e5a75777702e9", 0x1e, "blake3"},
}
func (tc TestCase) Multihash() (Multihash, error) {
ob, err := hex.DecodeString(tc.hex)
if err != nil {
return nil, err
}
pre := make([]byte, 2*binary.MaxVarintLen64)
spot := pre
n := binary.PutUvarint(spot, tc.code)
spot = pre[n:]
n += binary.PutUvarint(spot, uint64(len(ob)))
nb := append(pre[:n], ob...)
return Cast(nb)
}
func TestEncode(t *testing.T) {
for _, tc := range testCases {
ob, err := hex.DecodeString(tc.hex)
if err != nil {
t.Error(err)
continue
}
pre := make([]byte, 2*binary.MaxVarintLen64)
spot := pre
n := binary.PutUvarint(spot, tc.code)
spot = pre[n:]
n += binary.PutUvarint(spot, uint64(len(ob)))
nb := append(pre[:n], ob...)
encC, err := Encode(ob, tc.code)
if err != nil {
t.Error(err)
continue
}
if !bytes.Equal(encC, nb) {
t.Error("encoded byte mismatch: ", encC, nb)
t.Error(hex.Dump(nb))
}
encN, err := EncodeName(ob, tc.name)
if err != nil {
t.Error(err)
continue
}
if !bytes.Equal(encN, nb) {
t.Error("encoded byte mismatch: ", encN, nb)
}
h, err := tc.Multihash()
if err != nil {
t.Error(err)
}
if !bytes.Equal(h, nb) {
t.Error("Multihash func mismatch.")
}
}
}
func ExampleEncodeName() {
// ignores errors for simplicity - don't do that at home.
buf, _ := hex.DecodeString("0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a33")
mhbuf, _ := EncodeName(buf, "sha1")
mhhex := hex.EncodeToString(mhbuf)
fmt.Printf("hex: %v\n", mhhex)
// Output:
// hex: 11140beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a33
}
func TestDecode(t *testing.T) {
for _, tc := range testCases {
ob, err := hex.DecodeString(tc.hex)
if err != nil {
t.Error(err)
continue
}
pre := make([]byte, 2*binary.MaxVarintLen64)
spot := pre
n := binary.PutUvarint(spot, tc.code)
spot = pre[n:]
n += binary.PutUvarint(spot, uint64(len(ob)))
nb := append(pre[:n], ob...)
mustNotAllocateMore(t, 0, func() {
dec, err := Decode(nb)
if err != nil {
t.Error(err)
return
}
if dec.Code != tc.code {
t.Error("decoded code mismatch: ", dec.Code, tc.code)
}
if dec.Name != tc.name {
t.Error("decoded name mismatch: ", dec.Name, tc.name)
}
if dec.Length != len(ob) {
t.Error("decoded length mismatch: ", dec.Length, len(ob))
}
if !bytes.Equal(dec.Digest, ob) {
t.Error("decoded byte mismatch: ", dec.Digest, ob)
}
})
}
}
func TestTable(t *testing.T) {
for k, v := range tCodes {
if Codes[k] != v {
t.Error("Table mismatch: ", Codes[k], v)
}
if Names[v] != k {
t.Error("Table mismatch: ", Names[v], k)
}
}
for name, code := range Names {
if tCodes[code] != name {
if strings.HasPrefix(name, "blake") {
// skip these
continue
}
if name == "sha3" {
// tested as "sha3-512"
continue
}
t.Error("missing test case for: ", name)
}
}
for code, name := range Codes {
if tCodes[code] != name {
if strings.HasPrefix(name, "blake") {
// skip these
continue
}
if name == "sha3" {
// tested as "sha3-512"
continue
}
t.Error("missing test case for: ", name)
}
}
}
func ExampleDecode() {
// ignores errors for simplicity - don't do that at home.
buf, _ := hex.DecodeString("0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a33")
mhbuf, _ := EncodeName(buf, "sha1")
o, _ := Decode(mhbuf)
mhhex := hex.EncodeToString(o.Digest)
fmt.Printf("obj: %v 0x%x %d %s\n", o.Name, o.Code, o.Length, mhhex)
// Output:
// obj: sha1 0x11 20 0beec7b5ea3f0fdbc95d0dd47f3c5bc275da8a33
}
func TestCast(t *testing.T) {
for _, tc := range testCases {
ob, err := hex.DecodeString(tc.hex)
if err != nil {
t.Error(err)
continue
}
pre := make([]byte, 2*binary.MaxVarintLen64)
spot := pre
n := binary.PutUvarint(spot, tc.code)
spot = pre[n:]
n += binary.PutUvarint(spot, uint64(len(ob)))
nb := append(pre[:n], ob...)
mustNotAllocateMore(t, 0, func() {
if _, err := Cast(nb); err != nil {
t.Error(err)
return
}
})
// 1 for the error object.
mustNotAllocateMore(t, 1, func() {
if _, err = Cast(ob); err == nil {
t.Error("cast failed to detect non-multihash")
return
}
})
}
}
func TestHex(t *testing.T) {
for _, tc := range testCases {
ob, err := hex.DecodeString(tc.hex)
if err != nil {
t.Error(err)
continue
}
pre := make([]byte, 2*binary.MaxVarintLen64)
spot := pre
n := binary.PutUvarint(spot, tc.code)
spot = pre[n:]
n += binary.PutUvarint(spot, uint64(len(ob)))
nb := append(pre[:n], ob...)
hs := hex.EncodeToString(nb)
mh, err := FromHexString(hs)
if err != nil {
t.Error(err)
continue
}
if !bytes.Equal(mh, nb) {
t.Error("FromHexString failed", nb, mh)
continue
}
if mh.HexString() != hs {
t.Error("Multihash.HexString failed", hs, mh.HexString())
continue
}
}
}
func TestDecodeErrorInvalid(t *testing.T) {
_, err := FromB58String("/ipfs/QmQTw94j68Dgakgtfd45bG3TZG6CAfc427UVRH4mugg4q4")
if err != ErrInvalidMultihash {
t.Fatalf("expected: %s, got %s\n", ErrInvalidMultihash, err)
}
}
func TestBadVarint(t *testing.T) {
_, err := Cast([]byte{129, 128, 128, 128, 128, 128, 128, 128, 128, 128, 129, 1})
if err != varint.ErrOverflow {
t.Error("expected error from varint longer than 64bits, got: ", err)
}
_, err = Cast([]byte{129, 128, 128})
if err != varint.ErrUnderflow {
t.Error("expected error from cut-off varint, got: ", err)
}
_, err = Cast([]byte{129, 0})
if err != varint.ErrNotMinimal {
t.Error("expected error non-minimal varint, got: ", err)
}
_, err = Cast([]byte{128, 0})
if err != varint.ErrNotMinimal {
t.Error("expected error non-minimal varint, got: ", err)
}
}
func BenchmarkEncode(b *testing.B) {
tc := testCases[0]
ob, err := hex.DecodeString(tc.hex)
if err != nil {
b.Error(err)
return
}
b.ResetTimer()
for i := 0; i < b.N; i++ {
Encode(ob, tc.code)
}
}
func BenchmarkDecode(b *testing.B) {
tc := testCases[0]
ob, err := hex.DecodeString(tc.hex)
if err != nil {
b.Error(err)
return
}
pre := make([]byte, 2)
pre[0] = byte(uint8(tc.code))
pre[1] = byte(uint8(len(ob)))
nb := append(pre, ob...)
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
Decode(nb)
}
}
func BenchmarkCast(b *testing.B) {
tc := testCases[0]
ob, err := hex.DecodeString(tc.hex)
if err != nil {
b.Error(err)
return
}
pre := make([]byte, 2)
pre[0] = byte(uint8(tc.code))
pre[1] = byte(uint8(len(ob)))
nb := append(pre, ob...)
b.ReportAllocs()
b.ResetTimer()
for i := 0; i < b.N; i++ {
Cast(nb)
}
}