2020-04-13 06:29:22 +02: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_string() -> 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-03 14:39:25 +01:00
|
|
|
engine.eval::<String>(r#""Test string: \u2764""#)?,
|
2020-03-31 04:00:17 +02:00
|
|
|
"Test string: ❤"
|
2019-10-09 13:06:32 +02:00
|
|
|
);
|
|
|
|
assert_eq!(
|
2020-03-03 14:39:25 +01:00
|
|
|
engine.eval::<String>(r#""Test string: \x58""#)?,
|
2020-03-31 04:00:17 +02:00
|
|
|
"Test string: X"
|
2020-03-03 14:39:25 +01:00
|
|
|
);
|
2020-04-11 06:46:10 +02:00
|
|
|
assert_eq!(engine.eval::<String>(r#""\"hello\"""#)?, r#""hello""#);
|
2020-03-10 12:48:47 +01:00
|
|
|
|
2020-03-31 04:00:17 +02:00
|
|
|
assert_eq!(engine.eval::<String>(r#""foo" + "bar""#)?, "foobar");
|
2020-03-10 12:48:47 +01:00
|
|
|
|
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"#)?);
|
|
|
|
|
2020-03-10 12:48:47 +01:00
|
|
|
#[cfg(not(feature = "no_stdlib"))]
|
2020-03-31 04:00:17 +02:00
|
|
|
assert_eq!(engine.eval::<String>(r#""foo" + 123"#)?, "foo123");
|
2020-03-10 12:48:47 +01:00
|
|
|
|
|
|
|
#[cfg(not(feature = "no_stdlib"))]
|
2020-04-11 10:06:57 +02:00
|
|
|
#[cfg(not(feature = "no_object"))]
|
2020-04-08 04:19:03 +02:00
|
|
|
assert_eq!(engine.eval::<String>("(42).to_string()")?, "42");
|
2020-03-31 04:00:17 +02:00
|
|
|
|
2020-04-08 04:19:03 +02:00
|
|
|
#[cfg(not(feature = "no_float"))]
|
2020-03-31 04:00:17 +02:00
|
|
|
#[cfg(not(feature = "no_stdlib"))]
|
2020-04-08 04:19:03 +02:00
|
|
|
assert_eq!(engine.eval::<String>(r#""foo" + 123.4556"#)?, "foo123.4556");
|
2020-03-02 15:11:56 +01:00
|
|
|
|
|
|
|
Ok(())
|
2017-11-03 17:58:51 +01:00
|
|
|
}
|
2020-04-13 06:29:22 +02:00
|
|
|
|
|
|
|
#[cfg(not(feature = "no_stdlib"))]
|
2020-04-13 08:26:53 +02:00
|
|
|
#[cfg(not(feature = "no_object"))]
|
2020-04-13 06:29:22 +02:00
|
|
|
#[test]
|
2020-04-21 17:25:12 +02:00
|
|
|
fn test_string_substring() -> Result<(), Box<EvalAltResult>> {
|
2020-04-13 06:29:22 +02:00
|
|
|
let engine = Engine::new();
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<String>(
|
|
|
|
r#"let x = "\u2764\u2764\u2764 hello! \u2764\u2764\u2764"; x.sub_string(-1, 2)"#
|
|
|
|
)?,
|
|
|
|
"❤❤"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<String>(
|
|
|
|
r#"let x = "\u2764\u2764\u2764 hello! \u2764\u2764\u2764"; x.sub_string(1, 5)"#
|
|
|
|
)?,
|
|
|
|
"❤❤ he"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<String>(
|
|
|
|
r#"let x = "\u2764\u2764\u2764 hello! \u2764\u2764\u2764"; x.sub_string(1)"#
|
|
|
|
)?,
|
|
|
|
"❤❤ hello! ❤❤❤"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<String>(
|
|
|
|
r#"let x = "\u2764\u2764\u2764 hello! \u2764\u2764\u2764"; x.sub_string(99)"#
|
|
|
|
)?,
|
|
|
|
""
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<String>(
|
|
|
|
r#"let x = "\u2764\u2764\u2764 hello! \u2764\u2764\u2764"; x.sub_string(1, -1)"#
|
|
|
|
)?,
|
|
|
|
""
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<String>(
|
|
|
|
r#"let x = "\u2764\u2764\u2764 hello! \u2764\u2764\u2764"; x.sub_string(1, 999)"#
|
|
|
|
)?,
|
|
|
|
"❤❤ hello! ❤❤❤"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<String>(
|
|
|
|
r#"let x = "\u2764\u2764\u2764 hello! \u2764\u2764\u2764"; x.crop(1, -1); x"#
|
|
|
|
)?,
|
|
|
|
""
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<String>(
|
|
|
|
r#"let x = "\u2764\u2764\u2764 hello! \u2764\u2764\u2764"; x.crop(4, 6); x"#
|
|
|
|
)?,
|
|
|
|
"hello!"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<String>(
|
|
|
|
r#"let x = "\u2764\u2764\u2764 hello! \u2764\u2764\u2764"; x.crop(1, 999); x"#
|
|
|
|
)?,
|
|
|
|
"❤❤ hello! ❤❤❤"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
|
|
|
r#"let x = "\u2764\u2764\u2764 hello! \u2764\u2764\u2764"; x.index_of('\u2764')"#
|
|
|
|
)?,
|
|
|
|
0
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
|
|
|
r#"let x = "\u2764\u2764\u2764 hello! \u2764\u2764\u2764"; x.index_of('\u2764', 5)"#
|
|
|
|
)?,
|
|
|
|
11
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
|
|
|
r#"let x = "\u2764\u2764\u2764 hello! \u2764\u2764\u2764"; x.index_of('\u2764', -1)"#
|
|
|
|
)?,
|
|
|
|
0
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
|
|
|
r#"let x = "\u2764\u2764\u2764 hello! \u2764\u2764\u2764"; x.index_of('\u2764', 999)"#
|
|
|
|
)?,
|
|
|
|
-1
|
|
|
|
);
|
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
engine.eval::<INT>(
|
|
|
|
r#"let x = "\u2764\u2764\u2764 hello! \u2764\u2764\u2764"; x.index_of('x')"#
|
|
|
|
)?,
|
|
|
|
-1
|
|
|
|
);
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|