mock

package
v1.3.27-rc1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 7, 2022 License: GPL-3.0 Imports: 15 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ApiResolverStub

type ApiResolverStub struct {
	ExecuteSCQueryHandler             func(query *process.SCQuery) (*vmcommon.VMOutput, error)
	StatusMetricsHandler              func() external.StatusMetricsHandler
	ComputeTransactionGasLimitHandler func(tx *transaction.Transaction) (*transaction.CostResponse, error)
	GetTotalStakedValueHandler        func() (*api.StakeValues, error)
	GetDirectStakedListHandler        func() ([]*api.DirectStakedValue, error)
	GetDelegatorsListHandler          func() ([]*api.Delegator, error)
}

ApiResolverStub -

func (*ApiResolverStub) Close added in v1.2.0

func (ars *ApiResolverStub) Close() error

Close -

func (*ApiResolverStub) ComputeTransactionGasLimit

func (ars *ApiResolverStub) ComputeTransactionGasLimit(tx *transaction.Transaction) (*transaction.CostResponse, error)

ComputeTransactionGasLimit -

func (*ApiResolverStub) ExecuteSCQuery

func (ars *ApiResolverStub) ExecuteSCQuery(query *process.SCQuery) (*vmcommon.VMOutput, error)

ExecuteSCQuery -

func (*ApiResolverStub) GetDelegatorsList added in v1.1.45

func (ars *ApiResolverStub) GetDelegatorsList() ([]*api.Delegator, error)

GetDelegatorsList -

func (*ApiResolverStub) GetDirectStakedList added in v1.1.45

func (ars *ApiResolverStub) GetDirectStakedList() ([]*api.DirectStakedValue, error)

GetDirectStakedList -

func (*ApiResolverStub) GetTotalStakedValue added in v1.1.18

func (ars *ApiResolverStub) GetTotalStakedValue() (*api.StakeValues, error)

GetTotalStakedValue -

func (*ApiResolverStub) IsInterfaceNil

func (ars *ApiResolverStub) IsInterfaceNil() bool

IsInterfaceNil returns true if there is no value under the interface

func (*ApiResolverStub) StatusMetrics

func (ars *ApiResolverStub) StatusMetrics() external.StatusMetricsHandler

StatusMetrics -

type NodeStub added in v1.0.102

type NodeStub struct {
	AddressHandler             func() (string, error)
	ConnectToAddressesHandler  func([]string) error
	GetBalanceHandler          func(address string) (*big.Int, error)
	GenerateTransactionHandler func(sender string, receiver string, amount string, code string) (*transaction.Transaction, error)
	CreateTransactionHandler   func(nonce uint64, value string, receiver string, receiverUsername []byte, sender string, senderUsername []byte, gasPrice uint64,
		gasLimit uint64, data []byte, signatureHex string, chainID string, version, options uint32) (*transaction.Transaction, []byte, error)
	ValidateTransactionHandler                     func(tx *transaction.Transaction) error
	ValidateTransactionForSimulationCalled         func(tx *transaction.Transaction, bypassSignature bool) error
	GetTransactionHandler                          func(hash string, withEvents bool) (*transaction.ApiTransactionResult, error)
	SendBulkTransactionsHandler                    func(txs []*transaction.Transaction) (uint64, error)
	GetAccountHandler                              func(address string) (api.AccountResponse, error)
	GetCodeCalled                                  func(codeHash []byte) []byte
	GetCurrentPublicKeyHandler                     func() string
	GenerateAndSendBulkTransactionsHandler         func(destination string, value *big.Int, nrTransactions uint64) error
	GenerateAndSendBulkTransactionsOneByOneHandler func(destination string, value *big.Int, nrTransactions uint64) error
	GetHeartbeatsHandler                           func() []data.PubKeyHeartbeat
	ValidatorStatisticsApiCalled                   func() (map[string]*state.ValidatorApiResponse, error)
	DirectTriggerCalled                            func(epoch uint32, withEarlyEndOfEpoch bool) error
	IsSelfTriggerCalled                            func() bool
	GetQueryHandlerCalled                          func(name string) (debug.QueryHandler, error)
	GetValueForKeyCalled                           func(address string, key string) (string, error)
	GetPeerInfoCalled                              func(pid string) ([]core.QueryP2PPeerInfo, error)
	GetBlockByHashCalled                           func(hash string, withTxs bool) (*api.Block, error)
	GetBlockByNonceCalled                          func(nonce uint64, withTxs bool) (*api.Block, error)
	GetBlockByRoundCalled                          func(round uint64, withTxs bool) (*api.Block, error)
	GetUsernameCalled                              func(address string) (string, error)
	GetESDTDataCalled                              func(address string, key string, nonce uint64) (*esdt.ESDigitalToken, error)
	GetAllESDTTokensCalled                         func(address string) (map[string]*esdt.ESDigitalToken, error)
	GetNFTTokenIDsRegisteredByAddressCalled        func(address string) ([]string, error)
	GetESDTsWithRoleCalled                         func(address string, role string) ([]string, error)
	GetESDTsRolesCalled                            func(address string) (map[string][]string, error)
	GetKeyValuePairsCalled                         func(address string) (map[string]string, error)
	GetAllIssuedESDTsCalled                        func(tokenType string) ([]string, error)
	GetProofCalled                                 func(rootHash string, key string) (*common.GetProofResponse, error)
	GetProofDataTrieCalled                         func(rootHash string, address string, key string) (*common.GetProofResponse, *common.GetProofResponse, error)
	VerifyProofCalled                              func(rootHash string, address string, proof [][]byte) (bool, error)
}

NodeStub -

func (*NodeStub) CreateTransaction added in v1.0.102

func (ns *NodeStub) CreateTransaction(nonce uint64, value string, receiver string, receiverUsername []byte, sender string, senderUsername []byte, gasPrice uint64,
	gasLimit uint64, data []byte, signatureHex string, chainID string, version uint32, options uint32) (*transaction.Transaction, []byte, error)

CreateTransaction -

func (*NodeStub) DecodeAddressPubkey added in v1.0.104

func (ns *NodeStub) DecodeAddressPubkey(pk string) ([]byte, error)

DecodeAddressPubkey -

func (*NodeStub) DirectTrigger added in v1.0.102

func (ns *NodeStub) DirectTrigger(epoch uint32, withEarlyEndOfEpoch bool) error

DirectTrigger -

func (*NodeStub) EncodeAddressPubkey added in v1.0.104

func (ns *NodeStub) EncodeAddressPubkey(pk []byte) (string, error)

EncodeAddressPubkey -

func (*NodeStub) GetAccount added in v1.0.102

func (ns *NodeStub) GetAccount(address string) (api.AccountResponse, error)

GetAccount -

func (*NodeStub) GetAllESDTTokens added in v1.1.12

func (ns *NodeStub) GetAllESDTTokens(address string) (map[string]*esdt.ESDigitalToken, error)

GetAllESDTTokens -

func (*NodeStub) GetAllIssuedESDTs added in v1.1.42

func (ns *NodeStub) GetAllIssuedESDTs(tokenType string) ([]string, error)

GetAllIssuedESDTs -

func (*NodeStub) GetBalance added in v1.0.102

func (ns *NodeStub) GetBalance(address string) (*big.Int, error)

GetBalance -

func (*NodeStub) GetBlockByHash added in v1.0.147

func (ns *NodeStub) GetBlockByHash(hash string, withTxs bool) (*api.Block, error)

GetBlockByHash -

func (*NodeStub) GetBlockByNonce added in v1.0.147

func (ns *NodeStub) GetBlockByNonce(nonce uint64, withTxs bool) (*api.Block, error)

GetBlockByNonce -

func (*NodeStub) GetBlockByRound added in v1.2.23

func (ns *NodeStub) GetBlockByRound(round uint64, withTxs bool) (*api.Block, error)

GetBlockByRound -

func (*NodeStub) GetCode added in v1.1.22

func (ns *NodeStub) GetCode(codeHash []byte) []byte

GetCode -

func (*NodeStub) GetESDTData added in v1.1.39

func (ns *NodeStub) GetESDTData(address, tokenID string, nonce uint64) (*esdt.ESDigitalToken, error)

GetESDTData -

func (*NodeStub) GetESDTsRoles added in v1.2.10

func (ns *NodeStub) GetESDTsRoles(address string) (map[string][]string, error)

GetESDTsRoles -

func (*NodeStub) GetESDTsWithRole added in v1.1.58

func (ns *NodeStub) GetESDTsWithRole(address string, role string) ([]string, error)

GetESDTsWithRole -

func (*NodeStub) GetHeartbeats added in v1.0.102

func (ns *NodeStub) GetHeartbeats() []data.PubKeyHeartbeat

GetHeartbeats -

func (*NodeStub) GetKeyValuePairs added in v1.1.29

func (ns *NodeStub) GetKeyValuePairs(address string) (map[string]string, error)

GetKeyValuePairs -

func (*NodeStub) GetNFTTokenIDsRegisteredByAddress added in v1.1.58

func (ns *NodeStub) GetNFTTokenIDsRegisteredByAddress(address string) ([]string, error)

GetNFTTokenIDsRegisteredByAddress -

func (*NodeStub) GetPeerInfo added in v1.0.130

func (ns *NodeStub) GetPeerInfo(pid string) ([]core.QueryP2PPeerInfo, error)

GetPeerInfo -

func (*NodeStub) GetProof added in v1.2.23

func (ns *NodeStub) GetProof(rootHash string, key string) (*common.GetProofResponse, error)

GetProof -

func (*NodeStub) GetProofDataTrie added in v1.2.23

func (ns *NodeStub) GetProofDataTrie(rootHash string, address string, key string) (*common.GetProofResponse, *common.GetProofResponse, error)

GetProofDataTrie -

func (*NodeStub) GetQueryHandler added in v1.0.110

func (ns *NodeStub) GetQueryHandler(name string) (debug.QueryHandler, error)

GetQueryHandler -

func (*NodeStub) GetTokenSupply added in v1.2.16

func (ns *NodeStub) GetTokenSupply(_ string) (*api.ESDTSupply, error)

GetTokenSupply -

func (*NodeStub) GetTransaction added in v1.0.102

func (ns *NodeStub) GetTransaction(hash string, withEvents bool) (*transaction.ApiTransactionResult, error)

GetTransaction -

func (*NodeStub) GetUsername added in v1.1.1

func (ns *NodeStub) GetUsername(address string) (string, error)

GetUsername -

func (*NodeStub) GetValueForKey added in v1.0.125

func (ns *NodeStub) GetValueForKey(address string, key string) (string, error)

GetValueForKey -

func (*NodeStub) IsInterfaceNil added in v1.0.102

func (ns *NodeStub) IsInterfaceNil() bool

IsInterfaceNil returns true if there is no value under the interface

func (*NodeStub) IsSelfTrigger added in v1.0.102

func (ns *NodeStub) IsSelfTrigger() bool

IsSelfTrigger -

func (*NodeStub) SendBulkTransactions added in v1.0.102

func (ns *NodeStub) SendBulkTransactions(txs []*transaction.Transaction) (uint64, error)

SendBulkTransactions -

func (*NodeStub) ValidateTransaction added in v1.0.102

func (ns *NodeStub) ValidateTransaction(tx *transaction.Transaction) error

ValidateTransaction -

func (*NodeStub) ValidateTransactionForSimulation added in v1.1.4

func (ns *NodeStub) ValidateTransactionForSimulation(tx *transaction.Transaction, bypassSignature bool) error

ValidateTransactionForSimulation -

func (*NodeStub) ValidatorStatisticsApi added in v1.0.102

func (ns *NodeStub) ValidatorStatisticsApi() (map[string]*state.ValidatorApiResponse, error)

ValidatorStatisticsApi -

func (*NodeStub) VerifyProof added in v1.2.23

func (ns *NodeStub) VerifyProof(rootHash string, address string, proof [][]byte) (bool, error)

VerifyProof -

type SyncTimerMock

type SyncTimerMock struct {
	StartSyncingTimeCalled     func()
	ClockOffsetCalled          func() time.Duration
	FormattedCurrentTimeCalled func() string
	CurrentTimeCalled          func() time.Time
}

SyncTimerMock is a mock implementation of SyncTimer interface

func (*SyncTimerMock) ClockOffset

func (stm *SyncTimerMock) ClockOffset() time.Duration

ClockOffset is a mock implementation for ClockOffset

func (*SyncTimerMock) Close added in v1.0.116

func (stm *SyncTimerMock) Close() error

Close -

func (*SyncTimerMock) CurrentTime

func (stm *SyncTimerMock) CurrentTime() time.Time

CurrentTime is a mock implementation for CurrentTime

func (*SyncTimerMock) FormattedCurrentTime

func (stm *SyncTimerMock) FormattedCurrentTime() string

FormattedCurrentTime is a mock implementation for FormattedCurrentTime

func (*SyncTimerMock) IsInterfaceNil

func (stm *SyncTimerMock) IsInterfaceNil() bool

IsInterfaceNil returns true if there is no value under the interface

func (*SyncTimerMock) StartSyncingTime added in v1.0.116

func (stm *SyncTimerMock) StartSyncingTime()

StartSyncingTime is a mock implementation for StartSyncingTime

type TxExecutionSimulatorStub added in v1.1.1

type TxExecutionSimulatorStub struct {
	ProcessTxCalled func(tx *transaction.Transaction) (*txSimData.SimulationResults, error)
}

TxExecutionSimulatorStub -

func (*TxExecutionSimulatorStub) IsInterfaceNil added in v1.1.1

func (t *TxExecutionSimulatorStub) IsInterfaceNil() bool

IsInterfaceNil -

func (*TxExecutionSimulatorStub) ProcessTx added in v1.1.1

ProcessTx -

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL