-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathchain_test.go
270 lines (199 loc) · 5.51 KB
/
chain_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
/**
* @copyright defined in eosgo-client/LICENSE.txt
* @author Romain Pellerin - [email protected]
*
* Donation appreciated :)
* EOS wallet: 0x8d39307d9a0687c894058115365f6ad0f03b9ff9
* ETH wallet: 0x317b60152f0a90c10cea52d751ccb4dfad2fe9e7
* BTC wallet: 3HdFx8C3WNA6RyyGYKygECGbLD1BxyeqTN
* BCH wallet: 14e9fnmcHSZxxd3fnrkaG6EYph9JuWcF9T
*/
package rpc
import (
"testing"
"github.com/stretchr/testify/assert"
"fmt"
"os"
"eosgo-client/common"
"eosgo-client/model"
)
func TChainConfig() {
path := os.Getenv("EOSGO_PATH")
confFile := os.Getenv("EOSGO_CONF")
uri := path + "/" + confFile + ".conf"
if path == "" {
panic("env var EOSGO_PATH not found")
}
if confFile == "" {
panic("env var EOSGO_CONF not found")
}
fmt.Println("loading config file: " + uri)
// load config file
file, _ := os.Open(uri)
common.ConfigInit(file)
// init common logger
common.LoggerInit("debug")
}
func TestChainGetInfo(t *testing.T) {
if common.Config.API_URL == "" {
TChainConfig()
}
//right call
chainInfo, err := ChainGetInfo()
fmt.Println("err: ", err)
assert.Nil(t, err, "test get error")
//fmt.Println("getInfo: ", *getInfo)
assert.NotNil(t, chainInfo, "test getInfo, should not be nil")
fmt.Println("getInfo.HeadBlockID: ", chainInfo)
}
func TestChainGetBlock(t *testing.T) {
if common.Config.API_URL == "" {
TChainConfig()
}
//right call
block, err := ChainGetBlock("1")
fmt.Println("err: ", err)
assert.Nil(t, err, "test get error")
//fmt.Println("block: ", *block)
assert.NotNil(t, block, "test block, should not be nil")
fmt.Println("block: ", block)
}
// this require to create eosio account
func TestChainGetAccount(t *testing.T) {
if common.Config.API_URL == "" {
TChainConfig()
}
//right call
account, err := ChainGetAccount(common.Config.NODE_PRODUCER_NAME)
fmt.Println("err: ", err)
assert.Nil(t, err, "test get error")
//fmt.Println("account: ", *account)
assert.NotNil(t, account, "test account, should not be nil")
fmt.Println("account.Name: ", account.Name)
}
// this require to create eosio account
func TestChainGetCode(t *testing.T) {
if common.Config.API_URL == "" {
TChainConfig()
}
//right call
code, err := ChainGetCode(common.Config.NODE_PRODUCER_NAME)
fmt.Println("err: ", err)
assert.Nil(t, err, "test get error")
//fmt.Println("code: ", *code)
assert.NotNil(t, code, "test account, should not be nil")
fmt.Println("code.CodeHash: ", code.CodeHash)
}
// TODO: try with another contract than currency which is kind of managed in another way by nodeos
// this require to create eosio account
func TestChainGetTableRows(t *testing.T) {
if common.Config.API_URL == "" {
TChainConfig()
}
//right call
tableRows, err := ChainGetTableRows(common.Config.NODE_PRODUCER_NAME, common.Config.NODE_PRODUCER_NAME, "accounts", true, -1, -1, -1)
fmt.Println("err: ", err)
assert.Nil(t, err, "test get error")
if tableRows != nil {
//fmt.Println("tableRows: ", *tableRows)
assert.NotNil(t, tableRows, "test tableRows, should not be nil")
fmt.Println("nb tableRows rows: ", len(tableRows.Rows))
}
}
func TestChainAbi(t *testing.T) {
if common.Config.API_URL == "" {
TChainConfig()
}
abiJSON := model.AbiJSON{
common.Config.NODE_PRODUCER_NAME,
"issue",
map[string]interface{}{"to": common.ToolsAccountGenerateName("eosgoeosgo"), "quantity": "2.0001 EOS", "memo": "just a coin"},
}
//right call
abi, err := ChainAbiJSONToBin(&abiJSON)
fmt.Println("err: ", err)
assert.Nil(t, err, "test get error")
if abi != nil {
//fmt.Println("abiBin: ", *abiBin)
assert.NotNil(t, abi, "test tableRows, should not be nil")
fmt.Println("nb abiBin.Binargs: ", len(abi.Binargs))
// save then reinit args
args := abiJSON.Args
abiJSON.Args = map[string]interface{}{}
abiBin := model.AbiBin{
abi.Binargs,
[]interface{}{},
[]interface{}{},
}
abi := model.Abi{
abiJSON,
abiBin,
}
abiResult, err := ChainAbiBinToJSON(&abi)
fmt.Println("err: ", err)
assert.Nil(t, err, "test get error")
assert.Equal(t, args["to"], abiResult.Args["to"], "test saved and retrieved to")
}
}
func TestChainPushTransaction(t *testing.T) {
if common.Config.API_URL == "" {
TChainConfig()
}
account := common.ToolsAccountGenerateName("eosgo")
fmt.Println("account name generated: " + account)
_, err := ContractNewAccount(common.Config.NODE_PRODUCER_NAME, account, common.Config.NODE_PUB_KEY, "", "")
if err != nil {
fmt.Println("err: ", err)
t.FailNow()
}
auth := model.Authorization{
common.Config.NODE_PRODUCER_NAME,
"active",
}
action := model.Action{
common.Config.NODE_PRODUCER_NAME,
common.Config.NODE_PRODUCER_NAME,
"issue",
[]string{common.Config.NODE_PRODUCER_NAME, account},
[]model.Authorization{auth},
"",
map[string]interface{}{"to": account, "quantity": "2.0001 EOS", "memo": "just 2 coins"},
}
trx := model.Transaction{
0,
0,
0,
"",
[]string{},
[]string{},
[]model.Action{action},
[]string{},
[]model.Authorization{auth},
"",
0,
0,
0,
"",
"none",
[]map[string]interface{}{},
0,
0,
[]model.Action{},
}
//right call
trxPushed, err := ChainPushTransaction(trx, []string{common.Config.NODE_PUB_KEY}, "")
// check required keys
if err != nil {
fmt.Println("err: ", err)
}
assert.Nil(t, err, "test get error")
if trxPushed != nil {
assert.NotEqual(t, "", trxPushed.ID, "id should not be empty")
fmt.Println("transaction id: ", trxPushed.ID)
}
keys, err := ChainGetRequiredKeys(trxPushed)
if err != nil {
fmt.Println("err: ", err)
}
fmt.Println("required keys:", keys)
}