2020-03-11 06:28:12 +01:00
|
|
|
#![cfg(not(feature = "no_function"))]
|
2020-04-09 04:38:33 +02:00
|
|
|
use rhai::{Engine, EvalAltResult, Func, ParseErrorType, Scope, INT};
|
2020-03-27 09:46:08 +01:00
|
|
|
|
|
|
|
#[test]
|
2020-04-21 17:25:12 +02:00
|
|
|
fn test_fn() -> Result<(), Box<EvalAltResult>> {
|
2020-03-27 16:47:23 +01:00
|
|
|
let engine = Engine::new();
|
2020-03-27 09:46:08 +01:00
|
|
|
|
|
|
|
// Expect duplicated parameters error
|
|
|
|
match engine
|
|
|
|
.compile("fn hello(x, x) { x }")
|
|
|
|
.expect_err("should be error")
|
|
|
|
.error_type()
|
|
|
|
{
|
2020-03-29 07:44:27 +02:00
|
|
|
ParseErrorType::FnDuplicatedParam(f, p) if f == "hello" && p == "x" => (),
|
2020-03-27 09:46:08 +01:00
|
|
|
_ => assert!(false, "wrong error"),
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2020-03-04 15:00:01 +01:00
|
|
|
|
|
|
|
#[test]
|
2020-04-21 17:25:12 +02:00
|
|
|
fn test_call_fn() -> Result<(), Box<EvalAltResult>> {
|
2020-04-07 07:23:06 +02:00
|
|
|
let engine = Engine::new();
|
2020-04-05 06:17:31 +02:00
|
|
|
let mut scope = Scope::new();
|
|
|
|
|
|
|
|
scope.push("foo", 42 as INT);
|
2020-03-04 15:00:01 +01:00
|
|
|
|
2020-04-04 16:00:44 +02:00
|
|
|
let ast = engine.compile(
|
2020-03-10 07:09:05 +01:00
|
|
|
r"
|
|
|
|
fn hello(x, y) {
|
2020-03-15 15:39:58 +01:00
|
|
|
x + y
|
2020-03-12 07:54:14 +01:00
|
|
|
}
|
|
|
|
fn hello(x) {
|
2020-04-05 06:57:20 +02:00
|
|
|
x = x * foo;
|
|
|
|
foo = 1;
|
|
|
|
x
|
2020-03-10 07:09:05 +01:00
|
|
|
}
|
2020-04-04 16:00:44 +02:00
|
|
|
fn hello() {
|
2020-04-05 06:57:20 +02:00
|
|
|
41 + foo
|
2020-04-04 16:00:44 +02:00
|
|
|
}
|
|
|
|
",
|
2020-03-10 07:09:05 +01:00
|
|
|
)?;
|
2020-03-04 15:00:01 +01:00
|
|
|
|
2020-04-05 06:17:31 +02:00
|
|
|
let r: i64 = engine.call_fn(&mut scope, &ast, "hello", (42 as INT, 123 as INT))?;
|
2020-03-15 15:39:58 +01:00
|
|
|
assert_eq!(r, 165);
|
2020-03-04 15:00:01 +01:00
|
|
|
|
2020-04-07 15:50:33 +02:00
|
|
|
let r: i64 = engine.call_fn(&mut scope, &ast, "hello", (123 as INT,))?;
|
2020-04-05 06:17:31 +02:00
|
|
|
assert_eq!(r, 5166);
|
2020-03-04 15:00:01 +01:00
|
|
|
|
2020-04-07 15:50:33 +02:00
|
|
|
let r: i64 = engine.call_fn(&mut scope, &ast, "hello", ())?;
|
2020-04-05 06:57:20 +02:00
|
|
|
assert_eq!(r, 42);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
scope
|
|
|
|
.get_value::<INT>("foo")
|
|
|
|
.expect("variable foo should exist"),
|
|
|
|
1
|
|
|
|
);
|
2020-04-04 16:00:44 +02:00
|
|
|
|
2020-03-04 15:00:01 +01:00
|
|
|
Ok(())
|
|
|
|
}
|
2020-04-08 17:01:48 +02:00
|
|
|
|
|
|
|
#[test]
|
2020-04-21 17:25:12 +02:00
|
|
|
fn test_anonymous_fn() -> Result<(), Box<EvalAltResult>> {
|
2020-04-09 04:38:33 +02:00
|
|
|
let calc_func = Func::<(INT, INT, INT), INT>::create_from_script(
|
2020-04-08 17:01:48 +02:00
|
|
|
Engine::new(),
|
|
|
|
"fn calc(x, y, z) { (x + y) * z }",
|
|
|
|
"calc",
|
|
|
|
)?;
|
|
|
|
|
|
|
|
assert_eq!(calc_func(42, 123, 9)?, 1485);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|