rhai/tests/arrays.rs

61 lines
1.3 KiB
Rust
Raw Normal View History

#![cfg(not(feature = "no_index"))]
2020-03-02 15:11:56 +01:00
use rhai::{Engine, EvalAltResult, RegisterFn};
2017-11-03 17:58:51 +01:00
#[test]
2020-03-02 15:11:56 +01:00
fn test_arrays() -> Result<(), EvalAltResult> {
2017-11-03 17:58:51 +01:00
let mut engine = Engine::new();
2020-03-02 15:11:56 +01:00
assert_eq!(engine.eval::<i64>("let x = [1, 2, 3]; x[1]")?, 2);
assert_eq!(engine.eval::<i64>("let y = [1, 2, 3]; y[1] = 5; y[1]")?, 5);
Ok(())
2017-11-03 17:58:51 +01:00
}
#[test]
2020-03-02 15:11:56 +01:00
fn test_array_with_structs() -> Result<(), EvalAltResult> {
2017-11-03 17:58:51 +01:00
#[derive(Clone)]
struct TestStruct {
x: i64,
}
impl TestStruct {
fn update(&mut self) {
self.x += 1000;
}
fn get_x(&mut self) -> i64 {
self.x
}
fn set_x(&mut self, new_x: i64) {
self.x = new_x;
}
fn new() -> TestStruct {
TestStruct { x: 1 }
}
}
let mut engine = Engine::new();
engine.register_type::<TestStruct>();
engine.register_get_set("x", TestStruct::get_x, TestStruct::set_x);
engine.register_fn("update", TestStruct::update);
engine.register_fn("new_ts", TestStruct::new);
2020-03-02 15:11:56 +01:00
assert_eq!(engine.eval::<i64>("let a = [new_ts()]; a[0].x")?, 1);
assert_eq!(
engine.eval::<i64>(
"let a = [new_ts()]; \
a[0].x = 100; \
a[0].update(); \
a[0].x",
2020-03-02 15:11:56 +01:00
)?,
1100
);
2020-03-02 15:11:56 +01:00
Ok(())
}