wchisp: remove overuse of with lib (#357239)
[NixPkgs.git] / nixos / tests / zigbee2mqtt.nix
blob3311bb11eb1a2c88c84f04a43911f3b697c3843a
1 import ./make-test-python.nix ({ pkgs, lib, ... }:
2   {
3     name = "zigbee2mqtt";
4     nodes.machine = { pkgs, ... }:
5       {
6         systemd.services.dummy-serial = {
7           wantedBy = [
8             "multi-user.target"
9           ];
10           serviceConfig = {
11             ExecStart = "${pkgs.socat}/bin/socat pty,link=/dev/ttyACM0,mode=666 pty,link=/dev/ttyACM1";
12           };
13         };
15         services.zigbee2mqtt = {
16           enable = true;
17         };
19         systemd.services.zigbee2mqtt.serviceConfig.DevicePolicy = lib.mkForce "auto";
20       };
22     testScript = ''
23       machine.wait_for_unit("multi-user.target")
24       machine.wait_until_fails("systemctl status zigbee2mqtt.service")
25       machine.succeed(
26           "journalctl -eu zigbee2mqtt | grep 'Error: Inappropriate ioctl for device, cannot set'"
27       )
29       machine.log(machine.succeed("systemd-analyze security zigbee2mqtt.service"))
30     '';
31   }