2020-03-11 06:28:12 +01:00
|
|
|
#![cfg(not(feature = "no_function"))]
|
|
|
|
|
2021-01-03 13:54:08 +01:00
|
|
|
use rhai::{Engine, EvalAltResult, ParseErrorType, INT};
|
2017-11-03 17:58:51 +01:00
|
|
|
|
|
|
|
#[test]
|
2020-04-21 17:25:12 +02:00
|
|
|
fn test_internal_fn() -> Result<(), Box<EvalAltResult>> {
|
2020-04-07 07:23:06 +02:00
|
|
|
let engine = Engine::new();
|
2017-11-03 17:58:51 +01:00
|
|
|
|
2020-04-07 07:23:06 +02:00
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>("fn add_me(a, b) { a+b } add_me(3, 4)")?,
|
|
|
|
7
|
|
|
|
);
|
2020-06-16 16:14:46 +02:00
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>("fn add_me(a, b,) { a+b } add_me(3, 4,)")?,
|
|
|
|
7
|
|
|
|
);
|
|
|
|
|
2020-03-10 16:06:20 +01:00
|
|
|
assert_eq!(engine.eval::<INT>("fn bob() { return 4; 5 } bob()")?, 4);
|
2020-03-02 15:11:56 +01:00
|
|
|
|
|
|
|
Ok(())
|
2017-11-03 17:58:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2020-04-21 17:25:12 +02:00
|
|
|
fn test_big_internal_fn() -> Result<(), Box<EvalAltResult>> {
|
2020-04-07 07:23:06 +02:00
|
|
|
let engine = Engine::new();
|
2017-11-03 17:58:51 +01:00
|
|
|
|
2019-10-09 13:06:32 +02:00
|
|
|
assert_eq!(
|
2020-03-10 16:06:20 +01:00
|
|
|
engine.eval::<INT>(
|
2020-03-02 15:11:56 +01:00
|
|
|
r"
|
2020-04-07 07:23:06 +02:00
|
|
|
fn math_me(a, b, c, d, e, f) {
|
2020-03-02 15:11:56 +01:00
|
|
|
a - b * c + d * e - f
|
|
|
|
}
|
2020-04-07 07:23:06 +02:00
|
|
|
math_me(100, 5, 2, 9, 6, 32)
|
2020-03-02 15:11:56 +01:00
|
|
|
",
|
|
|
|
)?,
|
|
|
|
112
|
2019-10-09 13:06:32 +02:00
|
|
|
);
|
2020-03-02 15:11:56 +01:00
|
|
|
|
|
|
|
Ok(())
|
2017-11-03 17:58:51 +01:00
|
|
|
}
|
2020-03-12 06:02:13 +01:00
|
|
|
|
|
|
|
#[test]
|
2020-04-21 17:25:12 +02:00
|
|
|
fn test_internal_fn_overloading() -> Result<(), Box<EvalAltResult>> {
|
2020-04-07 07:23:06 +02:00
|
|
|
let engine = Engine::new();
|
2020-03-12 06:02:13 +01:00
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
2021-01-03 13:54:08 +01:00
|
|
|
r"
|
2020-03-12 06:02:13 +01:00
|
|
|
fn abc(x,y,z) { 2*x + 3*y + 4*z + 888 }
|
|
|
|
fn abc(x,y) { x + 2*y + 88 }
|
|
|
|
fn abc() { 42 }
|
2021-01-03 13:54:08 +01:00
|
|
|
fn abc(x) { x - 42 }
|
2020-03-12 06:02:13 +01:00
|
|
|
|
|
|
|
abc() + abc(1) + abc(1,2) + abc(1,2,3)
|
2021-01-03 13:54:08 +01:00
|
|
|
"
|
2020-03-12 06:02:13 +01:00
|
|
|
)?,
|
|
|
|
1002
|
|
|
|
);
|
|
|
|
|
2021-01-03 13:54:08 +01:00
|
|
|
assert_eq!(
|
|
|
|
*engine
|
|
|
|
.compile(
|
|
|
|
r"
|
2021-01-24 14:21:15 +01:00
|
|
|
fn abc(x) { x + 42 }
|
|
|
|
fn abc(x) { x - 42 }
|
|
|
|
"
|
2021-01-03 13:54:08 +01:00
|
|
|
)
|
|
|
|
.expect_err("should error")
|
|
|
|
.0,
|
|
|
|
ParseErrorType::FnDuplicatedDefinition("abc".to_string(), 1)
|
|
|
|
);
|
|
|
|
|
2020-03-12 06:02:13 +01:00
|
|
|
Ok(())
|
|
|
|
}
|