2021-02-24 08:45:29 +01:00
|
|
|
use rhai::{Engine, EvalAltResult, Scope, INT};
|
2017-11-03 17:58:51 +01:00
|
|
|
|
|
|
|
#[test]
|
2020-04-21 17:25:12 +02:00
|
|
|
fn test_ops() -> Result<(), Box<EvalAltResult>> {
|
2020-04-07 07:23:06 +02:00
|
|
|
let engine = Engine::new();
|
2017-11-03 17:58:51 +01:00
|
|
|
|
2020-03-10 16:06:20 +01:00
|
|
|
assert_eq!(engine.eval::<INT>("60 + 5")?, 65);
|
|
|
|
assert_eq!(engine.eval::<INT>("(1 + 2) * (6 - 4) / 2")?, 3);
|
2022-01-23 14:09:37 +01:00
|
|
|
assert_eq!(engine.eval::<INT>("let x = 41; x = x + 1; x")?, 42);
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<String>(r#"let s = "hello"; s = s + 42; s"#)?,
|
|
|
|
"hello42"
|
|
|
|
);
|
2020-03-02 15:11:56 +01:00
|
|
|
|
|
|
|
Ok(())
|
2017-11-03 17:58:51 +01:00
|
|
|
}
|
|
|
|
|
2022-01-05 06:24:52 +01:00
|
|
|
#[cfg(not(feature = "only_i32"))]
|
|
|
|
#[cfg(not(feature = "only_i64"))]
|
2021-02-24 08:45:29 +01:00
|
|
|
#[test]
|
2022-01-05 06:24:52 +01:00
|
|
|
fn test_ops_other_number_types() -> Result<(), Box<EvalAltResult>> {
|
2021-02-24 08:45:29 +01:00
|
|
|
let engine = Engine::new();
|
|
|
|
|
|
|
|
let mut scope = Scope::new();
|
|
|
|
|
|
|
|
scope.push("x", 42_u16);
|
|
|
|
|
|
|
|
assert!(matches!(
|
2023-04-10 17:23:59 +02:00
|
|
|
*engine.eval_with_scope::<bool>(&mut scope, "x == 42").unwrap_err(),
|
2022-02-08 02:02:15 +01:00
|
|
|
EvalAltResult::ErrorFunctionNotFound(f, ..) if f.starts_with("== (u16,")
|
2021-02-24 08:45:29 +01:00
|
|
|
));
|
|
|
|
#[cfg(not(feature = "no_float"))]
|
|
|
|
assert!(matches!(
|
2023-04-10 17:23:59 +02:00
|
|
|
*engine.eval_with_scope::<bool>(&mut scope, "x == 42.0").unwrap_err(),
|
2022-02-08 02:02:15 +01:00
|
|
|
EvalAltResult::ErrorFunctionNotFound(f, ..) if f.starts_with("== (u16,")
|
2021-02-24 08:45:29 +01:00
|
|
|
));
|
|
|
|
|
2023-03-08 14:47:57 +01:00
|
|
|
assert!(
|
2023-04-10 17:23:59 +02:00
|
|
|
matches!(*engine.eval_with_scope::<bool>(&mut scope, r#"x == "hello""#).unwrap_err(),
|
2023-03-08 14:47:57 +01:00
|
|
|
EvalAltResult::ErrorFunctionNotFound(f, ..) if f.starts_with("== (u16,")
|
|
|
|
)
|
|
|
|
);
|
2021-02-24 08:45:29 +01:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2017-11-03 17:58:51 +01:00
|
|
|
#[test]
|
2021-02-25 06:29:49 +01:00
|
|
|
fn test_ops_strings() -> Result<(), Box<EvalAltResult>> {
|
|
|
|
let engine = Engine::new();
|
|
|
|
|
|
|
|
assert!(engine.eval::<bool>(r#""hello" > 'c'"#)?);
|
|
|
|
assert!(engine.eval::<bool>(r#""" < 'c'"#)?);
|
|
|
|
assert!(engine.eval::<bool>(r#"'x' > "hello""#)?);
|
|
|
|
assert!(engine.eval::<bool>(r#""hello" > "foo""#)?);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_ops_precedence() -> 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>("let x = 0; if x == 10 || true { x = 1} x")?,
|
2020-03-02 15:11:56 +01:00
|
|
|
1
|
2019-10-09 13:06:32 +02:00
|
|
|
);
|
2020-03-02 15:11:56 +01:00
|
|
|
|
|
|
|
Ok(())
|
2018-06-13 10:56:29 +02:00
|
|
|
}
|
2023-03-08 14:47:57 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_ops_custom_types() -> Result<(), Box<EvalAltResult>> {
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
|
|
struct Test1;
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
|
|
|
struct Test2;
|
|
|
|
|
|
|
|
let mut engine = Engine::new();
|
|
|
|
|
|
|
|
engine
|
|
|
|
.register_type_with_name::<Test1>("Test1")
|
|
|
|
.register_type_with_name::<Test2>("Test2")
|
|
|
|
.register_fn("new_ts1", || Test1)
|
|
|
|
.register_fn("new_ts2", || Test2)
|
|
|
|
.register_fn("==", |x: Test1, y: Test2| true);
|
|
|
|
|
|
|
|
assert!(engine.eval::<bool>("let x = new_ts1(); let y = new_ts2(); x == y")?);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|