summaryrefslogtreecommitdiffstats
path: root/nixos/tests/opentabletdriver.nix
blob: e97e3a5fe1232ed4dbbcb932b6b1dd6f9ff1f1a4 (plain)
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
{ pkgs, ... }:
let
  testUser = "alice";
in
{
  name = "opentabletdriver";
  meta = {
    maintainers = with pkgs.lib.maintainers; [ thiagokokada ];
  };

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

  testScript = ''
    machine.start()
    machine.wait_for_x()

    machine.wait_for_unit('graphical.target')
    machine.wait_for_unit("opentabletdriver.service", "${testUser}")

    machine.succeed("cat /etc/udev/rules.d/70-opentabletdriver.rules")
    # Will fail if service is not running
    # Needs to run as the same user that started the service
    machine.succeed("su - ${testUser} -c 'otd detect'")
  '';
}