123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270 |
- package gotest
- import (
- "crypto/sha1"
- "encoding/hex"
- "fmt"
- "io/ioutil"
- "net/http"
- "strings"
- "testing"
- "time"
- //"lite"/*local test need*/
- )
- func Test_newaddr(t *testing.T) {
- client := http.DefaultClient
- geturl := fmt.Sprintf(`http://localhost:15741/coinproxy/createaddr`)
- timestamp := fmt.Sprintf("%v", time.Now().Unix())
- t.Logf("post url:%v", geturl)
- //var b []byte
- postdata := fmt.Sprintf(`{"cointype":"BTC","timestamp":"%v","signature":"%v"}`, timestamp, Signature([]byte("/coinproxy/createaddr"), timestamp))
- request, err := http.NewRequest("POST", geturl, strings.NewReader(postdata))
- if err != nil {
- t.Errorf("err:%s", err.Error())
- return
- }
- resp, err := client.Do(request)
- if err != nil {
- t.Errorf("err:%s", err.Error())
- return
- }
- defer resp.Body.Close()
- rbs, err := ioutil.ReadAll(resp.Body)
- if err != nil {
- t.Errorf("err:%s", err.Error())
- return
- }
- t.Logf("read bytes:%v", string(rbs))
- return
- }
- func Test_Balance(t *testing.T) {
- client := http.DefaultClient
- geturl := fmt.Sprintf(`http://localhost:15741/coinproxy/coinbalance`)
- timestamp := fmt.Sprintf("%v", time.Now().Unix())
- t.Logf("post url:%v", geturl)
- //var b []byte
- postdata := fmt.Sprintf(`{"cointype":"BTC","timestamp":"%v","signature":"%v"}`, timestamp, Signature([]byte("/coinproxy/coinbalance"), timestamp))
- request, err := http.NewRequest("POST", geturl, strings.NewReader(postdata))
- if err != nil {
- t.Errorf("err:%s", err.Error())
- return
- }
- resp, err := client.Do(request)
- if err != nil {
- t.Errorf("err:%s", err.Error())
- return
- }
- defer resp.Body.Close()
- rbs, err := ioutil.ReadAll(resp.Body)
- if err != nil {
- t.Errorf("err:%s", err.Error())
- return
- }
- t.Logf("read bytes:%v", string(rbs))
- return
- }
- func Test_TransInfo(t *testing.T) {
- //first get block height then test transinfo
- client := http.DefaultClient
- geturl := fmt.Sprintf(`http://localhost:15741/coinproxy/query/transinfo`)
- timestamp := fmt.Sprintf("%v", time.Now().Unix())
- t.Logf("post url:%v", geturl)
- //var b []byte
- postdata := fmt.Sprintf(`{"cointype":"BTC","starth":486116,"endh":486124,"timestamp":"%v","signature":"%v"}`, timestamp, Signature([]byte("/coinproxy/query/transinfo"), timestamp))
- request, err := http.NewRequest("POST", geturl, strings.NewReader(postdata))
- if err != nil {
- t.Errorf("err:%s", err.Error())
- return
- }
- resp, err := client.Do(request)
- if err != nil {
- t.Errorf("err:%s", err.Error())
- return
- }
- defer resp.Body.Close()
- rbs, err := ioutil.ReadAll(resp.Body)
- if err != nil {
- t.Errorf("err:%s", err.Error())
- return
- }
- t.Logf("read bytes:%v", string(rbs))
- return
- }
- /*
- func Test_TransferAccounts(t *testing.T) {
- client := http.DefaultClient
- geturl := fmt.Sprintf(`http://localhost:15741/coinproxy/sendcoins`)
- timestamp := fmt.Sprintf("%v", time.Now().Unix())
- t.Logf("post url:%v", geturl)
- //var b []byte
- postdata := fmt.Sprintf(`{"cointype":"BTC","amount":"0.5","address":"Lg7zNKVUfEJeeCJ5oDMgVS9s2afCQKxrCr","timestamp":"%v","signature":"%v"}`, timestamp, Signature([]byte ("/coinproxy/sendcoins"), timestamp))
- request, err := http.NewRequest("POST", geturl, strings.NewReader(postdata))
- if err != nil {
- t.Errorf("err:%s", err.Error())
- return
- }
- resp, err := client.Do(request)
- if err != nil {
- t.Errorf("err:%s", err.Error())
- return
- }
- defer resp.Body.Close()
- rbs, err := ioutil.ReadAll(resp.Body)
- if err != nil {
- t.Errorf("err:%s", err.Error())
- return
- }
- t.Logf("read bytes:%v", string(rbs))
- return
- }
- */
- func Test_ChainHeight(t *testing.T) {
- client := http.DefaultClient
- geturl := fmt.Sprintf(`http://118.31.213.53:6784/coinproxy/blockchain/height`)
- //geturl := fmt.Sprintf(`http://localhost:15741/coinproxy/blockchain/height`)
- timestamp := fmt.Sprintf("%v", time.Now().Unix())
- t.Logf("post url:%v", geturl)
- //var b []byte
- postdata := fmt.Sprintf(`{"cointype":"BTC","timestamp":"%v","signature":"%v"}`, timestamp, Signature([]byte("/coinproxy/blockchain/height"), timestamp))
- request, err := http.NewRequest("POST", geturl, strings.NewReader(postdata))
- if err != nil {
- t.Errorf("err:%s", err.Error())
- return
- }
- resp, err := client.Do(request)
- if err != nil {
- t.Errorf("err:%s", err.Error())
- return
- }
- defer resp.Body.Close()
- rbs, err := ioutil.ReadAll(resp.Body)
- if err != nil {
- t.Errorf("err:%s", err.Error())
- return
- }
- t.Logf("read bytes:%v", string(rbs))
- return
- }
- func Test_AccountsBalance(t *testing.T) {
- client := http.DefaultClient
- geturl := fmt.Sprintf(`http://118.31.213.53:6784/coinproxy/accountsbalance`)
- //geturl := fmt.Sprintf(`http://192.168.1.107:15741/coinproxy/accountsbalance`)
- timetamp := fmt.Sprintf("%v", time.Now().Unix())
- t.Logf("post url:%v", geturl)
- posdata := fmt.Sprintf(`{"cointype":"BTC","timestamp":"%v","signature":"%v"}`, timetamp, Signature([]byte("/coinproxy/accountsbalance"), timetamp))
- request, err := http.NewRequest("POST", geturl, strings.NewReader(posdata))
- if err != nil {
- t.Error("err:%s", err.Error())
- return
- }
- resp, err := client.Do(request)
- if err != nil {
- t.Errorf("err:%s", err.Error())
- return
- }
- defer resp.Body.Close()
- rbs, err := ioutil.ReadAll(resp.Body)
- if err != nil {
- t.Errorf("err:%s", err.Error())
- return
- }
- t.Logf("read bytes:%v", string(rbs))
- }
- /*func Test_ListUnspent(t *testing.T) {
- client := http.DefaultClient
- geturl := fmt.Sprintf(`http://118.31.212.137:6784/coinproxy/listunspent`)
- //geturl := fmt.Sprintf(`http://192.168.1.107:15741/coinproxy/listunspent`)
- timestamp := fmt.Sprintf("%v", time.Now().Unix())
- t.Logf("post url:%v", geturl)
- postdata := fmt.Sprintf(`{"cointype":"BTC","address":[],"timestamp":"%v","signature":"%v"}`, timestamp, Signature([]byte("/coinproxy/listunspent"), timestamp))
- request, err := http.NewRequest("POST", geturl, strings.NewReader(postdata))
- if err != nil {
- t.Errorf("err:%s", err.Error())
- return
- }
- resp, err := client.Do(request)
- if err != nil {
- t.Errorf("err:%s", err.Error())
- return
- }
- defer resp.Body.Close()
- rbs, err := ioutil.ReadAll(resp.Body)
- if err != nil {
- t.Errorf("err:%s", err.Error())
- return
- }
- t.Logf("read bytes:%v", string(rbs))
- return
- }
- func Test_SendRawTransaction(t *testing.T) {
- client := http.DefaultClient
- geturl := fmt.Sprintf(`http://localhost:15741/coinproxy/sendrawtransaction`)
- timestamp := fmt.Sprintf("%v", time.Now().Unix())
- t.Logf("post url:%v", geturl)
- //var b []byte
- postdata := fmt.Sprintf(`{"cointype":"BTC","data":"0100000002e7ca9a8950b6bb4b4f5bd2a57d85b6f328e818f5c401586a2dfbe6cdac22011b010000008a4730440220141d4bc8c50b93c13e083f00657688c59863d334051412b3bdeb489f0054a10f02204748ce85de1c16cc6a54ecd1a84ec442b50bb3e2e2826f293a34b1c1ad49632a0141048d4bceb2879580a9d0bcd897c4fe5cfdf490f93bea099785e6680e0c16372b91e124d22b12b40627d2cc098452d7cabbd0f0fb5079fc5c5062ccb4558aec830effffffff0c00ee71246819f7d9f5450151ef6bbdf681d00917cae9e6d3d63ff3fe0f97d9000000008b483045022100b8e2f91ead5eaf0b6c7eade504deb15eb22e531c547d34ffc86891ca1eac31a402202c31e5291541c9ec7a5752e404a7f1ccb6dee875b4c63c042a3388dbf74fb3c60141048d4bceb2879580a9d0bcd897c4fe5cfdf490f93bea099785e6680e0c16372b91e124d22b12b40627d2cc098452d7cabbd0f0fb5079fc5c5062ccb4558aec830effffffff02a08f3e00000000001976a914631134f74ce5f456d2256d29d64657cf3fc8a6c388acc05c1500000000001976a914a1de9978896cdf29aa844942d652d5705e3e2c5a88ac00000000","address":"","timestamp":"%v","signature":"%v"}`, timestamp, Signature([]byte("/coinproxy/sendrawtransaction"), timestamp))
- request, err := http.NewRequest("POST", geturl, strings.NewReader(postdata))
- if err != nil {
- t.Errorf("err:%s", err.Error())
- return
- }
- resp, err := client.Do(request)
- if err != nil {
- t.Errorf("err:%s", err.Error())
- return
- }
- defer resp.Body.Close()
- rbs, err := ioutil.ReadAll(resp.Body)
- if err != nil {
- t.Errorf("err:%s", err.Error())
- return
- }
- t.Logf("read bytes:%v", string(rbs))
- return
- }*/
- func Signature(body []byte, timestamp string) string {
- sha1Contain := sha1.New()
- byteSha1 := append(body, append([]byte(timestamp), []byte("coinsapi^&#@(*33")...)...)
- sha1Contain.Write(byteSha1)
- localSig := hex.EncodeToString(sha1Contain.Sum(nil))
- return localSig
- }
|