nixpkgs/nixos/tests/rsyslogd.nix

41 lines
1.0 KiB
Nix
Raw Normal View History

{ system ? builtins.currentSystem,
config ? {},
pkgs ? import ../.. { inherit system config; }
}:
2020-02-14 08:32:28 +01:00
with import ../lib/testing-python.nix { inherit system pkgs; };
2018-10-30 13:27:44 +01:00
with pkgs.lib;
{
test1 = makeTest {
name = "rsyslogd-test1";
meta.maintainers = [ pkgs.lib.maintainers.aanderse ];
2020-02-14 08:32:28 +01:00
machine = { config, pkgs, ... }: {
services.rsyslogd.enable = true;
services.journald.forwardToSyslog = false;
};
# ensure rsyslogd isn't receiving messages from journald if explicitly disabled
testScript = ''
2020-02-14 08:32:28 +01:00
machine.wait_for_unit("default.target")
machine.fail("test -f /var/log/messages")
'';
};
test2 = makeTest {
name = "rsyslogd-test2";
meta.maintainers = [ pkgs.lib.maintainers.aanderse ];
2020-02-14 08:32:28 +01:00
machine = { config, pkgs, ... }: {
services.rsyslogd.enable = true;
};
# ensure rsyslogd is receiving messages from journald
testScript = ''
2020-02-14 08:32:28 +01:00
machine.wait_for_unit("default.target")
machine.succeed("test -f /var/log/messages")
'';
};
}