Documentation ¶
Overview ¶
Package rpctest provides a dcrd-specific RPC testing harness crafting and executing integration tests by driving a `dcrd` instance via the `RPC` interface. Each instance of an active harness comes equipped with a simple in-memory HD wallet capable of properly syncing to the generated chain, creating new addresses, and crafting fully signed transactions paying to an arbitrary set of outputs.
This package was designed specifically to act as an RPC testing harness for `dcrd`. However, the constructs presented are general enough to be adapted to any project wishing to programmatically drive a `dcrd` instance of its systems/integration tests.
Index ¶
- Constants
- func ConnectNode(from *Harness, to *Harness) error
- func JoinNodes(nodes []*Harness, joinType JoinType) error
- func TearDownAll() error
- type Harness
- func (h *Harness) ConfirmedBalance() dcrutil.Amount
- func (h *Harness) CreateTransaction(targetOutputs []*wire.TxOut, feeRate dcrutil.Amount) (*wire.MsgTx, error)
- func (h *Harness) NewAddress() (dcrutil.Address, error)
- func (h *Harness) RPCConfig() dcrrpcclient.ConnConfig
- func (h *Harness) SendOutputs(targetOutputs []*wire.TxOut, feeRate dcrutil.Amount) (*chainhash.Hash, error)
- func (h *Harness) SetUp(createTestChain bool, numMatureOutputs uint32) error
- func (h *Harness) TearDown() error
- func (h *Harness) UnlockOutputs(inputs []*wire.TxIn)
- type HarnessTestCase
- type JoinType
Constants ¶
const ( // BlockVersion is the default block version used when generating // blocks. BlockVersion = 3 )
Variables ¶
This section is empty.
Functions ¶
func ConnectNode ¶
ConnectNode establishes a new peer-to-peer connection between the "from" harness and the "to" harness. The connection made is flagged as persistent, therefore in the case of disconnects, "from" will attempt to reestablish a connection to the "to" harness.
func JoinNodes ¶
JoinNodes is a synchronization tool used to block until all passed nodes are fully synced with respect to an attribute. This function will block for a period of time, finally returning once all nodes are synced according to the passed JoinType. This function be used to to ensure all active test harnesses are at a consistent state before proceeding to an assertion or check within rpc tests.
Types ¶
type Harness ¶
type Harness struct { // ActiveNet is the parameters of the blockchain the Harness belongs // to. ActiveNet *chaincfg.Params Node *dcrrpcclient.Client sync.Mutex // contains filtered or unexported fields }
Harness fully encapsulates an active dcrd process to provide a unified platform for creating rpc driven integration tests involving dcrd. The active dcrd node will typically be run in simnet mode in order to allow for easy generation of test blockchains. The active dcrd process is fully managed by Harness, which handles the necessary initialization, and teardown of the process along with any temporary directories created as a result. Multiple Harness instances may be run concurrently, in order to allow for testing complex scenarios involving multiple nodes. The harness also includes an in-memory wallet to streamline various classes of tests.
func ActiveHarnesses ¶
func ActiveHarnesses() []*Harness
ActiveHarnesses returns a slice of all currently active test harnesses. A test harness if considered "active" if it has been created, but not yet torn down.
func New ¶
func New(activeNet *chaincfg.Params, handlers *dcrrpcclient.NotificationHandlers, extraArgs []string) (*Harness, error)
New creates and initializes new instance of the rpc test harness. Optionally, websocket handlers and a specified configuration may be passed. In the case that a nil config is passed, a default configuration will be used.
NOTE: This function is safe for concurrent access.
func (*Harness) ConfirmedBalance ¶
ConfirmedBalance returns the confirmed balance of the Harness' internal wallet.
This function is safe for concurrent access.
func (*Harness) CreateTransaction ¶
func (h *Harness) CreateTransaction(targetOutputs []*wire.TxOut, feeRate dcrutil.Amount) (*wire.MsgTx, error)
CreateTransaction returns a fully signed transaction paying to the specified outputs while observing the desired fee rate. The passed fee rate should be expressed in atoms-per-byte. Any unspent outputs selected as inputs for the crafted transaction are marked as unspendable in order to avoid potential double-spends by future calls to this method. If the created transaction is cancelled for any reason then the selected inputs MUST be freed via a call to UnlockOutputs. Otherwise, the locked inputs won't be returned to the pool of spendable outputs.
This function is safe for concurrent access.
func (*Harness) NewAddress ¶
NewAddress returns a fresh address spendable by the Harness' internal wallet.
This function is safe for concurrent access.
func (*Harness) RPCConfig ¶
func (h *Harness) RPCConfig() dcrrpcclient.ConnConfig
RPCConfig returns the harnesses current rpc configuration. This allows other potential RPC clients created within tests to connect to a given test harness instance.
func (*Harness) SendOutputs ¶
func (h *Harness) SendOutputs(targetOutputs []*wire.TxOut, feeRate dcrutil.Amount) (*chainhash.Hash, error)
SendOutputs creates, signs, and finally broadcasts a transaction spending the harness' available mature coinbase outputs creating new outputs according to targetOutputs.
This function is safe for concurrent access.
func (*Harness) SetUp ¶
SetUp initializes the rpc test state. Initialization includes: starting up a simnet node, creating a websockets client and connecting to the started node, and finally: optionally generating and submitting a testchain with a configurable number of mature coinbase outputs coinbase outputs.
NOTE: This method and TearDown should always be called from the same goroutine as they are not concurrent safe.
func (*Harness) TearDown ¶
TearDown stops the running rpc test instance. All created processes are killed, and temporary directories removed.
NOTE: This method and SetUp should always be called from the same goroutine as they are not concurrent safe.
func (*Harness) UnlockOutputs ¶
UnlockOutputs unlocks any outputs which were previously marked as unspendabe due to being selected to fund a transaction via the CreateTransaction method.
This function is safe for concurrent access.
type HarnessTestCase ¶
HarnessTestCase represents a test-case which utilizes an instance of the Harness to exercise functionality.