nixpkgs/nixos/tests/zigbee2mqtt.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
907 B
Nix
Raw Normal View History

import ./make-test-python.nix ({ pkgs, lib, ... }:
2020-06-07 22:09:50 +00:00
{
2022-09-01 11:32:47 +00:00
name = "zigbee2mqtt";
2022-03-20 23:15:30 +00:00
nodes.machine = { pkgs, ... }:
2020-06-07 22:09:50 +00:00
{
systemd.services.dummy-serial = {
wantedBy = [
"multi-user.target"
];
serviceConfig = {
ExecStart = "${pkgs.socat}/bin/socat pty,link=/dev/ttyACM0,mode=666 pty,link=/dev/ttyACM1";
};
};
2020-06-07 22:09:50 +00:00
services.zigbee2mqtt = {
enable = true;
};
systemd.services.zigbee2mqtt.serviceConfig.DevicePolicy = lib.mkForce "auto";
2020-06-07 22:09:50 +00:00
};
testScript = ''
machine.wait_for_unit("multi-user.target")
2020-06-07 22:09:50 +00:00
machine.wait_until_fails("systemctl status zigbee2mqtt.service")
machine.succeed(
"journalctl -eu zigbee2mqtt | grep 'Failed to connect to the adapter'"
2020-06-07 22:09:50 +00:00
)
machine.log(machine.succeed("systemd-analyze security zigbee2mqtt.service"))
2020-06-07 22:09:50 +00:00
'';
}
)