Skip to content
Snippets Groups Projects
mock_web_api_test.go 8.59 KiB
Newer Older
package mock

// Basic imports
import (
	"bytes"
androlo's avatar
androlo committed
	"encoding/hex"
	// edb "github.com/eris-ltd/erisdb/erisdb"
Casey Kuhlman's avatar
Casey Kuhlman committed
	"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"
Androlo's avatar
Androlo committed
	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"
	"net/http"
	"os"
	"runtime"
Androlo's avatar
Androlo committed
	"testing"
)

func init() {
	runtime.GOMAXPROCS(runtime.NumCPU())
	log15.Root().SetHandler(log15.LvlFilterHandler(
		log15.LvlWarn,
		log15.StreamHandler(os.Stdout, log15.TerminalFormat()),
	))
	gin.SetMode(gin.ReleaseMode)
}

Androlo's avatar
Androlo committed
type MockSuite struct {
	suite.Suite
	baseDir      string
	serveProcess *server.ServeProcess
	codec        rpc.Codec
	sUrl         string
	testData     *td.TestData
}

Androlo's avatar
Androlo committed
func (this *MockSuite) SetupSuite() {
	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()
	sConf.Bind.Port = 31402
	// Create a server process.
	proc := server.NewServeProcess(sConf, restServer)
Androlo's avatar
Androlo committed
	err := proc.Start()
	if err != nil {
		panic(err)
	}
	this.serveProcess = proc
	this.codec = edb.NewTCodec()
	this.testData = testData
	this.sUrl = "http://localhost:31402"
Androlo's avatar
Androlo committed
func (this *MockSuite) TearDownSuite() {
	sec := this.serveProcess.StopEventChannel()
	this.serveProcess.Stop(0)
	<-sec
}

androlo's avatar
androlo committed
// ********************************************* Accounts *********************************************
androlo's avatar
androlo committed
func (this *MockSuite) TestGetAccounts() {
	resp := this.get("/accounts")
	ret := &ep.AccountList{}
	errD := this.codec.Decode(ret, resp.Body)
	this.NoError(errD)
androlo's avatar
androlo committed
	this.Equal(ret, this.testData.GetAccounts.Output)
androlo's avatar
androlo committed
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)
androlo's avatar
androlo committed
	this.Equal(ret, this.testData.GetAccount.Output)
androlo's avatar
androlo committed
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)
}
androlo's avatar
androlo committed
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)
androlo's avatar
androlo committed
	this.Equal(ret, this.testData.GetStorageAt.Output)
androlo's avatar
androlo committed
// ********************************************* Blockchain *********************************************

func (this *MockSuite) TestGetBlockchainInfo() {
	resp := this.get("/blockchain")
	ret := &ep.BlockchainInfo{}
Androlo's avatar
Androlo committed
	errD := this.codec.Decode(ret, resp.Body)
	this.NoError(errD)
androlo's avatar
androlo committed
	this.Equal(ret, this.testData.GetBlockchainInfo.Output)
Androlo's avatar
Androlo committed
}

androlo's avatar
androlo committed
func (this *MockSuite) TestGetChainId() {
	resp := this.get("/blockchain/chain_id")
	ret := &ep.ChainId{}
	errD := this.codec.Decode(ret, resp.Body)
	this.NoError(errD)
androlo's avatar
androlo committed
	this.Equal(ret, this.testData.GetChainId.Output)
androlo's avatar
androlo committed
func (this *MockSuite) TestGetGenesisHash() {
	resp := this.get("/blockchain/genesis_hash")
	ret := &ep.GenesisHash{}
	errD := this.codec.Decode(ret, resp.Body)
	this.NoError(errD)
androlo's avatar
androlo committed
	this.Equal(ret, this.testData.GetGenesisHash.Output)
androlo's avatar
androlo committed
func (this *MockSuite) TestLatestBlockHeight() {
	resp := this.get("/blockchain/latest_block_height")
	ret := &ep.LatestBlockHeight{}
	errD := this.codec.Decode(ret, resp.Body)
	this.NoError(errD)
androlo's avatar
androlo committed
	this.Equal(ret, this.testData.GetLatestBlockHeight.Output)
androlo's avatar
androlo committed
func (this *MockSuite) TestBlocks() {
	resp := this.get("/blockchain/blocks")
	ret := &ep.Blocks{}
	errD := this.codec.Decode(ret, resp.Body)
	this.NoError(errD)
androlo's avatar
androlo committed
	this.Equal(ret, this.testData.GetBlocks.Output)
androlo's avatar
androlo committed
// ********************************************* Consensus *********************************************
androlo's avatar
androlo committed
func (this *MockSuite) TestGetConsensusState() {
	resp := this.get("/consensus")
	ret := &ep.ConsensusState{}
	errD := this.codec.Decode(ret, resp.Body)
	this.NoError(errD)
androlo's avatar
androlo committed
	ret.StartTime = ""
	this.Equal(ret, this.testData.GetConsensusState.Output)
androlo's avatar
androlo committed
func (this *MockSuite) TestGetValidators() {
	resp := this.get("/consensus/validators")
	ret := &ep.ValidatorList{}
	errD := this.codec.Decode(ret, resp.Body)
	this.NoError(errD)
androlo's avatar
androlo committed
	this.Equal(ret, this.testData.GetValidators.Output)
androlo's avatar
androlo committed
// ********************************************* Network *********************************************

func (this *MockSuite) TestGetNetworkInfo() {
	resp := this.get("/network")
	ret := &ep.NetworkInfo{}
	errD := this.codec.Decode(ret, resp.Body)
	this.NoError(errD)
androlo's avatar
androlo committed
	this.Equal(ret, this.testData.GetNetworkInfo.Output)
androlo's avatar
androlo committed
func (this *MockSuite) TestGetClientVersion() {
	resp := this.get("/network/client_version")
	ret := &ep.ClientVersion{}
	errD := this.codec.Decode(ret, resp.Body)
	this.NoError(errD)
androlo's avatar
androlo committed
	this.Equal(ret, this.testData.GetClientVersion.Output)
androlo's avatar
androlo committed
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)
}
androlo's avatar
androlo committed
func (this *MockSuite) TestIsListening() {
	resp := this.get("/network/listening")
	ret := &ep.Listening{}
	errD := this.codec.Decode(ret, resp.Body)
	this.NoError(errD)
androlo's avatar
androlo committed
	this.Equal(ret, this.testData.IsListening.Output)
androlo's avatar
androlo committed
func (this *MockSuite) TestGetListeners() {
	resp := this.get("/network/listeners")
	ret := &ep.Listeners{}
	errD := this.codec.Decode(ret, resp.Body)
	this.NoError(errD)
androlo's avatar
androlo committed
	this.Equal(ret, this.testData.GetListeners.Output)
androlo's avatar
androlo committed
func (this *MockSuite) TestGetPeers() {
	resp := this.get("/network/peers")
	ret := []*ep.Peer{}
	errD := this.codec.Decode(ret, resp.Body)
	this.NoError(errD)
androlo's avatar
androlo committed
	this.Equal(ret, this.testData.GetPeers.Output)
androlo's avatar
androlo committed
/*
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)
androlo's avatar
androlo committed
	this.Equal(ret, this.testData.GetPeers.Output)
androlo's avatar
androlo committed
*/
androlo's avatar
androlo committed
// ********************************************* Transactions *********************************************
androlo's avatar
androlo committed
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)
androlo's avatar
androlo committed
	this.Equal(ret, this.testData.TransactCreate.Output)
androlo's avatar
androlo committed
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)
androlo's avatar
androlo committed
	this.Equal(ret, this.testData.Transact.Output)
androlo's avatar
androlo committed
func (this *MockSuite) TestGetUnconfirmedTxs() {
	resp := this.get("/txpool")
	ret := &ep.UnconfirmedTxs{}
	errD := this.codec.Decode(ret, resp.Body)
	this.NoError(errD)
androlo's avatar
androlo committed
	this.Equal(ret, this.testData.GetUnconfirmedTxs.Output)
androlo's avatar
androlo committed
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)
androlo's avatar
androlo committed
	this.Equal(ret, this.testData.CallCode.Output)
androlo's avatar
androlo committed
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)
androlo's avatar
androlo committed
	this.Equal(ret, this.testData.CallCode.Output)
}

// ********************************************* Utilities *********************************************

Androlo's avatar
Androlo committed
func (this *MockSuite) get(endpoint string) *http.Response {
	resp, errG := http.Get(this.sUrl + endpoint)
	this.NoError(errG)
Androlo's avatar
Androlo committed
	this.Equal(200, resp.StatusCode)
Androlo's avatar
Androlo committed
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 *********************************************

Androlo's avatar
Androlo committed
func TestMockSuite(t *testing.T) {
	suite.Run(t, &MockSuite{})