-
Notifications
You must be signed in to change notification settings - Fork 1
/
XCASH-api-tools-go_test.go
416 lines (369 loc) · 13.6 KB
/
XCASH-api-tools-go_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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
package xcash
import (
"testing"
"time"
)
func TestInitialize(t *testing.T) {
Initialize("us1.xcash.foundation:18281","us1.xcash.foundation:18289")
time.Sleep(5 * time.Second)
}
func TestBlockchain_get_block_count(t *testing.T) {
got,error := Blockchain_get_block_count()
if got == nil && error == nil {
t.Errorf("Blockchain_get_block_count has had an error")
}
if got == nil && error != nil {
t.Errorf("Blockchain_get_block_count has had an error. %s",error.Error.Message)
}
time.Sleep(5 * time.Second)
}
func TestBlockchain_get_block_hash(t *testing.T) {
got,error := Blockchain_get_block_hash(800000)
if got == nil && error == nil {
t.Errorf("Blockchain_get_block_hash has had an error")
}
if got == nil && error != nil {
t.Errorf("Blockchain_get_block_hash has had an error. %s",error.Error.Message)
}
time.Sleep(5 * time.Second)
}
func TestBlockchain_get_block_template(t *testing.T) {
got,error := Blockchain_get_block_template("XCA1XPzaSeXgwrBrGbh96UD5bk21a4WabcrgtB14A7WGGdcagjVQVV1PMAg5Rj1SM3ca8ZPDvysi78HyZF9imGg48wRK2Ntqov",128)
if got == nil && error == nil {
t.Errorf("Blockchain_get_block_template has had an error")
}
if got == nil && error != nil {
t.Errorf("Blockchain_get_block_template has had an error. %s",error.Error.Message)
}
time.Sleep(5 * time.Second)
}
func TestBlockchain_get_last_block_header(t *testing.T) {
got,error := Blockchain_get_last_block_header()
if got == nil && error == nil {
t.Errorf("Blockchain_get_last_block_header has had an error")
}
if got == nil && error != nil {
t.Errorf("Blockchain_get_last_block_header has had an error. %s",error.Error.Message)
}
time.Sleep(5 * time.Second)
}
func TestBlockchain_get_block_header_by_hash(t *testing.T) {
got,error := Blockchain_get_block_header_by_hash("008b8147114089e9577be0644c67a28d5227f4701e345280567c589256fcd4cc")
if got == nil && error == nil {
t.Errorf("Blockchain_get_block_header_by_hash has had an error")
}
if got == nil && error != nil {
t.Errorf("Blockchain_get_block_header_by_hash has had an error. %s",error.Error.Message)
}
time.Sleep(5 * time.Second)
}
func TestBlockchain_get_block_header_by_height(t *testing.T) {
got,error := Blockchain_get_block_header_by_height(800000)
if got == nil && error == nil {
t.Errorf("Blockchain_get_block_header_by_height has had an error")
}
if got == nil && error != nil {
t.Errorf("Blockchain_get_block_header_by_height has had an error. %s",error.Error.Message)
}
time.Sleep(5 * time.Second)
}
func TestBlockchain_get_block_headers_range(t *testing.T) {
got,error := Blockchain_get_block_headers_range(800000,800002)
if got == nil && error == nil {
t.Errorf("Blockchain_get_block_headers_range has had an error")
}
if got == nil && error != nil {
t.Errorf("Blockchain_get_block_headers_range has had an error. %s",error.Error.Message)
}
time.Sleep(5 * time.Second)
}
func TestBlockchain_get_block(t *testing.T) {
got,error := Blockchain_get_block(800000)
if got == nil && error == nil {
t.Errorf("Blockchain_get_block has had an error")
}
if got == nil && error != nil {
t.Errorf("Blockchain_get_block has had an error. %s",error.Error.Message)
}
time.Sleep(5 * time.Second)
}
func TestBlockchain_get_info(t *testing.T) {
got,error := Blockchain_get_info()
if got == nil && error == nil {
t.Errorf("Blockchain_get_info has had an error")
}
if got == nil && error != nil {
t.Errorf("Blockchain_get_info has had an error. %s",error.Error.Message)
}
time.Sleep(5 * time.Second)
}
func TestBlockchain_hard_fork_info(t *testing.T) {
got,error := Blockchain_hard_fork_info()
if got == nil && error == nil {
t.Errorf("Blockchain_hard_fork_info has had an error")
}
if got == nil && error != nil {
t.Errorf("Blockchain_hard_fork_info has had an error. %s",error.Error.Message)
}
time.Sleep(5 * time.Second)
}
func TestBlockchain_version(t *testing.T) {
got,error := Blockchain_version()
if got == nil && error == nil {
t.Errorf("Blockchain_version has had an error")
}
if got == nil && error != nil {
t.Errorf("Blockchain_version has had an error. %s",error.Error.Message)
}
time.Sleep(5 * time.Second)
}
func TestBlockchain_get_tx(t *testing.T) {
got,error := Blockchain_get_tx("18a5046994bec4e75d46fd17de3315592aa69d11f4b1a530717ea45a01d49312")
if got == nil && error == nil {
t.Errorf("Blockchain_get_tx has had an error")
}
if got == nil && error != nil {
t.Errorf("Blockchain_get_tx has had an error. %s",error.Error.Message)
}
time.Sleep(5 * time.Second)
}
func TestBlockchain_get_balance(t *testing.T) {
got,error := Blockchain_get_balance()
if got == nil && error == nil {
t.Errorf("Blockchain_get_balance has had an error")
}
if got == nil && error != nil {
t.Errorf("Blockchain_get_balance has had an error. %s",error.Error.Message)
}
time.Sleep(5 * time.Second)
}
func TestBlockchain_get_address(t *testing.T) {
got,error := Blockchain_get_address()
if got == nil && error == nil {
t.Errorf("Blockchain_get_address has had an error")
}
if got == nil && error != nil {
t.Errorf("Blockchain_get_address has had an error. %s",error.Error.Message)
}
time.Sleep(5 * time.Second)
}
func TestBlockchain_get_height(t *testing.T) {
got,error := Blockchain_get_height()
if got == nil && error == nil {
t.Errorf("Blockchain_get_height has had an error")
}
if got == nil && error != nil {
t.Errorf("Blockchain_get_height has had an error. %s",error.Error.Message)
}
time.Sleep(5 * time.Second)
}
func TestAPI_Blockchain_stats(t *testing.T) {
got := API_Blockchain_stats()
if got == nil {
t.Errorf("API_Blockchain_stats has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_Blockchain_block_data(t *testing.T) {
got := API_Blockchain_block_data(800000)
if got == nil {
t.Errorf("API_Blockchain_block_data has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_Blockchain_tx_data(t *testing.T) {
got := API_Blockchain_tx_data("18a5046994bec4e75d46fd17de3315592aa69d11f4b1a530717ea45a01d49312")
if got == nil {
t.Errorf("API_Blockchain_tx_data has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_Blockchain_prove_tx(t *testing.T) {
got := API_Blockchain_prove_tx("18a5046994bec4e75d46fd17de3315592aa69d11f4b1a530717ea45a01d49312","XCA1cH8Qs5hLYnzQTDuJqkJiQEZbgQsUM3BgA6vBod5T5Eindas5sikKJaLbkhM3YBW7PtoJY6BtNLkZuahksLFX5eSPDcmCLL","c10a439b706949e86146ca17c2fc41e24e4348d6b7a6d6af0623cfc5037fe20c")
if got == nil {
t.Errorf("API_Blockchain_prove_tx has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_Blockchain_prove_balance(t *testing.T) {
got := API_Blockchain_prove_balance("XCA1a9usG2UKajV1Dqzp8fL1BbN3hzuaaJMYjCo7qDoC4C3Vvc5owiLAqKbVw2cRbwRqx3mgrau1Z7LkX6cxR2NC4ZmFBLe2Mf","ReserveProofV1a15005880f5f88b19fc88bdec29faaf57489ba85dd02d41ec87043a5eddf95a9")
if got == nil {
t.Errorf("API_Blockchain_prove_balance has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_Blockchain_tx_history(t *testing.T) {
got := API_Blockchain_tx_history("sender","XCA1kzoR3ZLNg5zxNmxrY8FYKtgEvPZqC2xoRpm1axCpQcrrZfoKTSkSNsASDspdt3j1WcEnQJyuuB5VPSB56WWy36A4sQtQhe")
if got == nil {
t.Errorf("API_Blockchain_tx_history has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_Blockchain_validate_address(t *testing.T) {
got := API_Blockchain_validate_address("XCA1a9usG2UKajV1Dqzp8fL1BbN3hzuaaJMYjCo7qDoC4C3Vvc5owiLAqKbVw2cRbwRqx3mgrau1Z7LkX6cxR2NC4ZmFBLe2Mf")
if got == nil {
t.Errorf("API_Blockchain_validate_address has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_Blockchain_create_integrated_address(t *testing.T) {
got := API_Blockchain_create_integrated_address("XCA1a9usG2UKajV1Dqzp8fL1BbN3hzuaaJMYjCo7qDoC4C3Vvc5owiLAqKbVw2cRbwRqx3mgrau1Z7LkX6cxR2NC4ZmFBLe2Mf","")
if got == nil {
t.Errorf("API_Blockchain_create_integrated_address has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_DPOPS_stats(t *testing.T) {
got := API_DPOPS_stats()
if got == nil {
t.Errorf("API_DPOPS_stats has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_DPOPS_registered_delegates(t *testing.T) {
got := API_DPOPS_registered_delegates()
if got == nil {
t.Errorf("API_DPOPS_registered_delegates has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_DPOPS_online_delegates(t *testing.T) {
got := API_DPOPS_online_delegates()
if got == nil {
t.Errorf("API_DPOPS_online_delegates has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_DPOPS_active_delegates(t *testing.T) {
got := API_DPOPS_active_delegates()
if got == nil {
t.Errorf("API_DPOPS_active_delegates has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_DPOPS_delegate(t *testing.T) {
got := API_DPOPS_delegate("us1_xcash_foundation")
if got == nil {
t.Errorf("API_DPOPS_delegate has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_DPOPS_delegate_round_stats(t *testing.T) {
got := API_DPOPS_delegate_round_stats("us1_xcash_foundation")
if got == nil {
t.Errorf("API_DPOPS_delegates_votes has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_DPOPS_delegates_votes(t *testing.T) {
got := API_DPOPS_delegates_votes("us1_xcash_foundation",1,2)
if got == nil {
t.Errorf("API_Blockchain_create_integrated_address has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_DPOPS_vote_detail(t *testing.T) {
got := API_DPOPS_vote_detail("XCA1a9usG2UKajV1Dqzp8fL1BbN3hzuaaJMYjCo7qDoC4C3Vvc5owiLAqKbVw2cRbwRqx3mgrau1Z7LkX6cxR2NC4ZmFBLe2Mf")
if got == nil {
t.Errorf("API_DPOPS_vote_detail has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_DPOPS_round_detail(t *testing.T) {
got := API_DPOPS_round_detail(810000)
if got == nil {
t.Errorf("API_DPOPS_round_detail has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_DPOPS_last_block_producer(t *testing.T) {
got := API_DPOPS_last_block_producer()
if got == nil {
t.Errorf("API_DPOPS_last_block_producer has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_Namespace_stats(t *testing.T) {
got := API_Namespace_stats()
if got == nil {
t.Errorf("API_Namespace_stats has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_Namespace_registered_delegates(t *testing.T) {
got := API_Namespace_registered_delegates()
if got == nil {
t.Errorf("API_Namespace_registered_delegates has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_Namespace_delegates(t *testing.T) {
got := API_Namespace_delegates("us1_xcash_foundation")
if got == nil {
t.Errorf("API_Namespace_delegates has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_Namespace_names(t *testing.T) {
got := API_Namespace_names("xcash")
if got == nil {
t.Errorf("API_Namespace_names has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_Namespace_name_status(t *testing.T) {
got := API_Namespace_name_status("xcash")
if got == nil {
t.Errorf("API_Namespace_name_status has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_Namespace_address_status(t *testing.T) {
got := API_Namespace_address_status("XCA1a9usG2UKajV1Dqzp8fL1BbN3hzuaaJMYjCo7qDoC4C3Vvc5owiLAqKbVw2cRbwRqx3mgrau1Z7LkX6cxR2NC4ZmFBLe2Mf")
if got == nil {
t.Errorf("API_Namespace_address_status has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_Namespace_name_to_address(t *testing.T) {
got := API_Namespace_name_to_address("xcash")
if got == nil {
t.Errorf("API_Namespace_name_to_address has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_Namespace_address_to_name(t *testing.T) {
got := API_Namespace_address_to_name("XCA1a9usG2UKajV1Dqzp8fL1BbN3hzuaaJMYjCo7qDoC4C3Vvc5owiLAqKbVw2cRbwRqx3mgrau1Z7LkX6cxR2NC4ZmFBLe2Mf")
if got == nil {
t.Errorf("API_Namespace_address_to_name has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_Xpayment_Twitter_stats(t *testing.T) {
got := API_Xpayment_Twitter_stats()
if got == nil {
t.Errorf("API_Xpayment_Twitter_stats has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_Xpayment_Twitter_stats_per_day(t *testing.T) {
got := API_Xpayment_Twitter_stats_per_day(1,2)
if got == nil {
t.Errorf("API_Xpayment_Twitter_stats_per_day has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_Xpayment_Twitter_top_stats(t *testing.T) {
got := API_Xpayment_Twitter_top_stats(10)
if got == nil {
t.Errorf("API_Xpayment_Twitter_top_stats has had an error")
}
time.Sleep(5 * time.Second)
}
func TestAPI_Xpayment_Twitter_recent_tips(t *testing.T) {
got := API_Xpayment_Twitter_recent_tips(10,"First","All")
if got == nil {
t.Errorf("API_Xpayment_Twitter_recent_tips has had an error")
}
time.Sleep(5 * time.Second)
}