summary refs log tree commit diff
path: root/nixos/tests/zigbee2mqtt.nix
blob: b7bb21f9227af30bac25fb0195c1cf56d81eed1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import ./make-test-python.nix ({ pkgs, ... }:

  {
    machine = { pkgs, ... }:
      {
        services.zigbee2mqtt = {
          enable = true;
        };
      };

    testScript = ''
      machine.wait_for_unit("zigbee2mqtt.service")
      machine.wait_until_fails("systemctl status zigbee2mqtt.service")
      machine.succeed(
          "journalctl -eu zigbee2mqtt | grep \"Error: Error while opening serialport 'Error: Error: No such file or directory, cannot open /dev/ttyACM0'\""
      )
    '';
  }
)