rhai/tests/string.rs

34 lines
1.0 KiB
Rust
Raw Normal View History

2020-03-02 15:11:56 +01:00
use rhai::{Engine, EvalAltResult};
2017-11-03 17:58:51 +01:00
#[test]
2020-03-02 15:11:56 +01:00
fn test_string() -> Result<(), EvalAltResult> {
2017-11-03 17:58:51 +01:00
let mut engine = Engine::new();
assert_eq!(
2020-03-03 14:39:25 +01:00
engine.eval::<String>(r#""Test string: \u2764""#)?,
"Test string: ❤"
);
assert_eq!(
2020-03-03 14:39:25 +01:00
engine.eval::<String>(r#""Test string: \x58""#)?,
"Test string: X"
2020-03-03 14:39:25 +01:00
);
assert_eq!(engine.eval::<String>(r#""foo" + "bar""#)?, "foobar");
2020-04-06 11:47:34 +02:00
assert!(engine.eval::<bool>(r#"let y = "hello, world!"; "world" in y"#)?);
assert!(engine.eval::<bool>(r#"let y = "hello, world!"; 'w' in y"#)?);
assert!(!engine.eval::<bool>(r#"let y = "hello, world!"; "hey" in y"#)?);
#[cfg(not(feature = "no_stdlib"))]
assert_eq!(engine.eval::<String>(r#""foo" + 123"#)?, "foo123");
#[cfg(not(feature = "no_float"))]
#[cfg(not(feature = "no_stdlib"))]
assert_eq!(engine.eval::<String>(r#""foo" + 123.4556"#)?, "foo123.4556");
#[cfg(not(feature = "no_stdlib"))]
assert_eq!(engine.eval::<String>("(42).to_string()")?, "42");
2020-03-02 15:11:56 +01:00
Ok(())
2017-11-03 17:58:51 +01:00
}