2020-03-29 11:15:12 +02:00
|
|
|
#![cfg(not(feature = "no_object"))]
|
|
|
|
|
2021-03-15 04:36:30 +01:00
|
|
|
use rhai::{Engine, EvalAltResult, INT};
|
2017-11-03 17:58:51 +01:00
|
|
|
|
2022-03-04 05:22:44 +01:00
|
|
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
|
|
|
struct TestStruct {
|
|
|
|
x: INT,
|
|
|
|
}
|
2017-11-03 17:58:51 +01:00
|
|
|
|
2022-03-04 05:22:44 +01:00
|
|
|
impl TestStruct {
|
|
|
|
fn update(&mut self, n: INT) {
|
|
|
|
self.x += n;
|
|
|
|
}
|
2017-11-03 17:58:51 +01:00
|
|
|
|
2022-03-04 05:22:44 +01:00
|
|
|
fn new() -> Self {
|
|
|
|
Self { x: 1 }
|
2017-11-03 17:58:51 +01:00
|
|
|
}
|
2022-03-04 05:22:44 +01:00
|
|
|
}
|
2017-11-03 17:58:51 +01:00
|
|
|
|
2022-03-04 05:22:44 +01:00
|
|
|
#[test]
|
|
|
|
fn test_method_call() -> Result<(), Box<EvalAltResult>> {
|
2017-11-03 17:58:51 +01:00
|
|
|
let mut engine = Engine::new();
|
|
|
|
|
2020-07-12 05:46:53 +02:00
|
|
|
engine
|
|
|
|
.register_type::<TestStruct>()
|
|
|
|
.register_fn("update", TestStruct::update)
|
|
|
|
.register_fn("new_ts", TestStruct::new);
|
2017-11-03 17:58:51 +01:00
|
|
|
|
2020-03-30 10:10:40 +02:00
|
|
|
assert_eq!(
|
2020-05-12 04:20:29 +02:00
|
|
|
engine.eval::<TestStruct>("let x = new_ts(); x.update(1000); x")?,
|
2020-03-30 10:10:40 +02:00
|
|
|
TestStruct { x: 1001 }
|
|
|
|
);
|
2020-03-02 15:11:56 +01:00
|
|
|
|
2020-03-30 10:10:40 +02:00
|
|
|
assert_eq!(
|
2020-05-12 04:20:29 +02:00
|
|
|
engine.eval::<TestStruct>("let x = new_ts(); update(x, 1000); x")?,
|
2020-05-29 12:15:58 +02:00
|
|
|
TestStruct { x: 1001 }
|
2020-03-30 10:10:40 +02:00
|
|
|
);
|
2020-03-27 16:47:23 +01:00
|
|
|
|
2020-03-02 15:11:56 +01:00
|
|
|
Ok(())
|
2017-11-03 17:58:51 +01:00
|
|
|
}
|
2020-05-11 12:55:58 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_method_call_style() -> Result<(), Box<EvalAltResult>> {
|
2020-05-13 15:58:38 +02:00
|
|
|
let engine = Engine::new();
|
2020-05-11 12:55:58 +02:00
|
|
|
|
|
|
|
assert_eq!(engine.eval::<INT>("let x = -123; x.abs(); x")?, -123);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2022-03-04 05:22:44 +01:00
|
|
|
|
|
|
|
#[cfg(not(feature = "no_optimize"))]
|
|
|
|
#[test]
|
|
|
|
fn test_method_call_with_full_optimization() -> Result<(), Box<EvalAltResult>> {
|
|
|
|
let mut engine = Engine::new();
|
|
|
|
|
|
|
|
engine.set_optimization_level(rhai::OptimizationLevel::Full);
|
|
|
|
|
|
|
|
engine
|
|
|
|
.register_fn("new_ts", || TestStruct::new())
|
|
|
|
.register_fn("ymd", |_: INT, _: INT, _: INT| 42 as INT)
|
|
|
|
.register_fn("range", |_: &mut TestStruct, _: INT, _: INT| {
|
|
|
|
TestStruct::new()
|
|
|
|
});
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<TestStruct>(
|
|
|
|
"
|
|
|
|
let xs = new_ts();
|
|
|
|
let ys = xs.range(ymd(2022, 2, 1), ymd(2022, 2, 2));
|
|
|
|
ys
|
|
|
|
"
|
|
|
|
)?,
|
|
|
|
TestStruct::new()
|
|
|
|
);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|