Newer
Older
package genesis
import (
"bytes"
"encoding/hex"
"fmt"
"io/ioutil"
"os"
"path"
"testing"
stypes "github.com/eris-ltd/eris-db/manager/eris-mint/state/types"
ptypes "github.com/eris-ltd/eris-db/permission/types"
// XXX
//"github.com/eris-ltd/mint-client/Godeps/_workspace/src/github.com/eris-ltd/tendermint/types"
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
func MakeGenesisDocFromFile(genDocFile string) *stypes.GenesisDoc {
jsonBlob, err := ioutil.ReadFile(genDocFile)
if err != nil {
fmt.Sprintf("Couldn't read GenesisDoc file: %v", err)
os.Exit(1)
}
return stypes.GenesisDocFromJSON(jsonBlob)
}
type GenDoc struct {
pubkeys []string
amts []int
names []string
perms []int
setbits []int
}
var csv1 = GenDoc{
pubkeys: []string{"3D64963C2EE465AA3866DAF420FA1D35F54A1C2DDCF4524C587CD7295D961C09", "3D64963C2EE465AA3866DAF420FA1D35F54A1C2DDCF4524C587CD7295D961C10", "3D64963C2EE465AA3866DAF420FA1D35F54A1C2DDCF4524C587CD7295D961Cff", "3D64963C2EE465AA3866DAF420FA1D35F54A1C2DDCF4524C587CD7295D961Cab"},
amts: []int{10, 100, 1000, 100000},
names: []string{"", "ok", "hi", "hm"},
perms: []int{1, 2, 128, 130},
setbits: []int{1, 2, 128, 131},
}
var csv2 = GenDoc{
pubkeys: []string{"3D64963C2EE465AA3866DAF420FA1D35F54A1C2DDCF4524C587CD7295D961C09", "3D64963C2EE465AA3866DAF420FA1D35F54A1C2DDCF4524C587CD7295D961C10", "3D64963C2EE465AA3866DAF420FA1D35F54A1C2DDCF4524C587CD7295D961Cff", "3D64963C2EE465AA3866DAF420FA1D35F54A1C2DDCF4524C587CD7295D961Cab"},
amts: nil,
names: nil,
perms: nil,
setbits: nil,
}
func csv1String() string {
buf := new(bytes.Buffer)
for i, pub := range csv1.pubkeys {
buf.WriteString(fmt.Sprintf("%s,%d,%s,%d,%d\n", pub, csv1.amts[i], csv1.names[i], csv1.perms[i], csv1.setbits[i]))
}
}
func csv2String() string {
buf := new(bytes.Buffer)
for _, pub := range csv2.pubkeys {
buf.WriteString(fmt.Sprintf("%s,\n", pub))
}
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
}
func testKnownCSV(csvFile string, csv GenDoc) error {
chainID := "test_chainID"
if err := ioutil.WriteFile(path.Join(DirFlag, "accounts.csv"), []byte(csvFile), 0600); err != nil {
return err
}
genBytes, err := coreKnown(chainID, path.Join(DirFlag, "accounts.csv"), "")
if err != nil {
return err
}
if err := ioutil.WriteFile(path.Join(DirFlag, "genesis.json"), genBytes, 0600); err != nil {
return err
}
gDoc := MakeGenesisDocFromFile(path.Join(DirFlag, "genesis.json"))
N := len(csv.pubkeys)
if len(gDoc.Validators) != N {
return fmt.Errorf("Expected %d validators. Got %d", N, len(gDoc.Validators))
}
for i, pub := range csv.pubkeys {
pubBytes, _ := hex.DecodeString(pub)
if !bytes.Equal(gDoc.Validators[i].PubKey[:], pubBytes) {
return fmt.Errorf("failed to find validator %d:%X in genesis.json", i, pub)
}
if len(csv.amts) > 0 && gDoc.Accounts[i].Amount != int64(csv.amts[i]) {
return fmt.Errorf("amts dont match. got %d, expected %d", gDoc.Accounts[i].Amount, csv.amts[i])
}
if len(csv.perms) > 0 && gDoc.Accounts[i].Permissions.Base.Perms != ptypes.PermFlag(csv.perms[i]) {
return fmt.Errorf("perms dont match. got %d, expected %d", gDoc.Accounts[i].Permissions.Base.Perms, csv.perms[i])
}
if len(csv.setbits) > 0 && gDoc.Accounts[i].Permissions.Base.SetBit != ptypes.PermFlag(csv.setbits[i]) {
return fmt.Errorf("setbits dont match. got %d, expected %d", gDoc.Accounts[i].Permissions.Base.SetBit, csv.setbits[i])
}
}
return nil
}
func TestKnownCSV(t *testing.T) {
// make temp dir
dir, err := ioutil.TempDir(os.TempDir(), "mintgen-test")
if err != nil {
t.Fatal(err)
}
defer func() {
//cleanup
os.RemoveAll(DirFlag)
if err != nil {
t.Fatal(err)
}
}()
DirFlag = dir
if err = testKnownCSV(csv1String(), csv1); err != nil {
return
}
if err = testKnownCSV(csv2String(), csv2); err != nil {
return
}
}