about summary refs log tree commit diff
path: root/nixos/tests/libinput.nix
diff options
context:
space:
mode:
authorThiago Kenji Okada <thiagokokada@gmail.com>2021-11-15 08:46:20 -0300
committerThiago Kenji Okada <thiagokokada@gmail.com>2021-11-16 13:09:02 -0300
commit63b4b8616b69dd1ee0be4b3d2098d9332ceee357 (patch)
tree53a4521831547d760675870952fc4c08807b898b /nixos/tests/libinput.nix
parentc7a180ab0ce358f032755f536e8208fa206e5e64 (diff)
nixos/libinput: add module tests
Diffstat (limited to 'nixos/tests/libinput.nix')
-rw-r--r--nixos/tests/libinput.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/nixos/tests/libinput.nix b/nixos/tests/libinput.nix
new file mode 100644
index 0000000000000..2f84aaadcd0be
--- /dev/null
+++ b/nixos/tests/libinput.nix
@@ -0,0 +1,38 @@
+import ./make-test-python.nix ({ ... }:
+
+{
+  name = "libinput";
+
+  machine = { ... }:
+    {
+      imports = [
+        ./common/x11.nix
+        ./common/user-account.nix
+      ];
+
+      test-support.displayManager.auto.user = "alice";
+
+      services.xserver.libinput = {
+        enable = true;
+        mouse = {
+          naturalScrolling = true;
+          leftHanded = true;
+          middleEmulation = false;
+          horizontalScrolling = false;
+        };
+      };
+    };
+
+  testScript = ''
+    def expect_xserver_option(option, value):
+        machine.succeed(f"""cat /var/log/X.0.log | grep -F 'Option "{option}" "{value}"'""")
+
+    machine.start()
+    machine.wait_for_x()
+    machine.succeed("""cat /var/log/X.0.log | grep -F "Using input driver 'libinput'" """)
+    expect_xserver_option("NaturalScrolling", "on")
+    expect_xserver_option("LeftHanded", "on")
+    expect_xserver_option("MiddleEmulation", "off")
+    expect_xserver_option("HorizontalScrolling", "off")
+  '';
+})