summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
authorGuillaume Girol <symphorien@users.noreply.github.com>2021-01-09 15:20:52 +0000
committerGitHub <noreply@github.com>2021-01-09 15:20:52 +0000
commit67ff28aca0dfa218ad507e86461e44793bf8eafd (patch)
tree65f69a2f20587256a48a2762021cb0e7649d24cd /nixos
parent9622a8981bc71964b6364bbf3115c65b2352875c (diff)
parent0573b54e29854cd133d9ab71a0533dc9d22d6403 (diff)
Merge pull request #108789 from thiagokokada/add-tests-to-opentabletdriver
nixos/opentabletdriver: add tests
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/hardware/opentabletdriver.nix2
-rw-r--r--nixos/tests/all-tests.nix1
-rw-r--r--nixos/tests/opentabletdriver.nix27
3 files changed, 30 insertions, 0 deletions
diff --git a/nixos/modules/hardware/opentabletdriver.nix b/nixos/modules/hardware/opentabletdriver.nix
index 0f34d903f68b..295e23e6164f 100644
--- a/nixos/modules/hardware/opentabletdriver.nix
+++ b/nixos/modules/hardware/opentabletdriver.nix
@@ -5,6 +5,8 @@ let
cfg = config.hardware.opentabletdriver;
in
{
+ meta.maintainers = with lib.maintainers; [ thiagokokada ];
+
options = {
hardware.opentabletdriver = {
enable = mkOption {
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index c491b559213c..8d04f10157e7 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -281,6 +281,7 @@ in
openssh = handleTest ./openssh.nix {};
openstack-image-metadata = (handleTestOn ["x86_64-linux"] ./openstack-image.nix {}).metadata or {};
openstack-image-userdata = (handleTestOn ["x86_64-linux"] ./openstack-image.nix {}).userdata or {};
+ opentabletdriver = handleTest ./opentabletdriver.nix {};
image-contents = handleTest ./image-contents.nix {};
orangefs = handleTest ./orangefs.nix {};
os-prober = handleTestOn ["x86_64-linux"] ./os-prober.nix {};
diff --git a/nixos/tests/opentabletdriver.nix b/nixos/tests/opentabletdriver.nix
new file mode 100644
index 000000000000..2cadfae6b263
--- /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")
+ '';
+})