Newer
Older
package mock
// Basic imports
import (
"bytes"
"fmt"
// 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
}
// ********************************************* Consensus *********************************************
resp := this.get("/consensus")
ret := &ep.ConsensusState{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
ret.StartTime = ""
this.Equal(ret, this.testData.Output.ConsensusState)
}
resp := this.get("/consensus/validators")
ret := &ep.ValidatorList{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
this.Equal(ret, this.testData.Output.Validators)
}
// ********************************************* Network *********************************************
resp := this.get("/network")
ret := &ep.NetworkInfo{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
this.Equal(ret, this.testData.Output.NetworkInfo)
}
resp := this.get("/network/client_version")
ret := &ep.ClientVersion{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
this.Equal(ret, this.testData.Output.ClientVersion)
}
resp := this.get("/network/moniker")
ret := &ep.Moniker{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
this.Equal(ret, this.testData.Output.Moniker)
}
resp := this.get("/network/listening")
ret := &ep.Listening{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
this.Equal(ret, this.testData.Output.Listening)
}
resp := this.get("/network/listeners")
ret := &ep.Listeners{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
this.Equal(ret, this.testData.Output.Listeners)
}
resp := this.get("/network/peers")
ret := []*ep.Peer{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
this.Equal(ret, this.testData.Output.Peers)
}
// ********************************************* Transactions *********************************************
resp := this.postJson("/unsafe/txpool", this.testData.Input.TxCreate)
ret := &ep.Receipt{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
this.Equal(ret, this.testData.Output.TxCreateReceipt)
}
resp := this.postJson("/unsafe/txpool", this.testData.Input.Tx)
ret := &ep.Receipt{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
this.Equal(ret, this.testData.Output.TxReceipt)
}
resp := this.get("/txpool")
ret := &ep.UnconfirmedTxs{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
this.Equal(ret, this.testData.Output.UnconfirmedTxs)
}
resp := this.postJson("/codecalls", this.testData.Input.CallCode)
ret := &ep.Call{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
this.Equal(ret, this.testData.Output.CallCode)
}
// ********************************************* Accounts *********************************************
resp := this.get("/accounts")
ret := &ep.AccountList{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
this.Equal(ret, this.testData.Output.Accounts)
}
resp := this.get("/accounts/" + this.testData.Input.AccountAddress)
ret := &account.Account{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
this.Equal(ret, this.testData.Output.Account)
}
resp := this.get("/accounts/" + this.testData.Input.AccountAddress + "/storage")
ret := &ep.Storage{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
this.Equal(ret, this.testData.Output.Storage)
}
addr := this.testData.Input.AccountAddress
key := this.testData.Input.StorageAddress
resp := this.get("/accounts/" + addr + "/storage/" + key)
ret := &ep.StorageItem{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
this.Equal(ret, this.testData.Output.StorageAt)
}
// ********************************************* Blockchain *********************************************
resp := this.get("/blockchain")
ret := &ep.BlockchainInfo{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
this.Equal(ret, this.testData.Output.BlockchainInfo)
}
resp := this.get("/blockchain/chain_id")
ret := &ep.ChainId{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
this.Equal(ret, this.testData.Output.ChainId)
}
resp := this.get("/blockchain/genesis_hash")
ret := &ep.GenesisHash{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
this.Equal(ret, this.testData.Output.GenesisHash)
}
func (this *MockSuite) Test_E3_LatestBlockHeight() {
resp := this.get("/blockchain/latest_block_height")
ret := &ep.LatestBlockHeight{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
this.Equal(ret, this.testData.Output.LatestBlockHeight)
}
br := this.testData.Input.BlockRange
resp := this.get(fmt.Sprintf("/blockchain/blocks?q=height:%d..%d", br.Min, br.Max))
ret := &ep.Blocks{}
errD := this.codec.Decode(ret, resp.Body)
this.NoError(errD)
this.Equal(ret, this.testData.Output.Blocks)
}
// ********************************************* 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{})