0.8.1 |
|
---|---|
0.7.1 |
|
0.6.0 |
|
#21 in #casper-labs
1.5MB
32K
SLoC
casperlabs-engine-test-support
A library to support testing of Wasm smart contracts for use on the CasperLabs network.
License
Licensed under the CasperLabs Open Source License (COSL).
lib.rs
:
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);
Dependencies
~45MB
~726K SLoC