//! Integration guard: the `aura graph` viewer renders a bind-bound param slot as //! a dimmed `name=value` in true slot order (trailing + non-trailing bind). //! //! The property lives in JavaScript (`cellLabel` in assets/graph-viewer.js), so //! this shells out to `node` running the headless guard //! `tests/viewer_bound_param.mjs`, which loads the real viewer module and drives //! the exported `genDot` over two minimal models. //! //! `node` is REQUIRED: if it is not on PATH this test FAILS (a skipped guard is //! not a guard). use std::path::PathBuf; use std::process::Command; #[test] fn viewer_renders_bound_param_in_slot_order() { let script = PathBuf::from(env!("CARGO_MANIFEST_DIR")) .join("tests") .join("viewer_bound_param.mjs"); assert!(script.exists(), "guard script missing at {}", script.display()); let out = match Command::new("node").arg(&script).output() { Ok(out) => out, Err(e) => panic!( "node is required for the viewer bound-param guard but could not be run \ ({e}); install Node.js or ensure `node` is on PATH" ), }; let stdout = String::from_utf8_lossy(&out.stdout); let stderr = String::from_utf8_lossy(&out.stderr); assert!( out.status.success(), "viewer bound-param guard failed (exit {:?}).\n--- node stdout ---\n{stdout}\n--- node stderr ---\n{stderr}", out.status.code() ); }