assay-lua 0.16.1

General-purpose enhanced Lua runtime. Batteries-included scripting, automation, and web services.
Documentation
-- Tests for assay.nspawn.config.render — the .nspawn INI emitter.
-- Pure-string transform, no subprocess work.
local nspawn = require("assay.nspawn")

local function contains(s, needle)
  return s and s:find(needle, 1, true) ~= nil
end

-- ── full config: every section + every field we know about ────────────────
local body = nspawn.config.render({
  boot             = true,
  notify_ready     = true,
  private_users    = false,
  capabilities     = { "all" },
  binds            = { "/dev/kmsg", "/srv/data" },
  binds_ro         = { "/sys/module" },
  inaccessible     = { "/sys/module/apparmor" },
  virtual_ethernet = true,
  resolv_conf      = "bind-host",
  bridge           = "br0",
})
assert.contains(body, "[Exec]", "missing [Exec] section")
assert.contains(body, "Boot=yes", "boot=true should emit Boot=yes")
assert.contains(body, "NotifyReady=yes", "notify_ready emits NotifyReady=yes")
assert.contains(body, "PrivateUsers=no", "private_users=false emits PrivateUsers=no")
assert.contains(body, "Capability=all", "capabilities array → Capability=all")
assert.contains(body, "[Files]", "missing [Files] section")
assert.contains(body, "Bind=/dev/kmsg", "binds emits Bind= line")
assert.contains(body, "Bind=/srv/data", "binds repeats per element")
assert.contains(body, "BindReadOnly=/sys/module", "binds_ro emits BindReadOnly=")
assert.contains(body, "Inaccessible=/sys/module/apparmor", "inaccessible emits Inaccessible=")
assert.contains(body, "[Network]", "missing [Network] section")
assert.contains(body, "VirtualEthernet=yes", "virtual_ethernet emits VirtualEthernet=yes")
assert.contains(body, "ResolvConf=bind-host", "resolv_conf emits hyphen form (matches systemd flag)")
assert.contains(body, "Bridge=br0", "bridge emits Bridge=")

-- ── underscore form of resolv_conf normalises to hyphen ───────────────────
local body_us = nspawn.config.render({ resolv_conf = "bind_host" })
assert.contains(body_us, "ResolvConf=bind-host",
  "underscore form should emit hyphen form on the wire")

-- ── empty config produces no sections (only blank string) ─────────────────
local body_empty = nspawn.config.render({})
assert.eq(contains(body_empty, "["), false,
  "empty config should emit no INI sections; got: " .. body_empty)

-- ── partial config: only [Exec] section ───────────────────────────────────
local body_only_exec = nspawn.config.render({ boot = true })
assert.contains(body_only_exec, "[Exec]", "only-exec missing [Exec]")
assert.eq(contains(body_only_exec, "[Network]"), false, "only-exec should not emit [Network]")
assert.eq(contains(body_only_exec, "[Files]"), false, "only-exec should not emit [Files]")

-- ── render must error on non-table ────────────────────────────────────────
local ok, _ = pcall(nspawn.config.render, "not a table")
assert.eq(ok, false, "render(non-table) should raise")

print("config_render.lua OK")