Crates.io | soroban-test |
lib.rs | soroban-test |
version | |
source | src |
created_at | 2023-04-05 11:17:11.203831 |
updated_at | 2024-12-02 21:10:33.62972 |
description | Soroban Test Framework |
homepage | https://github.com/stellar/soroban-test |
repository | https://github.com/stellar/soroban-test |
max_upload_size | |
id | 830961 |
Cargo.toml error: | TOML parse error at line 19, column 1 | 19 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Test framework wrapping Soroban CLI.
Provides a way to run tests against a local sandbox; running against RPC endpoint coming soon.
TestEnv
is a test environment for running tests isolated from each other.
TestEnv::with_default
invokes a closure, which is passed a reference to a random TestEnv
.
TestEnv::new_assert_cmd
creates an assert_cmd::Command
for a given subcommand and sets the current
directory to be the same as TestEnv
.
TestEnv::cmd
is a generic function which parses a command from a string.
Note, however, that it uses shlex
to tokenize the string. This can cause issues
for commands which contain strings with "
s. For example, {"hello": "world"}
becomes
{hello:world}
. For that reason it's recommended to use TestEnv::cmd_arr
instead.
TestEnv::cmd_arr
is a generic function which takes an array of &str
which is passed directly to clap.
This is the preferred way since it ensures no string parsing footguns.
TestEnv::invoke
a convenience function for using the invoke command.
use soroban_test::{TestEnv, Wasm};
const WASM: &Wasm = &Wasm::Release("soroban_hello_world_contract");
const FRIEND: &str = "friend";
#[test]
fn invoke() {
TestEnv::with_default(|workspace| {
assert_eq!(
format!("[\"Hello\",\"{FRIEND}\"]"),
workspace
.invoke(&[
"--id",
"1",
"--wasm",
&WASM.path().to_string_lossy(),
"--",
"hello",
"--to",
FRIEND,
])
.unwrap()
);
});
}
Currently all tests that require an RPC server are hidden behind a it
feature, found here. To allow Rust-Analyzer to see the tests in vscode, .vscode/settings.json
. Without RA, you can't follow through definitions and more importantly see errors before running tests tests.