Documentation ¶
Index ¶
- type ABCIApp
- func (a ABCIApp) ABCIInfo() (*ctypes.ResultABCIInfo, error)
- func (a ABCIApp) ABCIQuery(path string, data libbytes.HexBytes) (*ctypes.ResultABCIQuery, error)
- func (a ABCIApp) ABCIQueryWithOptions(path string, data libbytes.HexBytes, opts client.ABCIQueryOptions) (*ctypes.ResultABCIQuery, error)
- func (a ABCIApp) BroadcastTxAsync(tx types.Tx) (*ctypes.ResultBroadcastTx, error)
- func (a ABCIApp) BroadcastTxCommit(tx types.Tx) (*rpc.ResultBroadcastTxCommit, error)
- func (a ABCIApp) BroadcastTxSync(tx types.Tx) (*ctypes.ResultBroadcastTx, error)
- type ABCIMock
- func (m ABCIMock) ABCIInfo() (*ctypes.ResultABCIInfo, error)
- func (m ABCIMock) ABCIQuery(path string, data libbytes.HexBytes) (*ctypes.ResultABCIQuery, error)
- func (m ABCIMock) ABCIQueryWithOptions(path string, data libbytes.HexBytes, opts client.ABCIQueryOptions) (*ctypes.ResultABCIQuery, error)
- func (m ABCIMock) BroadcastTxAsync(tx types.Tx) (*ctypes.ResultBroadcastTx, error)
- func (m ABCIMock) BroadcastTxCommit(tx types.Tx) (*rpc.ResultBroadcastTxCommit, error)
- func (m ABCIMock) BroadcastTxSync(tx types.Tx) (*ctypes.ResultBroadcastTx, error)
- type ABCIRecorder
- func (r *ABCIRecorder) ABCIInfo() (*ctypes.ResultABCIInfo, error)
- func (r *ABCIRecorder) ABCIQuery(path string, data libbytes.HexBytes) (*ctypes.ResultABCIQuery, error)
- func (r *ABCIRecorder) ABCIQueryWithOptions(path string, data libbytes.HexBytes, opts client.ABCIQueryOptions) (*ctypes.ResultABCIQuery, error)
- func (r *ABCIRecorder) BroadcastTxAsync(tx types.Tx) (*ctypes.ResultBroadcastTx, error)
- func (r *ABCIRecorder) BroadcastTxCommit(tx types.Tx) (*rpc.ResultBroadcastTxCommit, error)
- func (r *ABCIRecorder) BroadcastTxSync(tx types.Tx) (*ctypes.ResultBroadcastTx, error)
- type Call
- type Client
- func (c Client) ABCIInfo() (*ctypes.ResultABCIInfo, error)
- func (c Client) ABCIQuery(path string, data libbytes.HexBytes) (*ctypes.ResultABCIQuery, error)
- func (c Client) ABCIQueryWithOptions(path string, data libbytes.HexBytes, opts client.ABCIQueryOptions) (*ctypes.ResultABCIQuery, error)
- func (c Client) Block(height *int64) (*ctypes.ResultBlock, error)
- func (c Client) BlockchainInfo(ctx context.Context, minHeight, maxHeight int64) (*ctypes.ResultBlockchainInfo, error)
- func (c Client) BroadcastTxAsync(tx types.Tx) (*ctypes.ResultBroadcastTx, error)
- func (c Client) BroadcastTxCommit(tx types.Tx) (*rpc.ResultBroadcastTxCommit, error)
- func (c Client) BroadcastTxSync(tx types.Tx) (*ctypes.ResultBroadcastTx, error)
- func (c Client) Commit(height *int64) (*ctypes.ResultCommit, error)
- func (c Client) ConsensusState() (*ctypes.ResultConsensusState, error)
- func (c Client) DumpConsensusState() (*ctypes.ResultDumpConsensusState, error)
- func (c Client) Genesis(ctx context.Context) (*ctypes.ResultGenesis, error)
- func (c Client) Health() (*ctypes.ResultHealth, error)
- func (c Client) IsActive() bool
- func (c Client) NetInfo() (*ctypes.ResultNetInfo, error)
- func (c Client) SetLogger(log.Logger)
- func (c Client) Status(ctx context.Context) (*ctypes.ResultStatus, error)
- func (c Client) Validators(height *int64) (*ctypes.ResultValidators, error)
- type QueryArgs
- type StatusMock
- type StatusRecorder
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ABCIApp ¶
type ABCIApp struct {
App abci.Application
}
ABCIApp will send all abci related request to the named app, so you can test app behavior from a client without needing an entire tendermint node
func (ABCIApp) ABCIQueryWithOptions ¶
func (a ABCIApp) ABCIQueryWithOptions(path string, data libbytes.HexBytes, opts client.ABCIQueryOptions) (*ctypes.ResultABCIQuery, error)
func (ABCIApp) BroadcastTxAsync ¶
func (ABCIApp) BroadcastTxCommit ¶
NOTE: Caller should call a.App.Commit() separately, this function does not actually wait for a commit. TODO: Make it wait for a commit and set res.Height appropriately.
func (ABCIApp) BroadcastTxSync ¶
type ABCIMock ¶
ABCIMock will send all abci related request to the named app, so you can test app behavior from a client without needing an entire tendermint node
func (ABCIMock) ABCIQueryWithOptions ¶
func (m ABCIMock) ABCIQueryWithOptions(path string, data libbytes.HexBytes, opts client.ABCIQueryOptions) (*ctypes.ResultABCIQuery, error)
func (ABCIMock) BroadcastTxAsync ¶
func (ABCIMock) BroadcastTxCommit ¶
func (ABCIMock) BroadcastTxSync ¶
type ABCIRecorder ¶
type ABCIRecorder struct { Client rpc.ABCIClient Calls []Call }
ABCIRecorder can wrap another type (ABCIApp, ABCIMock, or Client) and record all ABCI related calls.
func NewABCIRecorder ¶
func NewABCIRecorder(client rpc.ABCIClient) *ABCIRecorder
func (*ABCIRecorder) ABCIInfo ¶
func (r *ABCIRecorder) ABCIInfo() (*ctypes.ResultABCIInfo, error)
func (*ABCIRecorder) ABCIQuery ¶
func (r *ABCIRecorder) ABCIQuery(path string, data libbytes.HexBytes) (*ctypes.ResultABCIQuery, error)
func (*ABCIRecorder) ABCIQueryWithOptions ¶
func (r *ABCIRecorder) ABCIQueryWithOptions(path string, data libbytes.HexBytes, opts client.ABCIQueryOptions) (*ctypes.ResultABCIQuery, error)
func (*ABCIRecorder) BroadcastTxAsync ¶
func (r *ABCIRecorder) BroadcastTxAsync(tx types.Tx) (*ctypes.ResultBroadcastTx, error)
func (*ABCIRecorder) BroadcastTxCommit ¶
func (r *ABCIRecorder) BroadcastTxCommit(tx types.Tx) (*rpc.ResultBroadcastTxCommit, error)
func (*ABCIRecorder) BroadcastTxSync ¶
func (r *ABCIRecorder) BroadcastTxSync(tx types.Tx) (*ctypes.ResultBroadcastTx, error)
type Call ¶
Call is used by recorders to save a call and response. It can also be used to configure mock responses.
func (Call) GetResponse ¶
GetResponse will generate the apporiate response for us, when using the Call struct to configure a Mock handler.
When configuring a response, if only one of Response or Error is set then that will always be returned. If both are set, then we return Response if the Args match the set args, Error otherwise.
type Client ¶
type Client struct { libservice.Service rpc.ABCIClient rpc.SignClient client.HistoryClient client.StatusClient rpc.EventsClient rpc.DexClient rpc.OpsClient rpc.StakingClient }
Client wraps arbitrary implementations of the various interfaces.
We provide a few choices to mock out each one in this package. Nothing hidden here, so no New function, just construct it from some parts, and swap them out them during the tests.
func (Client) ABCIQueryWithOptions ¶
func (c Client) ABCIQueryWithOptions(path string, data libbytes.HexBytes, opts client.ABCIQueryOptions) (*ctypes.ResultABCIQuery, error)
func (Client) BlockchainInfo ¶
func (Client) BroadcastTxAsync ¶
func (Client) BroadcastTxCommit ¶
func (Client) BroadcastTxSync ¶
func (Client) ConsensusState ¶
func (c Client) ConsensusState() (*ctypes.ResultConsensusState, error)
func (Client) DumpConsensusState ¶
func (c Client) DumpConsensusState() (*ctypes.ResultDumpConsensusState, error)
func (Client) Validators ¶
func (c Client) Validators(height *int64) (*ctypes.ResultValidators, error)
type StatusMock ¶
type StatusMock struct {
Call
}
StatusMock returns the result specified by the Call
func (*StatusMock) Status ¶
func (m *StatusMock) Status(ctx context.Context) (*ctypes.ResultStatus, error)
type StatusRecorder ¶
type StatusRecorder struct { Client client.StatusClient Calls []Call }
StatusRecorder can wrap another type (StatusMock, full client) and record the status calls
func NewStatusRecorder ¶
func NewStatusRecorder(client client.StatusClient) *StatusRecorder
func (*StatusRecorder) Status ¶
func (r *StatusRecorder) Status(ctx context.Context) (*ctypes.ResultStatus, error)