summaryrefslogtreecommitdiffstats
path: root/nixos/tests
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/all-tests.nix2
-rw-r--r--nixos/tests/nzbhydra2.nix17
-rw-r--r--nixos/tests/opentabletdriver.nix27
3 files changed, 46 insertions, 0 deletions
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index c491b559213c..d53c6f6511e3 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -274,6 +274,7 @@ in
novacomd = handleTestOn ["x86_64-linux"] ./novacomd.nix {};
nsd = handleTest ./nsd.nix {};
nzbget = handleTest ./nzbget.nix {};
+ nzbhydra2 = handleTest ./nzbhydra2.nix {};
oh-my-zsh = handleTest ./oh-my-zsh.nix {};
openarena = handleTest ./openarena.nix {};
openldap = handleTest ./openldap.nix {};
@@ -281,6 +282,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/nzbhydra2.nix b/nixos/tests/nzbhydra2.nix
new file mode 100644
index 000000000000..c82c756c3a1c
--- /dev/null
+++ b/nixos/tests/nzbhydra2.nix
@@ -0,0 +1,17 @@
+import ./make-test-python.nix ({ lib, ... }:
+
+ with lib;
+
+ {
+ name = "nzbhydra2";
+ meta.maintainers = with maintainers; [ jamiemagee ];
+
+ nodes.machine = { pkgs, ... }: { services.nzbhydra2.enable = true; };
+
+ testScript = ''
+ machine.start()
+ machine.wait_for_unit("nzbhydra2.service")
+ machine.wait_for_open_port(5076)
+ machine.succeed("curl --fail http://localhost:5076/")
+ '';
+ })
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")
+ '';
+})