zinkc_filetests/
lib.rs

1#![deny(missing_docs)]
2//! Zink filetests
3
4include!(concat!(env!("OUT_DIR"), "/tests.rs"));
5
6/// A wat test
7#[derive(Clone)]
8pub struct Test {
9    /// The module name
10    pub module: String,
11    /// The test name
12    pub name: String,
13    /// The test source
14    pub wasm: Vec<u8>,
15}
16
17#[cfg(test)]
18impl Test {
19    /// Compile test to evm bytecode.
20    pub fn compile(&self) -> anyhow::Result<()> {
21        tracing_subscriber::fmt()
22            .with_env_filter(tracing_subscriber::EnvFilter::from_default_env())
23            .without_time()
24            .compact()
25            .try_init()
26            .ok();
27
28        let Test { module, name, wasm } = self;
29        tracing::info!("Compiling {module}::{name}");
30
31        let compiler = zinkc::Compiler::default();
32        // TODO: after #248
33        if name == "fibonacci" {
34            return Ok(());
35        }
36        compiler.compile(&wasm)?;
37        Ok(())
38    }
39}
40
41/// Generate tests for different modules.
42#[allow(clippy::crate_in_macro_def)]
43#[macro_export]
44macro_rules! impl_tests {
45    (
46        tests: $tests:tt,
47        modules: [$($mod:expr),+]
48    ) => {
49        $(
50            impl_tests!(@module $mod, $tests);
51        )*
52    };
53    (@module  $module:tt, [$($test:ident),+]) => {
54        paste::paste! {
55            mod [< $module >] {
56                $(
57                    #[test]
58                    fn $test() -> anyhow::Result<()> {
59                        crate::$test($module)
60                    }
61                )*
62            }
63        }
64    }
65}