2020-05-12 10:20:29 +08:00
|
|
|
#![cfg(not(feature = "no_function"))]
|
2020-05-13 21:58:38 +08:00
|
|
|
use rhai::{Engine, EvalAltResult, INT};
|
2020-05-12 10:20:29 +08:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_functions() -> Result<(), Box<EvalAltResult>> {
|
|
|
|
let engine = Engine::new();
|
|
|
|
|
2020-05-13 13:49:01 +08:00
|
|
|
assert_eq!(engine.eval::<INT>("fn add(x, n) { x + n } add(40, 2)")?, 42);
|
2020-05-12 10:20:29 +08:00
|
|
|
|
2020-05-29 00:53:30 +08:00
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>("fn add(x, n) { x + n } let a = 40; add(a, 2); a")?,
|
|
|
|
40
|
|
|
|
);
|
|
|
|
|
2020-05-12 10:20:29 +08:00
|
|
|
#[cfg(not(feature = "no_object"))]
|
|
|
|
assert_eq!(
|
2020-05-13 13:49:01 +08:00
|
|
|
engine.eval::<INT>("fn add(x, n) { x + n } let x = 40; x.add(2)")?,
|
2020-05-12 10:20:29 +08:00
|
|
|
42
|
|
|
|
);
|
|
|
|
|
2020-05-29 00:53:30 +08:00
|
|
|
#[cfg(not(feature = "no_object"))]
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>("fn add(x, n) { x += n; } let x = 40; x.add(2); x")?,
|
|
|
|
40
|
|
|
|
);
|
|
|
|
|
2020-05-13 13:49:01 +08:00
|
|
|
assert_eq!(engine.eval::<INT>("fn mul2(x) { x * 2 } mul2(21)")?, 42);
|
2020-05-12 10:20:29 +08:00
|
|
|
|
|
|
|
#[cfg(not(feature = "no_object"))]
|
|
|
|
assert_eq!(
|
2020-05-13 13:49:01 +08:00
|
|
|
engine.eval::<INT>("fn mul2(x) { x * 2 } let x = 21; x.mul2()")?,
|
2020-05-12 10:20:29 +08:00
|
|
|
42
|
|
|
|
);
|
|
|
|
|
2020-05-29 00:53:30 +08:00
|
|
|
#[cfg(not(feature = "no_object"))]
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>("fn mul2(x) { x *= 2; } let x = 21; x.mul2(); x")?,
|
|
|
|
21
|
|
|
|
);
|
|
|
|
|
2020-05-12 10:20:29 +08:00
|
|
|
Ok(())
|
|
|
|
}
|