fixup! Add tests documentation to docs page
Some checks failed
CI / build (push) Failing after 45s

This commit is contained in:
Fabian Hauser 2025-03-24 21:50:44 +02:00
parent 362fba1385
commit fc4d569886
6 changed files with 70 additions and 54 deletions

View file

@ -17,7 +17,7 @@
''; '';
nixos-modules = pkgs.callPackage ./nixos-modules { nixos-modules = pkgs.callPackage ./nixos-modules {
inherit (self.lib) loadSubmodulesFrom; inherit (self.lib) getSubDirs isFolderWithFile;
}; };
#TODO(#29): Integration/System tests #TODO(#29): Integration/System tests

View file

@ -1,9 +1,60 @@
{ {
linkFarmFromDrvs, linkFarmFromDrvs,
callPackage, isFolderWithFile,
loadSubmodulesFrom, getSubDirs,
lib,
testers,
}: }:
let let
tests = map (test: callPackage test { }) (loadSubmodulesFrom ./.); inherit (lib)
filter
path
mkDefault
readFile
attrNames
concatStringsSep
pipe
;
modulesBaseDir = ../../nixos-modules;
mkTest =
name:
let
getFilePath = file: path.append modulesBaseDir "./${name}/${file}";
in
testers.runNixOSTest {
inherit name;
imports = [
(import (getFilePath "test.nix") {
inherit name;
inherit lib;
})
];
defaults.imports = [ (getFilePath "default.nix") ];
# Calls a `test(...)` python function in the test's python file with the list of nodes and helper functions.
# Helper symbols may be added as function args when 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 (getFilePath "test.py");
nodeArgs = pipe nodes [
attrNames
(map (val: "${val}=${val}"))
(concatStringsSep ", ")
];
in
''
${script}
test(${nodeArgs}, subtest=subtest)
''
);
};
in in
linkFarmFromDrvs "nixos-modules" tests pipe modulesBaseDir [
getSubDirs
(filter (isFolderWithFile "test.nix"))
(map mkTest)
(linkFarmFromDrvs "nixos-modules")
]

View file

@ -1,39 +0,0 @@
{
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)
''
);
}

View file

@ -1,18 +1,22 @@
{ pkgs, ... }: { pkgs, ... }:
let let
lib = pkgs.lib; inherit (pkgs.lib)
foldersWithNix = attrNames
path: filterAttrs
let filter
folders = lib.attrNames (lib.filterAttrs (n: t: t == "directory") (builtins.readDir path)); pathExists
isFolderWithDefaultNix = folder: lib.pathExists (lib.path.append path "./${folder}/default.nix"); path
in ;
lib.filter isFolderWithDefaultNix folders; isFolderWithFile =
fileName: basePath: folderName:
(pathExists (path.append basePath "./${folderName}/${fileName}.nix"));
getSubDirs = base: attrNames (filterAttrs (n: t: t == "directory") (builtins.readDir base));
foldersWithNix = base: filter (isFolderWithFile "default.nix") (getSubDirs base);
in in
{ {
inherit foldersWithNix; inherit isFolderWithFile foldersWithNix;
loadSubmodulesFrom = loadSubmodulesFrom =
path: map (folder: lib.path.append path "./${folder}/default.nix") (foldersWithNix path); basePath: map (folder: path.append basePath "./${folder}/default.nix") (foldersWithNix basePath);
} }