vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / tests / man.nix
blob1ff5af4e805911d87e2997413c2ac2aa1adcc467
2 import ./make-test-python.nix ({ pkgs, lib, ... }: let
3   manImplementations = [
4     "mandoc"
5     "man-db"
6   ];
8   machineNames = builtins.map machineSafe manImplementations;
10   makeConfig = useImpl: {
11     # Note: mandoc currently can't index symlinked section directories.
12     # So if a man section comes from one package exclusively (e. g.
13     # 1p from man-pages-posix and 2 from man-pages), it isn't searchable.
14     environment.systemPackages = [
15       pkgs.man-pages
16       pkgs.openssl
17       pkgs.libunwind
18     ];
20     documentation = {
21       enable = true;
22       nixos.enable = lib.mkForce true;
23       dev.enable = true;
24       man = {
25         enable = true;
26         generateCaches = true;
27       } // lib.listToAttrs (builtins.map (impl: {
28         name = impl;
29         value = {
30           enable = useImpl == impl;
31         };
32       }) manImplementations);
33     };
34   };
36   machineSafe = builtins.replaceStrings [ "-" ] [ "_" ];
37 in {
38   name = "man";
39   meta.maintainers = [ lib.maintainers.sternenseemann ];
41   nodes = lib.listToAttrs (builtins.map (i: {
42     name = machineSafe i;
43     value = makeConfig i;
44   }) manImplementations);
46   testScript = ''
47     import re
48     start_all()
50     def match_man_k(page, section, haystack):
51       """
52       Check if the man page {page}({section}) occurs in
53       the output of `man -k` given as haystack. Note:
54       This is not super reliable, e. g. it can't deal
55       with man pages that are in multiple sections.
56       """
58       for line in haystack.split("\n"):
59         # man -k can look like this:
60         # page(3) - bla
61         # page (3) - bla
62         # pagea, pageb (3, 3P) - foo
63         # pagea, pageb, pagec(3) - bar
64         pages = line.split("(")[0]
65         sections = re.search("\\([a-zA-Z1-9, ]+\\)", line)
66         if sections is None:
67           continue
68         else:
69           sections = sections.group(0)[1:-1]
71         if page in pages and f'{section}' in sections:
72           return True
74       return False
76   '' + lib.concatMapStrings (machine: ''
77     with subtest("Test direct man page lookups in ${machine}"):
78       # man works
79       ${machine}.succeed("man man > /dev/null")
80       # devman works
81       ${machine}.succeed("man 3 libunwind > /dev/null")
82       # NixOS configuration man page is installed
83       ${machine}.succeed("man configuration.nix > /dev/null")
85     with subtest("Test generateCaches via man -k in ${machine}"):
86       expected = [
87         ("openssl", "ssl", 3),
88         ("unwind", "libunwind", 3),
89         ("user", "useradd", 8),
90         ("user", "userdel", 8),
91         ("mem", "free", 3),
92         ("mem", "free", 1),
93       ]
95       for (keyword, page, section) in expected:
96         matches = ${machine}.succeed(f"man -k {keyword}")
97         if not match_man_k(page, section, matches):
98           raise Exception(f"{page}({section}) missing in matches: {matches}")
99   '') machineNames;