30 releases (stable)

new 22.1.0 Dec 18, 2024
22.0.0 Nov 19, 2024
21.5.0 Sep 11, 2024
21.2.0 Jul 16, 2024
0.9.4 Jul 27, 2023

#28 in #soroban

Download history 163/week @ 2024-08-25 5/week @ 2024-09-01 100/week @ 2024-09-08 83/week @ 2024-09-15 2/week @ 2024-09-22 57/week @ 2024-09-29 87/week @ 2024-11-03 13/week @ 2024-11-10 142/week @ 2024-11-17 10/week @ 2024-11-24 162/week @ 2024-12-01 61/week @ 2024-12-08

375 downloads per month

Apache-2.0

27KB
307 lines

Soroban Test

Test framework wrapping Soroban CLI.

Provides a way to run tests against a local sandbox; running against RPC endpoint coming soon.

Overview

  • 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.

Example

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()
        );
    });
}

Itegration tests in Crate

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.

Dependencies

~50–67MB
~1M SLoC