2020-03-10 16:06:20 +01:00
|
|
|
use rhai::{Engine, EvalAltResult, Scope, INT};
|
2017-11-03 17:58:51 +01:00
|
|
|
|
|
|
|
#[test]
|
2020-04-21 17:25:12 +02:00
|
|
|
fn test_var_scope() -> Result<(), Box<EvalAltResult>> {
|
2020-04-07 07:23:06 +02:00
|
|
|
let engine = Engine::new();
|
2019-09-18 12:21:07 +02:00
|
|
|
let mut scope = Scope::new();
|
2017-11-03 17:58:51 +01:00
|
|
|
|
2020-03-12 07:54:14 +01:00
|
|
|
engine.eval_with_scope::<()>(&mut scope, "let x = 4 + 5")?;
|
|
|
|
assert_eq!(engine.eval_with_scope::<INT>(&mut scope, "x")?, 9);
|
2020-07-06 10:20:03 +02:00
|
|
|
engine.eval_with_scope::<()>(&mut scope, "x += 1; x += 2;")?;
|
2020-03-12 07:54:14 +01:00
|
|
|
assert_eq!(engine.eval_with_scope::<INT>(&mut scope, "x")?, 12);
|
2020-04-05 13:17:48 +02:00
|
|
|
|
|
|
|
scope.set_value("x", 42 as INT);
|
|
|
|
assert_eq!(engine.eval_with_scope::<INT>(&mut scope, "x")?, 42);
|
|
|
|
|
2020-03-24 09:57:35 +01:00
|
|
|
engine.eval_with_scope::<()>(&mut scope, "{let x = 3}")?;
|
2020-04-05 13:17:48 +02:00
|
|
|
assert_eq!(engine.eval_with_scope::<INT>(&mut scope, "x")?, 42);
|
2017-11-03 17:58:51 +01:00
|
|
|
|
2020-03-02 15:11:56 +01:00
|
|
|
Ok(())
|
2017-11-03 17:58:51 +01:00
|
|
|
}
|
2020-03-03 08:20:20 +01:00
|
|
|
|
|
|
|
#[test]
|
2020-04-21 17:25:12 +02:00
|
|
|
fn test_scope_eval() -> Result<(), Box<EvalAltResult>> {
|
2020-04-07 07:23:06 +02:00
|
|
|
let engine = Engine::new();
|
2020-03-03 08:20:20 +01:00
|
|
|
|
|
|
|
// First create the state
|
|
|
|
let mut scope = Scope::new();
|
|
|
|
|
|
|
|
// Then push some initialized variables into the state
|
2020-03-10 16:06:20 +01:00
|
|
|
// NOTE: Remember the default numbers used by Rhai are INT and f64.
|
2020-03-03 08:20:20 +01:00
|
|
|
// Better stick to them or it gets hard to work with other variables in the script.
|
2020-03-10 16:06:20 +01:00
|
|
|
scope.push("y", 42 as INT);
|
|
|
|
scope.push("z", 999 as INT);
|
2020-03-03 08:20:20 +01:00
|
|
|
|
|
|
|
// First invocation
|
|
|
|
engine
|
2020-03-12 07:54:14 +01:00
|
|
|
.eval_with_scope::<()>(&mut scope, " let x = 4 + 5 - y + z; y = 1;")
|
2020-03-03 08:20:20 +01:00
|
|
|
.expect("y and z not found?");
|
|
|
|
|
|
|
|
// Second invocation using the same state
|
2020-03-12 07:54:14 +01:00
|
|
|
let result = engine.eval_with_scope::<INT>(&mut scope, "x")?;
|
2020-03-09 14:09:53 +01:00
|
|
|
|
|
|
|
println!("result: {}", result); // should print 966
|
2020-03-03 08:20:20 +01:00
|
|
|
|
|
|
|
// Variable y is changed in the script
|
2020-03-12 05:35:30 +01:00
|
|
|
assert_eq!(
|
|
|
|
scope
|
|
|
|
.get_value::<INT>("y")
|
2020-03-19 13:55:53 +01:00
|
|
|
.expect("variable y should exist"),
|
2020-03-12 05:35:30 +01:00
|
|
|
1
|
|
|
|
);
|
2020-03-03 08:20:20 +01:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|