2020-03-11 13:28:12 +08:00
|
|
|
#![cfg(not(feature = "no_function"))]
|
2021-01-28 15:29:55 +08:00
|
|
|
use rhai::{Dynamic, Engine, EvalAltResult, FnPtr, Func, FuncArgs, RegisterFn, Scope, INT};
|
|
|
|
use std::{any::TypeId, iter::once};
|
2020-03-04 22:00:01 +08:00
|
|
|
|
|
|
|
#[test]
|
2020-04-21 23:25:12 +08:00
|
|
|
fn test_call_fn() -> Result<(), Box<EvalAltResult>> {
|
2020-04-07 13:23:06 +08:00
|
|
|
let engine = Engine::new();
|
2020-04-05 12:17:31 +08:00
|
|
|
let mut scope = Scope::new();
|
|
|
|
|
|
|
|
scope.push("foo", 42 as INT);
|
2020-03-04 22:00:01 +08:00
|
|
|
|
2020-04-04 22:00:44 +08:00
|
|
|
let ast = engine.compile(
|
2020-03-10 14:09:05 +08:00
|
|
|
r"
|
|
|
|
fn hello(x, y) {
|
2020-03-15 22:39:58 +08:00
|
|
|
x + y
|
2020-03-12 14:54:14 +08:00
|
|
|
}
|
|
|
|
fn hello(x) {
|
2020-07-06 16:20:03 +08:00
|
|
|
x *= foo;
|
2020-04-05 12:57:20 +08:00
|
|
|
foo = 1;
|
|
|
|
x
|
2020-03-10 14:09:05 +08:00
|
|
|
}
|
2020-04-04 22:00:44 +08:00
|
|
|
fn hello() {
|
2020-04-05 12:57:20 +08:00
|
|
|
41 + foo
|
2020-04-04 22:00:44 +08:00
|
|
|
}
|
2020-11-06 13:41:04 +08:00
|
|
|
fn define_var() {
|
|
|
|
let bar = 21;
|
|
|
|
bar * 2
|
|
|
|
}
|
2020-04-04 22:00:44 +08:00
|
|
|
",
|
2020-03-10 14:09:05 +08:00
|
|
|
)?;
|
2020-03-04 22:00:01 +08:00
|
|
|
|
2020-05-13 13:49:01 +08:00
|
|
|
let r: INT = engine.call_fn(&mut scope, &ast, "hello", (42 as INT, 123 as INT))?;
|
2020-03-15 22:39:58 +08:00
|
|
|
assert_eq!(r, 165);
|
2020-03-04 22:00:01 +08:00
|
|
|
|
2020-05-13 13:49:01 +08:00
|
|
|
let r: INT = engine.call_fn(&mut scope, &ast, "hello", (123 as INT,))?;
|
2020-04-05 12:17:31 +08:00
|
|
|
assert_eq!(r, 5166);
|
2020-03-04 22:00:01 +08:00
|
|
|
|
2020-05-13 13:49:01 +08:00
|
|
|
let r: INT = engine.call_fn(&mut scope, &ast, "hello", ())?;
|
2020-04-05 12:57:20 +08:00
|
|
|
assert_eq!(r, 42);
|
|
|
|
|
2020-11-06 13:41:04 +08:00
|
|
|
let r: INT = engine.call_fn(&mut scope, &ast, "define_var", ())?;
|
|
|
|
assert_eq!(r, 42);
|
|
|
|
|
|
|
|
assert!(!scope.contains("bar"));
|
|
|
|
|
2020-04-05 12:57:20 +08:00
|
|
|
assert_eq!(
|
|
|
|
scope
|
|
|
|
.get_value::<INT>("foo")
|
|
|
|
.expect("variable foo should exist"),
|
|
|
|
1
|
|
|
|
);
|
2020-04-04 22:00:44 +08:00
|
|
|
|
2020-03-04 22:00:01 +08:00
|
|
|
Ok(())
|
|
|
|
}
|
2020-04-08 23:01:48 +08:00
|
|
|
|
2021-01-28 15:29:55 +08:00
|
|
|
struct Options {
|
|
|
|
pub foo: bool,
|
|
|
|
pub bar: String,
|
|
|
|
pub baz: INT,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FuncArgs for Options {
|
|
|
|
fn parse<C: Extend<Dynamic>>(self, container: &mut C) {
|
|
|
|
container.extend(once(self.foo.into()));
|
|
|
|
container.extend(once(self.bar.into()));
|
|
|
|
container.extend(once(self.baz.into()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_call_fn_args() -> Result<(), Box<EvalAltResult>> {
|
|
|
|
let options = Options {
|
|
|
|
foo: false,
|
|
|
|
bar: "world".to_string(),
|
|
|
|
baz: 42,
|
|
|
|
};
|
|
|
|
|
|
|
|
let engine = Engine::new();
|
|
|
|
let mut scope = Scope::new();
|
|
|
|
|
|
|
|
let ast = engine.compile(
|
|
|
|
r#"
|
|
|
|
fn hello(x, y, z) {
|
|
|
|
if x { "hello " + y } else { y + z }
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
)?;
|
|
|
|
|
|
|
|
let result: String = engine.call_fn(&mut scope, &ast, "hello", options)?;
|
|
|
|
|
|
|
|
assert_eq!(result, "world42");
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-05-13 13:49:01 +08:00
|
|
|
#[test]
|
|
|
|
fn test_call_fn_private() -> Result<(), Box<EvalAltResult>> {
|
|
|
|
let engine = Engine::new();
|
|
|
|
let mut scope = Scope::new();
|
|
|
|
|
|
|
|
let ast = engine.compile("fn add(x, n) { x + n }")?;
|
|
|
|
|
|
|
|
let r: INT = engine.call_fn(&mut scope, &ast, "add", (40 as INT, 2 as INT))?;
|
|
|
|
assert_eq!(r, 42);
|
|
|
|
|
2020-06-16 22:14:46 +08:00
|
|
|
let ast = engine.compile("private fn add(x, n, ) { x + n }")?;
|
2020-05-13 13:49:01 +08:00
|
|
|
|
2021-03-01 15:39:49 +08:00
|
|
|
let r: INT = engine.call_fn(&mut scope, &ast, "add", (40 as INT, 2 as INT))?;
|
|
|
|
assert_eq!(r, 42);
|
2020-05-13 13:49:01 +08:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-07-05 23:08:44 +08:00
|
|
|
#[test]
|
2020-07-13 19:38:50 +08:00
|
|
|
#[cfg(not(feature = "no_object"))]
|
2020-07-17 10:18:07 +08:00
|
|
|
fn test_fn_ptr_raw() -> Result<(), Box<EvalAltResult>> {
|
2020-07-05 23:08:44 +08:00
|
|
|
let mut engine = Engine::new();
|
|
|
|
|
2020-08-03 10:07:52 +08:00
|
|
|
#[allow(deprecated)]
|
2020-07-27 12:52:32 +08:00
|
|
|
engine
|
|
|
|
.register_fn("mul", |x: &mut INT, y: INT| *x *= y)
|
|
|
|
.register_raw_fn(
|
|
|
|
"bar",
|
|
|
|
&[
|
|
|
|
TypeId::of::<INT>(),
|
|
|
|
TypeId::of::<FnPtr>(),
|
|
|
|
TypeId::of::<INT>(),
|
|
|
|
],
|
2020-10-18 17:02:17 +08:00
|
|
|
move |context, args| {
|
2020-07-27 12:52:32 +08:00
|
|
|
let fp = std::mem::take(args[1]).cast::<FnPtr>();
|
|
|
|
let value = args[2].clone();
|
|
|
|
let this_ptr = args.get_mut(0).unwrap();
|
|
|
|
|
2020-10-18 17:02:17 +08:00
|
|
|
fp.call_dynamic(context, Some(this_ptr), [value])
|
2020-07-27 12:52:32 +08:00
|
|
|
},
|
|
|
|
);
|
2020-07-05 23:08:44 +08:00
|
|
|
|
2020-07-06 12:04:02 +08:00
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
|
|
|
r#"
|
|
|
|
fn foo(x) { this += x; }
|
|
|
|
|
|
|
|
let x = 41;
|
2020-07-07 22:59:23 +08:00
|
|
|
x.bar(Fn("foo"), 1);
|
2020-07-06 12:04:02 +08:00
|
|
|
x
|
|
|
|
"#
|
|
|
|
)?,
|
|
|
|
42
|
|
|
|
);
|
2020-07-05 23:08:44 +08:00
|
|
|
|
2020-08-22 22:44:24 +08:00
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
|
|
|
r#"
|
|
|
|
fn foo(x, y) { this += x + y; }
|
|
|
|
|
|
|
|
let x = 40;
|
|
|
|
let v = 1;
|
|
|
|
x.bar(Fn("foo").curry(v), 1);
|
|
|
|
x
|
|
|
|
"#
|
|
|
|
)?,
|
|
|
|
42
|
|
|
|
);
|
|
|
|
|
2021-03-01 15:39:49 +08:00
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
2020-07-27 12:52:32 +08:00
|
|
|
r#"
|
|
|
|
private fn foo(x) { this += x; }
|
|
|
|
|
|
|
|
let x = 41;
|
|
|
|
x.bar(Fn("foo"), 1);
|
|
|
|
x
|
|
|
|
"#
|
2021-03-01 15:39:49 +08:00
|
|
|
)?,
|
|
|
|
42
|
|
|
|
);
|
2020-07-27 12:52:32 +08:00
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
|
|
|
r#"
|
|
|
|
let x = 21;
|
|
|
|
x.bar(Fn("mul"), 2);
|
|
|
|
x
|
|
|
|
"#
|
|
|
|
)?,
|
|
|
|
42
|
|
|
|
);
|
|
|
|
|
2020-07-05 23:08:44 +08:00
|
|
|
Ok(())
|
|
|
|
}
|
2020-07-23 04:53:40 +07:00
|
|
|
|
|
|
|
#[test]
|
2020-07-29 22:43:57 +08:00
|
|
|
fn test_anonymous_fn() -> Result<(), Box<EvalAltResult>> {
|
|
|
|
let calc_func = Func::<(INT, INT, INT), INT>::create_from_script(
|
|
|
|
Engine::new(),
|
|
|
|
"fn calc(x, y, z,) { (x + y) * z }",
|
|
|
|
"calc",
|
|
|
|
)?;
|
2020-07-26 09:18:18 +07:00
|
|
|
|
2020-07-29 22:43:57 +08:00
|
|
|
assert_eq!(calc_func(42, 123, 9)?, 1485);
|
2020-07-26 09:18:18 +07:00
|
|
|
|
2020-07-29 22:43:57 +08:00
|
|
|
let calc_func = Func::<(INT, String, INT), INT>::create_from_script(
|
|
|
|
Engine::new(),
|
|
|
|
"fn calc(x, y, z) { (x + len(y)) * z }",
|
|
|
|
"calc",
|
|
|
|
)?;
|
2020-07-26 09:18:18 +07:00
|
|
|
|
2020-07-29 22:43:57 +08:00
|
|
|
assert_eq!(calc_func(42, "hello".to_string(), 9)?, 423);
|
2020-07-26 09:18:18 +07:00
|
|
|
|
2021-03-01 15:39:49 +08:00
|
|
|
let calc_func = Func::<(INT, String, INT), INT>::create_from_script(
|
2020-07-29 22:43:57 +08:00
|
|
|
Engine::new(),
|
2021-03-01 15:39:49 +08:00
|
|
|
"private fn calc(x, y, z) { (x + len(y)) * z }",
|
2020-07-29 22:43:57 +08:00
|
|
|
"calc",
|
|
|
|
)?;
|
2020-07-26 09:18:18 +07:00
|
|
|
|
2021-03-01 15:39:49 +08:00
|
|
|
assert_eq!(calc_func(42, "hello".to_string(), 9)?, 423);
|
2020-07-26 09:18:18 +07:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|