2020-03-10 23:06:20 +08:00
|
|
|
use rhai::{Engine, EvalAltResult, INT};
|
2017-11-03 09:58:51 -07:00
|
|
|
|
|
|
|
#[test]
|
2020-04-21 23:25:12 +08:00
|
|
|
fn test_while() -> Result<(), Box<EvalAltResult>> {
|
2020-04-07 13:23:06 +08:00
|
|
|
let engine = Engine::new();
|
2017-11-03 09:58:51 -07:00
|
|
|
|
2019-10-09 12:06:32 +01:00
|
|
|
assert_eq!(
|
2020-03-10 23:06:20 +08:00
|
|
|
engine.eval::<INT>(
|
2021-04-20 12:01:35 +08:00
|
|
|
"
|
2020-04-01 16:22:18 +08:00
|
|
|
let x = 0;
|
|
|
|
|
|
|
|
while x < 10 {
|
2020-07-06 16:20:03 +08:00
|
|
|
x += 1;
|
2020-04-01 16:22:18 +08:00
|
|
|
if x > 5 { break; }
|
|
|
|
if x > 3 { continue; }
|
2020-07-06 16:20:03 +08:00
|
|
|
x += 3;
|
2020-04-01 16:22:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
x
|
2021-03-27 18:08:34 +08:00
|
|
|
",
|
2020-03-02 22:11:56 +08:00
|
|
|
)?,
|
|
|
|
6
|
2019-10-09 12:06:32 +01:00
|
|
|
);
|
2020-03-02 22:11:56 +08:00
|
|
|
|
|
|
|
Ok(())
|
2017-11-03 09:58:51 -07:00
|
|
|
}
|
2020-11-20 22:23:37 +08:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_do() -> Result<(), Box<EvalAltResult>> {
|
|
|
|
let engine = Engine::new();
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
2021-04-20 12:01:35 +08:00
|
|
|
"
|
2020-11-20 22:23:37 +08:00
|
|
|
let x = 0;
|
|
|
|
|
|
|
|
do {
|
|
|
|
x += 1;
|
|
|
|
if x > 5 { break; }
|
|
|
|
if x > 3 { continue; }
|
|
|
|
x += 3;
|
|
|
|
} while x < 10;
|
|
|
|
|
|
|
|
x
|
2021-03-27 18:08:34 +08:00
|
|
|
",
|
2020-11-20 22:23:37 +08:00
|
|
|
)?,
|
|
|
|
6
|
|
|
|
);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2021-08-04 17:37:56 +08:00
|
|
|
|
2021-08-04 18:57:52 +08:00
|
|
|
#[cfg(not(feature = "unchecked"))]
|
2021-08-04 17:37:56 +08:00
|
|
|
#[test]
|
|
|
|
fn test_infinite_loops() -> Result<(), Box<EvalAltResult>> {
|
|
|
|
let mut engine = Engine::new();
|
|
|
|
|
|
|
|
engine.set_max_operations(1024);
|
|
|
|
|
2021-08-06 14:46:27 +08:00
|
|
|
assert!(engine.run("loop {}").is_err());
|
|
|
|
assert!(engine.run("while true {}").is_err());
|
|
|
|
assert!(engine.run("do {} while true").is_err());
|
2021-08-04 17:37:56 +08:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|