assay-lua 0.15.14

General-purpose enhanced Lua runtime. Batteries-included scripting, automation, and web services.
Documentation
mod common;

use common::create_vm;

async fn run_pkg_lua(script_path: &str) {
    let script =
        std::fs::read_to_string(script_path).unwrap_or_else(|e| panic!("read {script_path}: {e}"));
    let vm = create_vm();
    vm.load(&script)
        .exec_async()
        .await
        .unwrap_or_else(|e| panic!("{script_path}: {e}"));
}

#[tokio::test]
async fn pkg_catalog_validation() {
    run_pkg_lua("tests/pkg_lua/catalog_validation.lua").await;
}

#[tokio::test]
async fn pkg_catalog_layering() {
    run_pkg_lua("tests/pkg_lua/catalog_layering.lua").await;
}

#[tokio::test]
async fn pkg_templates_loader() {
    run_pkg_lua("tests/pkg_lua/templates.lua").await;
}

#[tokio::test]
async fn pkg_templates_provisioning_schema() {
    run_pkg_lua("tests/pkg_lua/templates_provisioning.lua").await;
}

#[tokio::test]
async fn pkg_version_compare() {
    run_pkg_lua("tests/pkg_lua/version_compare.lua").await;
}

#[tokio::test]
async fn pkg_target_host_machine() {
    run_pkg_lua("tests/pkg_lua/target_host_machine.lua").await;
}

#[tokio::test]
async fn pkg_plan_idempotency() {
    run_pkg_lua("tests/pkg_lua/plan_idempotency.lua").await;
}