Add eval test.

This commit is contained in:
Stephen Chung 2020-03-19 20:55:53 +08:00
parent 702b2010f2
commit 36b7124dd5
2 changed files with 62 additions and 4 deletions

61
tests/eval.rs Normal file
View File

@ -0,0 +1,61 @@
use rhai::{Engine, EvalAltResult, Scope, INT};
#[test]
fn test_eval() -> Result<(), EvalAltResult> {
let mut engine = Engine::new();
let mut scope = Scope::new();
assert_eq!(
engine.eval_with_scope::<INT>(
&mut scope,
r#"
let x = 10;
fn foo(x) { x += 12; x }
let script = "let y = x;"; // build a script
script += "y += foo(y);";
script += "x + y";
eval(script)
"#
)?,
42
);
assert_eq!(
scope
.get_value::<INT>("x")
.expect("variable x should exist"),
10
);
assert_eq!(
scope
.get_value::<INT>("y")
.expect("variable y should exist"),
32
);
assert!(!scope.contains("z"));
Ok(())
}
#[test]
fn test_eval_override() -> Result<(), EvalAltResult> {
let mut engine = Engine::new();
assert_eq!(
engine.eval::<String>(
r#"
fn eval(x) { x } // reflect the script back
eval("40 + 2")
"#
)?,
"40 + 2"
);
Ok(())
}

View File

@ -42,10 +42,7 @@ fn test_scope_eval() -> Result<(), EvalAltResult> {
assert_eq!( assert_eq!(
scope scope
.get_value::<INT>("y") .get_value::<INT>("y")
.ok_or(EvalAltResult::ErrorRuntime( .expect("variable y should exist"),
"variable y not found".into(),
Default::default()
))?,
1 1
); );