vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / tests / systemd-analyze.nix
blob37c20d5fe5b65e2b07b4615c248c211cf2c65986
1 import ./make-test-python.nix ({ pkgs, latestKernel ? false, ... }:
4   name = "systemd-analyze";
5   meta = with pkgs.lib.maintainers; {
6     maintainers = [ raskin ];
7   };
9   nodes.machine =
10     { pkgs, lib, ... }:
11     { boot.kernelPackages = lib.mkIf latestKernel pkgs.linuxPackages_latest;
12     };
14   testScript = ''
15     machine.wait_for_unit("multi-user.target")
17     # We create a special output directory to copy it as a whole
18     with subtest("Prepare output dir"):
19         machine.succeed("mkdir systemd-analyze")
22     # Save the output into a file with given name inside the common
23     # output directory
24     def run_systemd_analyze(args, name):
25         tgt_dir = "systemd-analyze"
26         machine.succeed(
27             "systemd-analyze {} > {}/{} 2> {}/{}.err".format(
28                 " ".join(args), tgt_dir, name, tgt_dir, name
29             )
30         )
33     with subtest("Print statistics"):
34         run_systemd_analyze(["blame"], "blame.txt")
35         run_systemd_analyze(["critical-chain"], "critical-chain.txt")
36         run_systemd_analyze(["dot"], "dependencies.dot")
37         run_systemd_analyze(["plot"], "systemd-analyze.svg")
39     # We copy the main graph into the $out (toplevel), and we also copy
40     # the entire output directory with additional data
41     with subtest("Copying the resulting data into $out"):
42         machine.copy_from_vm("systemd-analyze/", "")
43         machine.copy_from_vm("systemd-analyze/systemd-analyze.svg", "")
44   '';