diff --git a/Cargo.toml b/Cargo.toml index 9c86773..ee28b7b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,10 +10,26 @@ mlua = { version = "0.9", features = ["luau", "luau-jit", "async"] } [lib] path = "lib/lib.rs" -[examples] -basic-sleep = "examples/basic_sleep.rs" -basic-spawn = "examples/basic_spawn.rs" -callbacks = "examples/callbacks.rs" -captures = "examples/captures.rs" -lots-of-threads = "examples/lots_of_threads.rs" -scheduler-ordering = "examples/scheduler_ordering.rs" +[[example]] +name = "basic_sleep" +test = true + +[[example]] +name = "basic_spawn" +test = true + +[[example]] +name = "callbacks" +test = true + +[[example]] +name = "captures" +test = true + +[[example]] +name = "lots_of_threads" +test = true + +[[example]] +name = "scheduler_ordering" +test = true diff --git a/examples/basic_sleep.rs b/examples/basic_sleep.rs index 6c8cf4d..d5a427a 100644 --- a/examples/basic_sleep.rs +++ b/examples/basic_sleep.rs @@ -28,3 +28,8 @@ pub fn main() -> LuaResult<()> { Ok(()) } + +#[test] +fn test_basic_sleep() -> LuaResult<()> { + main() +} diff --git a/examples/basic_spawn.rs b/examples/basic_spawn.rs index 5cf1cfd..c43f8f6 100644 --- a/examples/basic_spawn.rs +++ b/examples/basic_spawn.rs @@ -34,3 +34,8 @@ pub fn main() -> LuaResult<()> { Ok(()) } + +#[test] +fn test_basic_spawn() -> LuaResult<()> { + main() +} diff --git a/examples/callbacks.rs b/examples/callbacks.rs index 0168622..447c8ce 100644 --- a/examples/callbacks.rs +++ b/examples/callbacks.rs @@ -26,3 +26,8 @@ pub fn main() -> LuaResult<()> { Ok(()) } + +#[test] +fn test_callbacks() -> LuaResult<()> { + main() +} diff --git a/examples/captures.rs b/examples/captures.rs index 423fa43..2d2f8c6 100644 --- a/examples/captures.rs +++ b/examples/captures.rs @@ -85,3 +85,8 @@ fn run<'lua>(lua: &'lua Lua, main: impl IntoLuaThread<'lua>) -> LuaResult LuaResult<()> { + main() +} diff --git a/examples/lots_of_threads.rs b/examples/lots_of_threads.rs index 42b6991..10d7c6c 100644 --- a/examples/lots_of_threads.rs +++ b/examples/lots_of_threads.rs @@ -31,3 +31,8 @@ pub fn main() -> LuaResult<()> { Ok(()) } + +#[test] +fn test_lots_of_threads() -> LuaResult<()> { + main() +} diff --git a/examples/scheduler_ordering.rs b/examples/scheduler_ordering.rs index af73257..ce8e7a1 100644 --- a/examples/scheduler_ordering.rs +++ b/examples/scheduler_ordering.rs @@ -29,3 +29,8 @@ pub fn main() -> LuaResult<()> { Ok(()) } + +#[test] +fn test_scheduler_ordering() -> LuaResult<()> { + main() +} diff --git a/lib/lib.rs b/lib/lib.rs index 29c906c..5aa95b6 100644 --- a/lib/lib.rs +++ b/lib/lib.rs @@ -10,6 +10,3 @@ pub use smol; pub use callbacks::Callbacks; pub use runtime::Runtime; pub use traits::{IntoLuaThread, LuaExecutorExt}; - -#[cfg(test)] -mod tests; diff --git a/lib/tests.rs b/lib/tests.rs deleted file mode 100644 index 8d7de7d..0000000 --- a/lib/tests.rs +++ /dev/null @@ -1,52 +0,0 @@ -use std::time::{Duration, Instant}; - -use mlua::prelude::*; - -use smol::{fs::read_to_string, Timer}; - -use crate::Runtime; - -macro_rules! create_tests { - ($($name:ident: $value:expr,)*) => { $( - #[test] - fn $name() -> LuaResult<()> { - // Read the test script - let script = std::fs::read_to_string(concat!($value, ".luau"))?; - - // Set up persistent lua environment - let lua = Lua::new(); - lua.globals().set( - "sleep", - lua.create_async_function(|_, duration: Option| async move { - let duration = duration.unwrap_or_default().max(1.0 / 250.0); - let before = Instant::now(); - let after = Timer::after(Duration::from_secs_f64(duration)).await; - Ok((after - before).as_secs_f64()) - })? - )?; - lua.globals().set( - "readFile", - lua.create_async_function(|_, path: String| async move { - Ok(read_to_string(path).await?) - })? - )?; - - // Load the main script into a runtime and run it until completion - let rt = Runtime::new(&lua)?; - let main = lua.load(script); - rt.push_thread(main, ()); - rt.run_blocking(); - - Ok(()) - } - )* } -} - -create_tests! { - basic_sleep: "examples/lua/basic_sleep", - basic_spawn: "examples/lua/basic_spawn", - callbacks: "examples/lua/callbacks", - captures: "examples/lua/captures", - lots_of_threads: "examples/lua/lots_of_threads", - scheduler_ordering: "examples/lua/scheduler_ordering", -}