rhai/tests/functions.rs

69 lines
1.8 KiB
Rust
Raw Normal View History

2020-05-12 04:20:29 +02:00
#![cfg(not(feature = "no_function"))]
use rhai::{Engine, EvalAltResult, FnNamespace, Module, ParseErrorType, Shared, INT};
2020-05-12 04:20:29 +02:00
2021-04-03 06:00:22 +02:00
#[cfg(not(feature = "no_object"))]
2020-05-12 04:20:29 +02:00
#[test]
fn test_functions_trait_object() -> Result<(), Box<EvalAltResult>> {
trait TestTrait {
fn greet(&self) -> INT;
}
2020-06-26 04:39:18 +02:00
#[derive(Debug, Clone)]
struct ABC(INT);
2020-05-12 04:20:29 +02:00
impl TestTrait for ABC {
fn greet(&self) -> INT {
self.0
}
}
2021-04-03 06:10:08 +02:00
#[cfg(not(feature = "sync"))]
type MySharedTestTrait = Shared<dyn TestTrait>;
2020-06-25 12:07:57 +02:00
2021-04-03 06:10:08 +02:00
#[cfg(feature = "sync")]
type MySharedTestTrait = Shared<dyn TestTrait + Send + Sync>;
2021-03-15 14:30:45 +01:00
let mut engine = Engine::new();
engine
.register_type_with_name::<MySharedTestTrait>("MySharedTestTrait")
.register_fn("new_ts", || Shared::new(ABC(42)) as MySharedTestTrait)
.register_fn("greet", |x: MySharedTestTrait| x.greet());
2021-03-15 14:30:45 +01:00
2021-01-28 08:29:55 +01:00
assert_eq!(
engine.eval::<String>("type_of(new_ts())")?,
"MySharedTestTrait"
2021-01-28 08:29:55 +01:00
);
assert_eq!(engine.eval::<INT>("let x = new_ts(); greet(x)")?, 42);
2021-01-28 08:29:55 +01:00
Ok(())
}
2020-12-07 14:54:52 +01:00
#[test]
fn test_functions_namespaces() -> Result<(), Box<EvalAltResult>> {
let mut engine = Engine::new();
#[cfg(not(feature = "no_module"))]
{
let mut m = Module::new();
2021-03-15 05:39:06 +01:00
let hash = m.set_native_fn("test", || Ok(999 as INT));
2020-12-07 14:54:52 +01:00
m.update_fn_namespace(hash, FnNamespace::Global);
engine.register_static_module("hello", m.into());
2020-12-07 14:54:52 +01:00
assert_eq!(engine.eval::<INT>("test()")?, 999);
2021-03-15 14:30:45 +01:00
#[cfg(not(feature = "no_function"))]
2020-12-07 14:54:52 +01:00
assert_eq!(engine.eval::<INT>("fn test() { 123 } test()")?, 123);
}
engine.register_fn("test", || 42 as INT);
assert_eq!(engine.eval::<INT>("test()")?, 42);
2021-03-15 14:30:45 +01:00
#[cfg(not(feature = "no_function"))]
2020-12-07 14:54:52 +01:00
assert_eq!(engine.eval::<INT>("fn test() { 123 } test()")?, 123);
Ok(())
}