about summary refs log tree commit diff
path: root/nixos/tests/opentabletdriver.nix
diff options
context:
space:
mode:
authorThiago Kenji Okada <thiagokokada@gmail.com>2021-01-08 13:48:00 -0300
committerThiago Kenji Okada <thiagokokada@gmail.com>2021-01-08 14:27:40 -0300
commit41c50cc5052e80a7132880b28ff38c52b611c974 (patch)
tree20e1004a8a801270e3e2ff5176ed1d0d9d847b2b /nixos/tests/opentabletdriver.nix
parentc7e546aea1b1fd23fe6acbbeee293f312a98c3be (diff)
nixos/opentabletdriver: add tests
Diffstat (limited to 'nixos/tests/opentabletdriver.nix')
-rw-r--r--nixos/tests/opentabletdriver.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/nixos/tests/opentabletdriver.nix b/nixos/tests/opentabletdriver.nix
new file mode 100644
index 0000000000000..2cadfae6b263e
--- /dev/null
+++ b/nixos/tests/opentabletdriver.nix
@@ -0,0 +1,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")
+    '';
+})