rhai/tests/syntax.rs

78 lines
2.4 KiB
Rust
Raw Normal View History

2020-07-09 13:54:28 +02:00
#![cfg(feature = "internals")]
use rhai::{
2020-07-11 09:09:17 +02:00
Dynamic, Engine, EvalAltResult, EvalState, Expression, Imports, LexError, Module, Scope, INT,
2020-07-09 13:54:28 +02:00
};
#[test]
fn test_custom_syntax() -> Result<(), Box<EvalAltResult>> {
let mut engine = Engine::new();
2020-07-10 16:01:47 +02:00
// Disable 'while' and make sure it still works with custom syntax
engine.disable_symbol("while");
engine.consume("while false {}").expect_err("should error");
engine.consume("let while = 0")?;
2020-07-09 13:54:28 +02:00
engine
2020-07-10 16:01:47 +02:00
.register_custom_syntax(
&[
"do", "|", "$ident$", "|", "->", "$block$", "while", "$expr$",
],
2020-07-09 13:54:28 +02:00
1,
|engine: &Engine,
scope: &mut Scope,
mods: &mut Imports,
state: &mut EvalState,
lib: &Module,
this_ptr: &mut Option<&mut Dynamic>,
2020-07-11 09:09:17 +02:00
inputs: &[Expression],
2020-07-09 13:54:28 +02:00
level: usize| {
2020-07-10 16:01:47 +02:00
let var_name = inputs[0].get_variable_name().unwrap().to_string();
let stmt = inputs.get(1).unwrap();
let expr = inputs.get(2).unwrap();
2020-07-09 13:54:28 +02:00
scope.push(var_name, 0 as INT);
loop {
2020-07-10 16:01:47 +02:00
engine.eval_expression_tree(scope, mods, state, lib, this_ptr, stmt, level)?;
2020-07-09 13:54:28 +02:00
if !engine
2020-07-10 16:01:47 +02:00
.eval_expression_tree(scope, mods, state, lib, this_ptr, expr, level)?
2020-07-09 13:54:28 +02:00
.as_bool()
.map_err(|_| {
EvalAltResult::ErrorBooleanArgMismatch(
"do-while".into(),
expr.position(),
)
})?
{
break;
}
}
Ok(().into())
},
)
.unwrap();
2020-07-10 16:01:47 +02:00
// 'while' is now a custom keyword so this it can no longer be a variable
engine.consume("let while = 0").expect_err("should error");
2020-07-09 13:54:28 +02:00
assert_eq!(
engine.eval::<INT>(
r"
2020-07-10 16:01:47 +02:00
do |x| -> { x += 1 } while x < 42;
2020-07-09 13:54:28 +02:00
x
"
)?,
42
);
2020-07-10 16:01:47 +02:00
// The first symbol must be an identifier
assert!(matches!(
*engine.register_custom_syntax(&["!"], 0, |_, _, _, _, _, _, _, _| Ok(().into())).expect_err("should error"),
LexError::ImproperSymbol(s) if s == "!"
));
2020-07-09 13:54:28 +02:00
Ok(())
}