#unit-testing #integration-tests #benchmark #project

asmov-common-testing

Structured unit and integration testing library

4 stable releases

Uses new Rust 2024

new 2.1.8 Apr 4, 2025

#152 in Testing

Download history

107 downloads per month

AGPL-3.0-or-later

88KB
1.5K SLoC

Asmov Common Testing

Latest Version

Structured unit and integration testing library

Features

  • Structures tests into heirarchies:
    • Module
    • Group
    • Test
  • Allows granular setup and teardown callbacks at each level.
  • Standardizes filepath helpers for temp and fixture directories.

Example Usage

#[cfg(test)]
mod tests {
    use std::fs;
    use asmov_common_testing::{self as testing, prelude::*};

    static TESTING: testing::StaticModule = testing::module(|| {
        testing::integration(module_path!())
            .using_temp_dir()
            .using_fixture_dir()
            .setup(|module| {
                let tmp_file = module.temp_dir()
                    .join("hello.txt");
                fs::write(&tmp_file,
                    "Hello, Temp").unwrap();
            })
            .teardown_static(teardown)
            .build()
    });

    extern fn teardown() {
        println!("Farewell, sweet test run");
    }

    #[named]
    #[test]
    fn test_things() {
        let test = TESTING.test(function_name!())
            .using_fixture_dir()  
            .inherit_temp_dir()
            .build();

        let temp_file = test.temp_dir()
            .join("hello.txt");
        let temp_text = fs::read_to_string(temp_file)
            .unwrap();
        assert_eq!("Hello, Temp", temp_text);

        let fixture_file = test.fixture_dir()
            .join("sample.txt");
        let fixture_text = fs::read_to_string(fixture_file)
            .unwrap();
        assert_eq!("Hello, Fixture", fixture_text);
    }
}

Documentation

Refer to docs.rs/asmov-common-testing

Repository

Contributors, please review ASMOV.md.

Found a bug? Search for an existing issue on GitHub.
If an issue exists, chime in to add weight to it.
If an issue does not exist, create one and tell us how to reproduce the bug.

License (AGPL3)

Asmov Common Testing: Structured unit and integration testing library
Copyright (C) 2024-2025 Asmov LLC

This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License along with this program. If not, see https://www.gnu.org/licenses/.

Third-Party Licenses

crate: function_name

Our library publically exports the named macro from Daniel Henry-Mantilla's crate: function_name. It is available for use from our crate as asmov_common_testing::named.

License (MIT):
Copyright (c) 2019 Daniel Henry-Mantilla

Dependencies

~6.5MB
~108K SLoC