rhai/tests/plugins.rs

59 lines
1.5 KiB
Rust
Raw Normal View History

2020-08-07 02:41:06 +02:00
#![cfg(not(any(feature = "no_index", feature = "no_module")))]
use rhai::plugin::*;
2020-08-02 09:39:16 +02:00
use rhai::{Engine, EvalAltResult, INT};
#[export_module]
2020-08-02 12:53:25 +02:00
mod special_array_package {
2020-08-02 09:39:16 +02:00
use rhai::{Array, INT};
pub fn len(array: &mut Array, mul: INT) -> INT {
(array.len() as INT) * mul
}
}
2020-08-14 07:43:26 +02:00
macro_rules! gen_unary_functions {
($op_name:ident = $op_fn:ident ( $($arg_type:ident),+ ) -> $return_type:ident) => {
mod $op_name { $(
pub mod $arg_type {
use super::super::*;
#[export_fn]
pub fn single(x: $arg_type) -> $return_type {
super::super::$op_fn(x)
}
}
)* }
}
2020-08-02 12:53:25 +02:00
}
2020-08-14 07:43:26 +02:00
macro_rules! reg_functions {
($mod_name:ident += $op_name:ident :: $func:ident ( $($arg_type:ident),+ )) => {
$(register_exported_fn!($mod_name, stringify!($op_name), $op_name::$arg_type::$func);)*
}
}
fn make_greeting<T: std::fmt::Display>(n: T) -> String {
format!("{} kitties", n)
}
gen_unary_functions!(greet = make_greeting(INT, bool, char) -> String);
2020-08-02 09:39:16 +02:00
#[test]
2020-08-02 12:53:25 +02:00
fn test_plugins_package() -> Result<(), Box<EvalAltResult>> {
2020-08-02 09:39:16 +02:00
let mut engine = Engine::new();
2020-08-14 07:43:26 +02:00
let m = exported_module!(special_array_package);
2020-08-02 12:53:25 +02:00
engine.load_package(m);
2020-08-02 09:39:16 +02:00
2020-08-14 07:43:26 +02:00
reg_functions!(engine += greet::single(INT, bool, char));
2020-08-02 12:53:25 +02:00
assert_eq!(engine.eval::<INT>("let a = [1, 2, 3]; len(a, 2)")?, 6);
assert_eq!(
engine.eval::<String>("let a = [1, 2, 3]; greet(len(a, 2))")?,
"6 kitties"
);
2020-08-02 09:39:16 +02:00
Ok(())
}