about summary refs log tree commit diff
path: root/nixos/tests/drawterm.nix
blob: 1d444bb55433be716347be9bbedd8fb13aa84768 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{ system, pkgs }:
let
  tests = {
    xorg = {
      node = { pkgs, ... }: {
        imports = [ ./common/user-account.nix ./common/x11.nix ];
        services.xserver.enable = true;
        services.xserver.displayManager.sessionCommands = ''
          ${pkgs.drawterm}/bin/drawterm -g 1024x768 &
        '';
        test-support.displayManager.auto.user = "alice";
      };
      systems = [ "x86_64-linux" "aarch64-linux" ];
    };
    wayland = {
      node = { pkgs, ... }: {
        imports = [ ./common/wayland-cage.nix ];
        services.cage.program = "${pkgs.drawterm-wayland}/bin/drawterm";
      };
      systems = [ "x86_64-linux" ];
    };
  };

  mkTest = name: machine:
    import ./make-test-python.nix ({ pkgs, ... }: {
      inherit name;

      nodes = { "${name}" = machine; };

      meta = with pkgs.lib.maintainers; {
        maintainers = [ moody ];
      };

      enableOCR = true;

      testScript = ''
        @polling_condition
        def drawterm_running():
            machine.succeed("pgrep drawterm")

        start_all()

        machine.wait_for_unit("graphical.target")
        drawterm_running.wait() # type: ignore[union-attr]
        machine.wait_for_text("cpu")
        machine.send_chars("cpu\n")
        machine.wait_for_text("auth")
        machine.send_chars("cpu\n")
        machine.wait_for_text("ending")
        machine.screenshot("out.png")
      '';

    });
  mkTestOn = systems: name: machine:
    if pkgs.lib.elem system systems then mkTest name machine
    else { ... }: { };
in
builtins.mapAttrs (k: v: mkTestOn v.systems k v.node { inherit system; }) tests