2020-07-29 16:43:57 +02:00
|
|
|
#![cfg(not(feature = "no_function"))]
|
2020-07-31 07:08:14 +02:00
|
|
|
use rhai::{Dynamic, Engine, EvalAltResult, FnPtr, Module, INT};
|
|
|
|
use std::any::TypeId;
|
|
|
|
|
2020-07-29 16:43:57 +02:00
|
|
|
#[test]
|
|
|
|
fn test_fn_ptr_curry_call() -> Result<(), Box<EvalAltResult>> {
|
|
|
|
let mut module = Module::new();
|
|
|
|
|
|
|
|
module.set_raw_fn(
|
|
|
|
"call_with_arg",
|
|
|
|
&[TypeId::of::<FnPtr>(), TypeId::of::<INT>()],
|
|
|
|
|engine: &Engine, lib: &Module, args: &mut [&mut Dynamic]| {
|
|
|
|
let fn_ptr = std::mem::take(args[0]).cast::<FnPtr>();
|
|
|
|
fn_ptr.call_dynamic(engine, lib, None, [std::mem::take(args[1])])
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
let mut engine = Engine::new();
|
2020-08-02 12:55:22 +02:00
|
|
|
engine.load_package(module);
|
2020-07-29 16:43:57 +02:00
|
|
|
|
|
|
|
#[cfg(not(feature = "no_object"))]
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
|
|
|
r#"
|
|
|
|
let addition = |x, y| { x + y };
|
|
|
|
let curried = addition.curry(2);
|
|
|
|
|
|
|
|
call_with_arg(curried, 40)
|
|
|
|
"#
|
|
|
|
)?,
|
|
|
|
42
|
|
|
|
);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2020-08-03 06:10:20 +02:00
|
|
|
#[cfg(not(feature = "no_closure"))]
|
|
|
|
#[cfg(not(feature = "no_object"))]
|
2020-07-29 16:43:57 +02:00
|
|
|
fn test_closures() -> Result<(), Box<EvalAltResult>> {
|
|
|
|
let engine = Engine::new();
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
|
|
|
r#"
|
|
|
|
let x = 8;
|
|
|
|
|
|
|
|
let res = |y, z| {
|
|
|
|
let w = 12;
|
|
|
|
|
|
|
|
return (|| x + y + z + w).call();
|
|
|
|
}.curry(15).call(2);
|
|
|
|
|
|
|
|
res + (|| x - 3).call()
|
|
|
|
"#
|
|
|
|
)?,
|
|
|
|
42
|
|
|
|
);
|
|
|
|
|
2020-08-03 06:10:20 +02:00
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
|
|
|
r#"
|
|
|
|
let a = 41;
|
|
|
|
let foo = |x| { a += x };
|
|
|
|
foo.call(1);
|
|
|
|
a
|
|
|
|
"#
|
|
|
|
)?,
|
|
|
|
42
|
|
|
|
);
|
|
|
|
|
|
|
|
assert!(engine.eval::<bool>(
|
|
|
|
r#"
|
|
|
|
let a = 41;
|
|
|
|
let foo = |x| { a += x };
|
|
|
|
a.is_shared()
|
|
|
|
"#
|
|
|
|
)?);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(not(feature = "no_closure"))]
|
|
|
|
#[cfg(not(feature = "no_object"))]
|
2020-08-05 16:53:01 +02:00
|
|
|
#[cfg(not(feature = "sync"))]
|
2020-08-03 06:10:20 +02:00
|
|
|
fn test_closures_data_race() -> Result<(), Box<EvalAltResult>> {
|
|
|
|
let engine = Engine::new();
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
|
|
|
r#"
|
|
|
|
let a = 1;
|
|
|
|
let b = 40;
|
|
|
|
let foo = |x| { this += a + x };
|
|
|
|
b.call(foo, 1);
|
|
|
|
b
|
|
|
|
"#
|
|
|
|
)?,
|
|
|
|
42
|
|
|
|
);
|
|
|
|
|
|
|
|
assert!(matches!(
|
|
|
|
*engine
|
|
|
|
.eval::<INT>(
|
|
|
|
r#"
|
|
|
|
let a = 20;
|
|
|
|
let foo = |x| { this += a + x };
|
|
|
|
a.call(foo, 1);
|
|
|
|
a
|
|
|
|
"#
|
|
|
|
)
|
|
|
|
.expect_err("should error"),
|
|
|
|
EvalAltResult::ErrorDataRace(_, _)
|
|
|
|
));
|
|
|
|
|
2020-07-29 16:43:57 +02:00
|
|
|
Ok(())
|
|
|
|
}
|