rhai/tests/stack.rs

34 lines
797 B
Rust
Raw Normal View History

#![cfg(not(feature = "no_function"))]
2020-04-07 17:13:47 +02:00
use rhai::{Engine, EvalAltResult};
#[test]
fn test_stack_overflow() -> Result<(), Box<EvalAltResult>> {
2020-04-07 17:13:47 +02:00
let engine = Engine::new();
assert_eq!(
engine.eval::<i64>(
r"
fn foo(n) { if n == 0 { 0 } else { n + foo(n-1) } }
2020-04-17 13:00:52 +02:00
foo(25)
2020-04-07 17:13:47 +02:00
",
)?,
2020-04-17 13:00:52 +02:00
325
2020-04-07 17:13:47 +02:00
);
match engine.eval::<()>(
r"
fn foo(n) { if n == 0 { 0 } else { n + foo(n-1) } }
foo(1000)
",
) {
Ok(_) => panic!("should be stack overflow"),
Err(err) => match *err {
EvalAltResult::ErrorInFunctionCall(name, _, _)
if name.starts_with("foo > foo > foo") => {}
_ => panic!("should be stack overflow"),
},
2020-04-07 17:13:47 +02:00
}
Ok(())
}