use std::fmt; use std::result::Result; use std::error::Error; use std::panic::catch_unwind; use std::os::raw::c_void; use super::*; #[test] fn test_set_get() { let lua = Lua::new(); let globals = lua.globals().unwrap(); globals.set("foo", "bar").unwrap(); globals.set("baz", "baf").unwrap(); assert_eq!(globals.get::<_, String>("foo").unwrap(), "bar"); assert_eq!(globals.get::<_, String>("baz").unwrap(), "baf"); } #[test] fn test_load() { let lua = Lua::new(); let func = lua.load("return 1+2", None).unwrap(); let result: i32 = func.call(()).unwrap(); assert_eq!(result, 3); assert!(lua.load("§$%§&$%&", None).is_err()); } #[test] fn test_exec() { let lua = Lua::new(); let globals = lua.globals().unwrap(); lua.exec::<()>( r#" res = 'foo'..'bar' "#, None, ).unwrap(); assert_eq!(globals.get::<_, String>("res").unwrap(), "foobar"); let module: LuaTable = lua.exec( r#" local module = {} function module.func() return "hello" end return module "#, None, ).unwrap(); assert!(module.contains_key("func").unwrap()); assert_eq!( module .get::<_, LuaFunction>("func") .unwrap() .call::<_, String>(()) .unwrap(), "hello" ); } #[test] fn test_eval() { let lua = Lua::new(); assert_eq!(lua.eval::("1 + 1").unwrap(), 2); assert_eq!(lua.eval::("false == false").unwrap(), true); assert_eq!(lua.eval::("return 1 + 2").unwrap(), 3); match lua.eval::<()>("if true then") { Err(LuaError(LuaErrorKind::IncompleteStatement(_), _)) => {} r => panic!("expected IncompleteStatement, got {:?}", r), } } #[test] fn test_table() { let lua = Lua::new(); let globals = lua.globals().unwrap(); globals.set("table", lua.create_table().unwrap()).unwrap(); let table1: LuaTable = globals.get("table").unwrap(); let table2: LuaTable = globals.get("table").unwrap(); table1.set("foo", "bar").unwrap(); table2.set("baz", "baf").unwrap(); assert_eq!(table2.get::<_, String>("foo").unwrap(), "bar"); assert_eq!(table1.get::<_, String>("baz").unwrap(), "baf"); lua.exec::<()>( r#" table1 = {1, 2, 3, 4, 5} table2 = {} table3 = {1, 2, nil, 4, 5} "#, None, ).unwrap(); let table1 = globals.get::<_, LuaTable>("table1").unwrap(); let table2 = globals.get::<_, LuaTable>("table2").unwrap(); let table3 = globals.get::<_, LuaTable>("table3").unwrap(); assert_eq!(table1.len().unwrap(), 5); assert_eq!( table1 .clone() .pairs() .collect::>>() .unwrap(), vec![(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)] ); assert_eq!( table1 .clone() .sequence_values() .collect::>>() .unwrap(), vec![1, 2, 3, 4, 5] ); assert_eq!(table2.len().unwrap(), 0); assert_eq!( table2 .clone() .pairs() .collect::>>() .unwrap(), vec![] ); assert_eq!( table2 .sequence_values() .collect::>>() .unwrap(), vec![] ); // sequence_values should only iterate until the first border assert_eq!( table3 .sequence_values() .collect::>>() .unwrap(), vec![1, 2] ); globals .set( "table4", lua.create_sequence_from(vec![1, 2, 3, 4, 5]).unwrap(), ) .unwrap(); let table4 = globals.get::<_, LuaTable>("table4").unwrap(); assert_eq!( table4 .pairs() .collect::>>() .unwrap(), vec![(1, 1), (2, 2), (3, 3), (4, 4), (5, 5)] ); } #[test] fn test_function() { let lua = Lua::new(); let globals = lua.globals().unwrap(); lua.exec::<()>( r#" function concat(arg1, arg2) return arg1 .. arg2 end "#, None, ).unwrap(); let concat = globals.get::<_, LuaFunction>("concat").unwrap(); assert_eq!( concat.call::<_, String>(hlist!["foo", "bar"]).unwrap(), "foobar" ); } #[test] fn test_bind() { let lua = Lua::new(); let globals = lua.globals().unwrap(); lua.exec::<()>( r#" function concat(...) local res = "" for _, s in pairs({...}) do res = res..s end return res end "#, None, ).unwrap(); let mut concat = globals.get::<_, LuaFunction>("concat").unwrap(); concat = concat.bind("foo").unwrap(); concat = concat.bind("bar").unwrap(); concat = concat.bind(hlist!["baz", "baf"]).unwrap(); assert_eq!( concat.call::<_, String>(hlist!["hi", "wut"]).unwrap(), "foobarbazbafhiwut" ); } #[test] fn test_rust_function() { let lua = Lua::new(); let globals = lua.globals().unwrap(); lua.exec::<()>( r#" function lua_function() return rust_function() end -- Test to make sure chunk return is ignored return 1 "#, None, ).unwrap(); let lua_function = globals.get::<_, LuaFunction>("lua_function").unwrap(); let rust_function = lua.create_function(|lua, _| lua.pack("hello")).unwrap(); globals.set("rust_function", rust_function).unwrap(); assert_eq!(lua_function.call::<_, String>(()).unwrap(), "hello"); } #[test] fn test_user_data() { struct UserData1(i64); struct UserData2(Box); impl LuaUserDataType for UserData1 {}; impl LuaUserDataType for UserData2 {}; let lua = Lua::new(); let userdata1 = lua.create_userdata(UserData1(1)).unwrap(); let userdata2 = lua.create_userdata(UserData2(Box::new(2))).unwrap(); assert!(userdata1.is::()); assert!(!userdata1.is::()); assert!(userdata2.is::()); assert!(!userdata2.is::()); assert_eq!(userdata1.borrow::().unwrap().0, 1); assert_eq!(*userdata2.borrow::().unwrap().0, 2); } #[test] fn test_methods() { struct UserData(i64); impl LuaUserDataType for UserData { fn add_methods(methods: &mut LuaUserDataMethods) { methods.add_method("get_value", |lua, data, _| lua.pack(data.0)); methods.add_method_mut("set_value", |lua, data, args| { data.0 = lua.unpack(args)?; lua.pack(()) }); } } let lua = Lua::new(); let globals = lua.globals().unwrap(); let userdata = lua.create_userdata(UserData(42)).unwrap(); globals.set("userdata", userdata.clone()).unwrap(); lua.exec::<()>( r#" function get_it() return userdata:get_value() end function set_it(i) return userdata:set_value(i) end "#, None, ).unwrap(); let get = globals.get::<_, LuaFunction>("get_it").unwrap(); let set = globals.get::<_, LuaFunction>("set_it").unwrap(); assert_eq!(get.call::<_, i64>(()).unwrap(), 42); userdata.borrow_mut::().unwrap().0 = 64; assert_eq!(get.call::<_, i64>(()).unwrap(), 64); set.call::<_, ()>(100).unwrap(); assert_eq!(get.call::<_, i64>(()).unwrap(), 100); } #[test] fn test_metamethods() { #[derive(Copy, Clone)] struct UserData(i64); impl LuaUserDataType for UserData { fn add_methods(methods: &mut LuaUserDataMethods) { methods.add_method("get", |lua, data, _| lua.pack(data.0)); methods.add_meta_function(LuaMetaMethod::Add, |lua, args| { let hlist_pat![lhs, rhs] = lua.unpack::(args)?; lua.pack(UserData(lhs.0 + rhs.0)) }); methods.add_meta_function(LuaMetaMethod::Sub, |lua, args| { let hlist_pat![lhs, rhs] = lua.unpack::(args)?; lua.pack(UserData(lhs.0 - rhs.0)) }); methods.add_meta_method(LuaMetaMethod::Index, |lua, data, args| { let index = lua.unpack::(args)?; if index.to_str()? == "inner" { lua.pack(data.0) } else { Err("no such custom index".into()) } }); } } let lua = Lua::new(); let globals = lua.globals().unwrap(); globals.set("userdata1", UserData(7)).unwrap(); globals.set("userdata2", UserData(3)).unwrap(); assert_eq!(lua.eval::("userdata1 + userdata2").unwrap().0, 10); assert_eq!(lua.eval::("userdata1 - userdata2").unwrap().0, 4); assert_eq!(lua.eval::("userdata1:get()").unwrap(), 7); assert_eq!(lua.eval::("userdata2.inner").unwrap(), 3); assert!(lua.eval::<()>("userdata2.nonexist_field").is_err()); } #[test] fn test_scope() { let lua = Lua::new(); let globals = lua.globals().unwrap(); lua.exec::<()>( r#" touter = { tin = {1, 2, 3} } "#, None, ).unwrap(); // Make sure that table gets do not borrow the table, but instead just borrow lua. let tin; { let touter = globals.get::<_, LuaTable>("touter").unwrap(); tin = touter.get::<_, LuaTable>("tin").unwrap(); } assert_eq!(tin.get::<_, i64>(1).unwrap(), 1); assert_eq!(tin.get::<_, i64>(2).unwrap(), 2); assert_eq!(tin.get::<_, i64>(3).unwrap(), 3); // Should not compile, don't know how to test that // struct UserData; // impl LuaUserDataType for UserData {}; // let userdata_ref; // { // let touter = globals.get::<_, LuaTable>("touter").unwrap(); // touter.set("userdata", lua.create_userdata(UserData).unwrap()).unwrap(); // let userdata = touter.get::<_, LuaUserData>("userdata").unwrap(); // userdata_ref = userdata.borrow::(); // } } #[test] fn test_lua_multi() { let lua = Lua::new(); let globals = lua.globals().unwrap(); lua.exec::<()>( r#" function concat(arg1, arg2) return arg1 .. arg2 end function mreturn() return 1, 2, 3, 4, 5, 6 end "#, None, ).unwrap(); let concat = globals.get::<_, LuaFunction>("concat").unwrap(); let mreturn = globals.get::<_, LuaFunction>("mreturn").unwrap(); assert_eq!( concat.call::<_, String>(hlist!["foo", "bar"]).unwrap(), "foobar" ); let hlist_pat![a, b] = mreturn.call::<_, HList![u64, u64]>(hlist![]).unwrap(); assert_eq!((a, b), (1, 2)); let hlist_pat![a, b, LuaVariadic(v)] = mreturn.call::<_, HList![u64, u64, LuaVariadic]>(hlist![]).unwrap(); assert_eq!((a, b), (1, 2)); assert_eq!(v, vec![3, 4, 5, 6]); } #[test] fn test_coercion() { let lua = Lua::new(); let globals = lua.globals().unwrap(); lua.exec::<()>( r#" int = 123 str = "123" num = 123.0 "#, None, ).unwrap(); assert_eq!(globals.get::<_, String>("int").unwrap(), "123"); assert_eq!(globals.get::<_, i32>("str").unwrap(), 123); assert_eq!(globals.get::<_, i32>("num").unwrap(), 123); } #[test] fn test_error() { #[derive(Debug)] pub struct TestError; impl fmt::Display for TestError { fn fmt(&self, fmt: &mut fmt::Formatter) -> Result<(), fmt::Error> { write!(fmt, "test error") } } impl Error for TestError { fn description(&self) -> &str { "test error" } fn cause(&self) -> Option<&Error> { None } } let lua = Lua::new(); let globals = lua.globals().unwrap(); lua.exec::<()>( r#" function no_error() end function lua_error() error("this is a lua error") end function rust_error() rust_error_function() end function test_pcall() local testvar = 0 pcall(function(arg) testvar = testvar + arg error("should be ignored") end, 3) local function handler(err) testvar = testvar + err return "should be ignored" end xpcall(function() error(5) end, handler) if testvar ~= 8 then error("testvar had the wrong value, pcall / xpcall misbehaving "..testvar) end end function understand_recursion() understand_recursion() end "#, None, ).unwrap(); let rust_error_function = lua.create_function( |_, _| Err(LuaExternalError(Box::new(TestError)).into()), ).unwrap(); globals .set("rust_error_function", rust_error_function) .unwrap(); let no_error = globals.get::<_, LuaFunction>("no_error").unwrap(); let lua_error = globals.get::<_, LuaFunction>("lua_error").unwrap(); let rust_error = globals.get::<_, LuaFunction>("rust_error").unwrap(); let test_pcall = globals.get::<_, LuaFunction>("test_pcall").unwrap(); let understand_recursion = globals .get::<_, LuaFunction>("understand_recursion") .unwrap(); assert!(no_error.call::<_, ()>(()).is_ok()); match lua_error.call::<_, ()>(()) { Err(LuaError(LuaErrorKind::ScriptError(_), _)) => {} Err(_) => panic!("error is not ScriptError kind"), _ => panic!("error not returned"), } match rust_error.call::<_, ()>(()) { Err(LuaError(LuaErrorKind::CallbackError(_), _)) => {} Err(_) => panic!("error is not CallbackError kind"), _ => panic!("error not returned"), } test_pcall.call::<_, ()>(()).unwrap(); assert!(understand_recursion.call::<_, ()>(()).is_err()); match catch_unwind(|| -> LuaResult<()> { let lua = Lua::new(); lua.exec::<()>( r#" function rust_panic() pcall(function () rust_panic_function() end) end "#, None, )?; let rust_panic_function = lua.create_function(|_, _| { panic!("expected panic, this panic should be caught in rust") })?; globals.set("rust_panic_function", rust_panic_function)?; let rust_panic = globals.get::<_, LuaFunction>("rust_panic")?; rust_panic.call::<_, ()>(()) }) { Ok(Ok(_)) => panic!("no panic was detected, pcall caught it!"), Ok(Err(e)) => panic!("error during panic test {:?}", e), Err(_) => {} }; match catch_unwind(|| -> LuaResult<()> { let lua = Lua::new(); lua.exec::<()>( r#" function rust_panic() xpcall(function() rust_panic_function() end, function() end) end "#, None, )?; let rust_panic_function = lua.create_function(|_, _| { panic!("expected panic, this panic should be caught in rust") })?; globals.set("rust_panic_function", rust_panic_function)?; let rust_panic = globals.get::<_, LuaFunction>("rust_panic")?; rust_panic.call::<_, ()>(()) }) { Ok(Ok(_)) => panic!("no panic was detected, xpcall caught it!"), Ok(Err(e)) => panic!("error during panic test {:?}", e), Err(_) => {} }; } #[test] fn test_thread() { let lua = Lua::new(); let thread = lua.create_thread( lua.eval::( r#" function (s) local sum = s for i = 1,4 do sum = sum + coroutine.yield(sum) end return sum end "#, ).unwrap(), ).unwrap(); assert_eq!(thread.status().unwrap(), LuaThreadStatus::Active); assert_eq!(thread.resume::<_, i64>(0).unwrap(), 0); assert_eq!(thread.status().unwrap(), LuaThreadStatus::Active); assert_eq!(thread.resume::<_, i64>(1).unwrap(), 1); assert_eq!(thread.status().unwrap(), LuaThreadStatus::Active); assert_eq!(thread.resume::<_, i64>(2).unwrap(), 3); assert_eq!(thread.status().unwrap(), LuaThreadStatus::Active); assert_eq!(thread.resume::<_, i64>(3).unwrap(), 6); assert_eq!(thread.status().unwrap(), LuaThreadStatus::Active); assert_eq!(thread.resume::<_, i64>(4).unwrap(), 10); assert_eq!(thread.status().unwrap(), LuaThreadStatus::Dead); let accumulate = lua.create_thread( lua.eval::( r#" function (sum) while true do sum = sum + coroutine.yield(sum) end end "#, ).unwrap(), ).unwrap(); for i in 0..4 { accumulate.resume::<_, ()>(i).unwrap(); } assert_eq!(accumulate.resume::<_, i64>(4).unwrap(), 10); assert_eq!(accumulate.status().unwrap(), LuaThreadStatus::Active); assert!(accumulate.resume::<_, ()>("error").is_err()); assert_eq!(accumulate.status().unwrap(), LuaThreadStatus::Error); let thread = lua.eval::( r#" coroutine.create(function () while true do coroutine.yield(42) end end) "#, ).unwrap(); assert_eq!(thread.status().unwrap(), LuaThreadStatus::Active); assert_eq!(thread.resume::<_, i64>(()).unwrap(), 42); let thread: LuaThread = lua.eval( r#" coroutine.create(function(arg) assert(arg == 42) local yieldarg = coroutine.yield(123) assert(yieldarg == 43) return 987 end) "#, ).unwrap(); assert_eq!(thread.resume::<_, u32>(42).unwrap(), 123); assert_eq!(thread.resume::<_, u32>(43).unwrap(), 987); match thread.resume::<_, u32>(()) { Err(LuaError(LuaErrorKind::CoroutineInactive, _)) => {} Err(_) => panic!("resuming dead coroutine error is not CoroutineInactive kind"), _ => panic!("resuming dead coroutine did not return error"), } } #[test] fn test_lightuserdata() { let lua = Lua::new(); let globals = lua.globals().unwrap(); lua.exec::<()>( r#" function id(a) return a end "#, None, ).unwrap(); let res = globals .get::<_, LuaFunction>("id") .unwrap() .call::<_, LightUserData>(LightUserData(42 as *mut c_void)) .unwrap(); assert_eq!(res, LightUserData(42 as *mut c_void)); } #[test] fn test_table_error() { let lua = Lua::new(); let globals = lua.globals().unwrap(); lua.exec::<()>( r#" table = {} setmetatable(table, { __index = function() error("lua error") end, __newindex = function() error("lua error") end, __len = function() error("lua error") end }) "#, None, ).unwrap(); let bad_table: LuaTable = globals.get("table").unwrap(); assert!(bad_table.set(1, 1).is_err()); assert!(bad_table.get::<_, i32>(1).is_err()); assert!(bad_table.len().is_err()); assert!(bad_table.raw_set(1, 1).is_ok()); assert!(bad_table.raw_get::<_, i32>(1).is_ok()); assert_eq!(bad_table.raw_len().unwrap(), 1); } #[test] fn test_result_conversions() { let lua = Lua::new(); let globals = lua.globals().unwrap(); let err = lua.create_function(|lua, _| { lua.pack(Result::Err::( "only through failure can we succeed".to_string(), )) }).unwrap(); let ok = lua.create_function(|lua, _| { lua.pack(Result::Ok::("!".to_string())) }).unwrap(); globals.set("err", err).unwrap(); globals.set("ok", ok).unwrap(); lua.exec::<()>( r#" local err, msg = err() assert(err == nil) assert(msg == "only through failure can we succeed") local ok, extra = ok() assert(ok == "!") assert(extra == nil) "#, None, ).unwrap(); } #[test] fn test_num_conversion() { let lua = Lua::new(); let globals = lua.globals().unwrap(); globals.set("a", "1.0").unwrap(); assert_eq!(globals.get::<_, i64>("a").unwrap(), 1); assert_eq!(globals.get::<_, f64>("a").unwrap(), 1.0); assert_eq!(globals.get::<_, String>("a").unwrap(), "1.0"); globals.set("a", "1.5").unwrap(); assert!(globals.get::<_, i64>("a").is_err()); assert_eq!(globals.get::<_, f64>("a").unwrap(), 1.5); assert_eq!(globals.get::<_, String>("a").unwrap(), "1.5"); }