about summary refs log tree commit diff
path: root/nixos/tests/all-terminfo.nix
blob: 2f5e56f09f26bd3059eb85967a4d7f0170e4131a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import ./make-test-python.nix ({ pkgs, ... }: rec {
  name = "all-terminfo";
  meta = with pkgs.lib.maintainers; {
    maintainers = [ jkarlson ];
  };

  nodes.machine = { pkgs, config, lib, ... }:
    let
      infoFilter = name: drv:
        let
          o = builtins.tryEval drv;
        in
        o.success &&
        lib.isDerivation o.value &&
        o.value ? outputs &&
        builtins.elem "terminfo" o.value.outputs &&
        !o.value.meta.broken;
      terminfos = lib.filterAttrs infoFilter pkgs;
      excludedTerminfos = lib.filterAttrs (_: drv: !(builtins.elem drv.terminfo config.environment.systemPackages)) terminfos;
      includedOuts = lib.filterAttrs (_: drv: builtins.elem drv.out config.environment.systemPackages) terminfos;
    in
    {
      environment = {
        enableAllTerminfo = true;
        etc."terminfo-missing".text = builtins.concatStringsSep "\n" (builtins.attrNames excludedTerminfos);
        etc."terminfo-extra-outs".text = builtins.concatStringsSep "\n" (builtins.attrNames includedOuts);
      };
    };

  testScript =
    ''
      machine.fail("grep . /etc/terminfo-missing >&2")
      machine.fail("grep . /etc/terminfo-extra-outs >&2")
    '';
})