infrastructure/checks/nixos-modules/static-page/default.nix
Fabian Hauser 362fba1385
All checks were successful
CI / build (push) Successful in 2m42s
fixup! Add tests documentation to docs page
2025-03-24 17:28:43 +02:00

39 lines
845 B
Nix

{
testers,
lib,
...
}:
let
inherit (lib)
mkDefault
readFile
attrNames
concatStringsSep
;
name = "static-page";
in
testers.runNixOSTest {
inherit name;
imports = [
(import ./test.nix {
inherit name;
inherit lib;
})
];
defaults.imports = [ ../../../nixos-modules/${name} ];
# Calls a test function with the list of nodes and helper functions.
# Helper symbols may be added as function args needed and can be found in:
# https://github.com/NixOS/nixpkgs/blob/master/nixos/lib/test-driver/src/test_driver/driver.py#L121
testScript = mkDefault (
{ nodes, ... }:
let
script = readFile ./test.py;
nodeArgs = concatStringsSep ", " (map (val: "${val}=${val}") (attrNames nodes));
in
''
${script}
test(${nodeArgs}, subtest=subtest)
''
);
}