summary refs log tree commit diff
path: root/nixos/tests/opentabletdriver.nix
blob: 2cadfae6b263e58dd63b50ce09229c44a09126de (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
import ./make-test-python.nix ( { pkgs, ... }: {
  name = "opentabletdriver";
  meta = {
    maintainers = with pkgs.stdenv.lib.maintainers; [ thiagokokada ];
  };

  machine = { pkgs, ... }:
    {
      imports = [
        ./common/user-account.nix
        ./common/x11.nix
      ];
      test-support.displayManager.auto.user = "alice";
      hardware.opentabletdriver.enable = true;
    };

  testScript =
    ''
      machine.start()
      machine.wait_for_x()
      machine.wait_for_unit("opentabletdriver.service", "alice")

      machine.succeed("cat /etc/udev/rules.d/30-opentabletdriver.rules")
      # Will fail if service is not running
      machine.succeed("otd detect")
    '';
})