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