aea.test_tools.test_contract
This module contains test case classes based on pytest for AEA contract testing.
BaseContractTestCase Objects
A class to test a contract.
contract
Get the contract.
setup
Set up the contract test case.
finish_contract_deployment
Finish deploying contract.
Returns:
contract address
refill_from_faucet
| @staticmethod
| refill_from_faucet(ledger_api: LedgerApi, faucet_api: FaucetApi, address: str) -> None
Refill from faucet.
sign_send_confirm_receipt_multisig_transaction
| @staticmethod
| sign_send_confirm_receipt_multisig_transaction(tx: JSONLike, ledger_api: LedgerApi, cryptos: List[Crypto], sleep_time: float = 2.0) -> JSONLike
Sign, send and confirm settlement of a transaction with multiple signatures.
Arguments:
tx: the transactionledger_api: the ledger apicryptos: Cryptos to sign transaction withsleep_time: the time to sleep between transaction submission and receipt request
Returns:
The transaction receipt
sign_send_confirm_receipt_transaction
| @classmethod
| sign_send_confirm_receipt_transaction(cls, tx: JSONLike, ledger_api: LedgerApi, crypto: Crypto, sleep_time: float = 2.0) -> JSONLike
Sign, send and confirm settlement of a transaction with multiple signatures.
Arguments:
tx: the transactionledger_api: the ledger apicrypto: Crypto to sign transaction withsleep_time: the time to sleep between transaction submission and receipt request
Returns:
The transaction receipt