-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathproof_data_test.go
98 lines (88 loc) · 2 KB
/
proof_data_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
package ics23
import (
"encoding/json"
"os"
"path/filepath"
"testing"
)
type ExistenceProofTestStruct struct {
Proof *ExistenceProof
IsErr bool
Expected []byte
}
func ExistenceProofTestData(tb testing.TB) map[string]ExistenceProofTestStruct {
tb.Helper()
fname := filepath.Join("..", "testdata", "TestExistenceProofData.json")
ffile, err := os.Open(fname)
if err != nil {
tb.Fatal(err)
}
var cases map[string]ExistenceProofTestStruct
jsonDecoder := json.NewDecoder(ffile)
err = jsonDecoder.Decode(&cases)
if err != nil {
tb.Fatal(err)
}
return cases
}
type CheckLeafTestStruct struct {
Leaf *LeafOp
Spec *LeafOp
IsErr bool
}
func CheckLeafTestData(tb testing.TB) map[string]CheckLeafTestStruct {
tb.Helper()
fname := filepath.Join("..", "testdata", "TestCheckLeafData.json")
ffile, err := os.Open(fname)
if err != nil {
tb.Fatal(err)
}
var cases map[string]CheckLeafTestStruct
jsonDecoder := json.NewDecoder(ffile)
err = jsonDecoder.Decode(&cases)
if err != nil {
tb.Fatal(err)
}
return cases
}
type CheckAgainstSpecTestStruct struct {
Proof *ExistenceProof
Spec *ProofSpec
Err string
}
func CheckAgainstSpecTestData(tb testing.TB) map[string]CheckAgainstSpecTestStruct {
tb.Helper()
fname := filepath.Join("..", "testdata", "TestCheckAgainstSpecData.json")
ffile, err := os.Open(fname)
if err != nil {
tb.Fatal(err)
}
var cases map[string]CheckAgainstSpecTestStruct
jsonDecoder := json.NewDecoder(ffile)
err = jsonDecoder.Decode(&cases)
if err != nil {
tb.Fatal(err)
}
return cases
}
type EmptyBranchTestStruct struct {
Op *InnerOp
Spec *ProofSpec
IsLeft bool
IsRight bool
}
func EmptyBranchTestData(tb testing.TB) []EmptyBranchTestStruct {
tb.Helper()
fname := filepath.Join("..", "testdata", "TestEmptyBranchData.json")
ffile, err := os.Open(fname)
if err != nil {
tb.Fatal(err)
}
var cases []EmptyBranchTestStruct
jsonDecoder := json.NewDecoder(ffile)
err = jsonDecoder.Decode(&cases)
if err != nil {
tb.Fatal(err)
}
return cases
}