Newer
Older
package mock
// Basic imports
import (
"bytes"
// edb "github.com/eris-ltd/erisdb/erisdb"
"github.com/eris-ltd/eris-db/Godeps/_workspace/src/github.com/gin-gonic/gin"
"github.com/eris-ltd/eris-db/Godeps/_workspace/src/github.com/stretchr/testify/suite"
"github.com/eris-ltd/eris-db/Godeps/_workspace/src/github.com/tendermint/log15"
"github.com/eris-ltd/eris-db/Godeps/_workspace/src/github.com/tendermint/tendermint/account"
edb "github.com/eris-ltd/eris-db/erisdb"
ep "github.com/eris-ltd/eris-db/erisdb/pipe"
"github.com/eris-ltd/eris-db/rpc"
"github.com/eris-ltd/eris-db/server"
td "github.com/eris-ltd/eris-db/test/testdata/testdata"
)
func init() {
runtime.GOMAXPROCS(runtime.NumCPU())
log15.Root().SetHandler(log15.LvlFilterHandler(
log15.LvlWarn,
log15.StreamHandler(os.Stdout, log15.TerminalFormat()),
))
gin.SetMode(gin.ReleaseMode)
}
suite.Suite
baseDir string
serveProcess *server.ServeProcess
codec rpc.Codec
sUrl string
testData *td.TestData
}
gin.SetMode(gin.ReleaseMode)
// Load the supporting objects.
testData := td.LoadTestData()
pipe := NewMockPipe(testData)
codec := &edb.TCodec{}
evtSubs := edb.NewEventSubscriptions(pipe.Events())
// The server
restServer := edb.NewRestServer(codec, pipe, evtSubs)
sConf := server.DefaultServerConfig()
// Create a server process.
proc := server.NewServeProcess(sConf, restServer)
err := proc.Start()
if err != nil {
panic(err)
}
this.serveProcess = proc
this.codec = edb.NewTCodec()
this.testData = testData
sec := this.serveProcess.StopEventChannel()
this.serveProcess.Stop(0)
<-sec
}
// ********************************************* Accounts *********************************************
func (this *MockSuite) TestGetAccounts() {
resp := this.get("/accounts")
ret := &ep.AccountList{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
func (this *MockSuite) TestGetAccount() {
addr := hex.EncodeToString(this.testData.GetAccount.Input.Address)
resp := this.get("/accounts/" + addr)
ret := &account.Account{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
func (this *MockSuite) TestGetStorage() {
addr := hex.EncodeToString(this.testData.GetStorage.Input.Address)
resp := this.get("/accounts/" + addr + "/storage")
ret := &ep.Storage{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
this.Equal(ret, this.testData.GetStorage.Output)
}
func (this *MockSuite) TestGetStorageAt() {
addr := hex.EncodeToString(this.testData.GetStorageAt.Input.Address)
key := hex.EncodeToString(this.testData.GetStorageAt.Input.Key)
resp := this.get("/accounts/" + addr + "/storage/" + key)
ret := &ep.StorageItem{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
// ********************************************* Blockchain *********************************************
func (this *MockSuite) TestGetBlockchainInfo() {
resp := this.get("/blockchain")
ret := &ep.BlockchainInfo{}
func (this *MockSuite) TestGetChainId() {
resp := this.get("/blockchain/chain_id")
ret := &ep.ChainId{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
func (this *MockSuite) TestGetGenesisHash() {
resp := this.get("/blockchain/genesis_hash")
ret := &ep.GenesisHash{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
func (this *MockSuite) TestLatestBlockHeight() {
resp := this.get("/blockchain/latest_block_height")
ret := &ep.LatestBlockHeight{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
func (this *MockSuite) TestBlocks() {
resp := this.get("/blockchain/blocks")
ret := &ep.Blocks{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
// ********************************************* Consensus *********************************************
func (this *MockSuite) TestGetConsensusState() {
resp := this.get("/consensus")
ret := &ep.ConsensusState{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
ret.StartTime = ""
this.Equal(ret, this.testData.GetConsensusState.Output)
func (this *MockSuite) TestGetValidators() {
resp := this.get("/consensus/validators")
ret := &ep.ValidatorList{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
// ********************************************* Network *********************************************
func (this *MockSuite) TestGetNetworkInfo() {
resp := this.get("/network")
ret := &ep.NetworkInfo{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
func (this *MockSuite) TestGetClientVersion() {
resp := this.get("/network/client_version")
ret := &ep.ClientVersion{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
func (this *MockSuite) TestGetMoniker() {
resp := this.get("/network/moniker")
ret := &ep.Moniker{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
this.Equal(ret, this.testData.GetMoniker.Output)
}
func (this *MockSuite) TestIsListening() {
resp := this.get("/network/listening")
ret := &ep.Listening{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
func (this *MockSuite) TestGetListeners() {
resp := this.get("/network/listeners")
ret := &ep.Listeners{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
func (this *MockSuite) TestGetPeers() {
resp := this.get("/network/peers")
ret := []*ep.Peer{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
/*
func (this *MockSuite) TestGetPeer() {
addr := this.testData.GetPeer.Input.Address
resp := this.get("/network/peer/" + addr)
ret := []*ep.Peer{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
// ********************************************* Transactions *********************************************
func (this *MockSuite) TestTransactCreate() {
resp := this.postJson("/unsafe/txpool", this.testData.TransactCreate.Input)
ret := &ep.Receipt{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
func (this *MockSuite) TestTransact() {
resp := this.postJson("/unsafe/txpool", this.testData.Transact.Input)
ret := &ep.Receipt{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
func (this *MockSuite) TestGetUnconfirmedTxs() {
resp := this.get("/txpool")
ret := &ep.UnconfirmedTxs{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
func (this *MockSuite) TestCallCode() {
resp := this.postJson("/codecalls", this.testData.CallCode.Input)
ret := &ep.Call{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
func (this *MockSuite) TestCall() {
resp := this.postJson("/calls", this.testData.Call.Input)
ret := &ep.Call{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
}
// ********************************************* Utilities *********************************************
func (this *MockSuite) get(endpoint string) *http.Response {
resp, errG := http.Get(this.sUrl + endpoint)
this.NoError(errG)
func (this *MockSuite) postJson(endpoint string, v interface{}) *http.Response {
bts, errE := this.codec.EncodeBytes(v)
this.NoError(errE)
resp, errP := http.Post(this.sUrl+endpoint, "application/json", bytes.NewBuffer(bts))
this.NoError(errP)
this.Equal(200, resp.StatusCode)
return resp
}
// ********************************************* Entrypoint *********************************************
func TestMockSuite(t *testing.T) {
suite.Run(t, &MockSuite{})