#![cfg(not(feature = "no_object"))] use rhai::{AnyExt, Engine, EvalAltResult, Map, INT}; #[test] fn test_map_indexing() -> Result<(), EvalAltResult> { let mut engine = Engine::new(); #[cfg(not(feature = "no_index"))] assert_eq!( engine.eval::(r#"let x = #{a: 1, b: 2, c: 3}; x["b"]"#)?, 2 ); assert_eq!( engine.eval::("let y = #{a: 1, b: 2, c: 3}; y.a = 5; y.a")?, 5 ); #[cfg(not(feature = "no_index"))] assert_eq!( engine.eval::( r#" let y = #{d: 1, "e": #{a: 42, b: 88, "": "hello"}, " 123 xyz": 9}; y.e[""][4] "# )?, 'o' ); engine.eval::<()>("let y = #{a: 1, b: 2, c: 3}; y.z")?; Ok(()) } #[test] fn test_map_assign() -> Result<(), EvalAltResult> { let mut engine = Engine::new(); let x = engine.eval::(r#"let x = #{a: 1, b: true, "c#": "hello"}; x"#)?; let a = x.get("a").cloned().unwrap(); let b = x.get("b").cloned().unwrap(); let c = x.get("c#").cloned().unwrap(); assert_eq!(*a.downcast::().unwrap(), 1); assert_eq!(*b.downcast::().unwrap(), true); assert_eq!(*c.downcast::().unwrap(), "hello"); Ok(()) } #[test] fn test_map_return() -> Result<(), EvalAltResult> { let mut engine = Engine::new(); let x = engine.eval::(r#"#{a: 1, b: true, c: "hello"}"#)?; let a = x.get("a").cloned().unwrap(); let b = x.get("b").cloned().unwrap(); let c = x.get("c").cloned().unwrap(); assert_eq!(*a.downcast::().unwrap(), 1); assert_eq!(*b.downcast::().unwrap(), true); assert_eq!(*c.downcast::().unwrap(), "hello"); Ok(()) }