Set up basic testing using example files, fix consistency issues in examples

This commit is contained in:
Filip Tibell 2024-01-23 13:44:31 +01:00
parent 8ec2a647e4
commit 261ceef0da
No known key found for this signature in database
9 changed files with 75 additions and 12 deletions

View file

@ -14,6 +14,6 @@ path = "lib/lib.rs"
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"
main = "examples/main.rs"
scheduler-ordering = "examples/scheduler_ordering.rs"

View file

@ -9,13 +9,13 @@ use smol_mlua::{
Callbacks, IntoLuaThread, Runtime,
};
const MAIN_SCRIPT: &str = include_str!("./lua/main.luau");
const MAIN_SCRIPT: &str = include_str!("./lua/captures.luau");
pub fn main() -> LuaResult<()> {
// Set up persistent lua environment
let lua = Lua::new();
lua.globals().set(
"wait",
"sleep",
lua.create_async_function(|_, duration: Option<f64>| async move {
let duration = duration.unwrap_or_default().max(1.0 / 250.0);
let before = Instant::now();

View file

@ -1,9 +1,17 @@
--!nocheck
--!nolint UnknownGlobal
local file = readFile("Cargo.toml")
if file ~= nil then
print("Cargo.toml found!")
print("Contents:")
print(file)
local _, err = pcall(function()
local file = readFile("Cargo.toml")
if file ~= nil then
print("Cargo.toml found!")
print("Contents:")
print(file)
else
print("Cargo.toml not found!")
end
end)
if err ~= nil then
print("Error while reading file: " .. err)
end

View file

@ -13,7 +13,7 @@ local start = os.clock()
local counter = 0
for j = 1, 10_000 do
__runtime__spawn(function()
wait()
sleep()
counter += 1
if counter == 10_000 then
local elapsed = os.clock() - start

View file

@ -1,7 +1,7 @@
--!nocheck
--!nolint UnknownGlobal
local NUM_BATCHES = 100
local NUM_BATCHES = 10
local NUM_THREADS = 10_000
print(`Spawning {NUM_BATCHES * NUM_THREADS} threads split into {NUM_BATCHES} batches\n`)

View file

@ -19,7 +19,7 @@ end)
-- which will resume their calling thread with their result automatically
__runtime__spawn(function()
print(3)
wait(1)
sleep(1)
print(6)
end)

View file

@ -12,7 +12,7 @@ pub fn main() -> LuaResult<()> {
// Set up persistent lua environment
let lua = Lua::new();
lua.globals().set(
"wait",
"sleep",
lua.create_async_function(|_, duration: Option<f64>| async move {
let duration = duration.unwrap_or_default().max(1.0 / 250.0);
let before = Instant::now();

View file

@ -10,3 +10,6 @@ pub use smol;
pub use callbacks::Callbacks;
pub use runtime::Runtime;
pub use traits::{IntoLuaThread, LuaExecutorExt};
#[cfg(test)]
mod tests;

52
lib/tests.rs Normal file
View file

@ -0,0 +1,52 @@
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<f64>| 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",
}