2021-05-03 20:48:10 +00:00
|
|
|
import ./make-test-python.nix ({ pkgs, lib, ... }:
|
2020-08-20 17:08:02 +00:00
|
|
|
{
|
2022-09-09 14:08:57 +00:00
|
|
|
name = "zigbee2mqtt";
|
2022-04-03 18:54:34 +00:00
|
|
|
nodes.machine = { pkgs, ... }:
|
2020-08-20 17:08:02 +00:00
|
|
|
{
|
2024-02-07 01:22:34 +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-08-20 17:08:02 +00:00
|
|
|
services.zigbee2mqtt = {
|
|
|
|
enable = true;
|
|
|
|
};
|
2021-05-03 20:48:10 +00:00
|
|
|
|
|
|
|
systemd.services.zigbee2mqtt.serviceConfig.DevicePolicy = lib.mkForce "auto";
|
2020-08-20 17:08:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
testScript = ''
|
2024-02-07 01:22:34 +00:00
|
|
|
machine.wait_for_unit("multi-user.target")
|
2020-08-20 17:08:02 +00:00
|
|
|
machine.wait_until_fails("systemctl status zigbee2mqtt.service")
|
|
|
|
machine.succeed(
|
2024-09-19 14:19:46 +00:00
|
|
|
"journalctl -eu zigbee2mqtt | grep 'Error: Inappropriate ioctl for device, cannot set'"
|
2020-08-20 17:08:02 +00:00
|
|
|
)
|
2021-05-03 20:48:10 +00:00
|
|
|
|
|
|
|
machine.log(machine.succeed("systemd-analyze security zigbee2mqtt.service"))
|
2020-08-20 17:08:02 +00:00
|
|
|
'';
|
|
|
|
}
|
|
|
|
)
|