[][src]Crate casperlabs_engine_test_support

A library to support testing of Wasm smart contracts for use on the CasperLabs Platform.

Example

Consider a contract held in "contract.wasm" which stores an arbitrary String under a Key named "special_value":

use casperlabs_contract::contract_api::{runtime, storage};
use casperlabs_types::Key;
const KEY: &str = "special_value";
const ARG_VALUE: &str = "value";

#[no_mangle]
pub extern "C" fn call() {
    let value: String = runtime::get_named_arg(ARG_VALUE);
    let value_ref = storage::new_uref(value);
    let value_key: Key = value_ref.into();
    runtime::put_key(KEY, value_key);
}

The test could be written as follows:

use casperlabs_engine_test_support::{Code, Error, SessionBuilder, TestContextBuilder, Value};
use casperlabs_types::{account::AccountHash, U512, RuntimeArgs, runtime_args};

const MY_ACCOUNT: AccountHash = AccountHash::new([7u8; 32]);
const KEY: &str = "special_value";
const VALUE: &str = "hello world";
const ARG_MESSAGE: &str = "message";

let mut context = TestContextBuilder::new()
    .with_account(MY_ACCOUNT, U512::from(128_000_000))
    .build();

// The test framework checks for compiled Wasm files in '<current working dir>/wasm'.  Paths
// relative to the current working dir (e.g. 'wasm/contract.wasm') can also be used, as can
// absolute paths.
let session_code = Code::from("contract.wasm");
let session_args = runtime_args! {
    ARG_MESSAGE => VALUE,
};
let session = SessionBuilder::new(session_code, session_args)
    .with_address(MY_ACCOUNT)
    .with_authorization_keys(&[MY_ACCOUNT])
    .build();

let result_of_query: Result<Value, Error> = context.run(session).query(MY_ACCOUNT, &[KEY]);

let returned_value = result_of_query.expect("should be a value");

let expected_value = Value::from_t(VALUE.to_string()).expect("should construct Value");
assert_eq!(expected_value, returned_value);

Structs

Account

An Account instance.

AccountHash

A newtype wrapping a AccountHashBytes which is the raw bytes of the AccountHash, a hash of Public Key and Algorithm

Error

The error type returned by any casperlabs-engine-test-support operation.

Session

A single session, i.e. a single request to execute a single deploy within the test context.

SessionBuilder

Builder for a Session.

SessionTransferInfo

Transfer Information for validating a transfer including gas usage from source

TestContext

Context in which to run a test of a Wasm smart contract.

TestContextBuilder

Builder for a TestContext.

Value

A value stored under a given key on the network.

Enums

Code

Represents the types of session or payment code.

Constants

DEFAULT_ACCOUNT_ADDR

Default test account address.

DEFAULT_ACCOUNT_INITIAL_BALANCE

Default initial balance of a test account in motes.

Type Definitions

Hash

The hash of a smart contract stored on the network, which can be used to reference the contract.

Result

A specialized std::result::Result for this crate.

URefAddr

The address of a URef (unforgeable reference) on the network.