nixosTests.nagios: handleTest -> runTest
This commit is contained in:
parent
7b09056b8f
commit
f253690f02
@ -912,7 +912,7 @@ in
|
|||||||
mysql-backup = handleTest ./mysql/mysql-backup.nix { };
|
mysql-backup = handleTest ./mysql/mysql-backup.nix { };
|
||||||
mysql-replication = handleTest ./mysql/mysql-replication.nix { };
|
mysql-replication = handleTest ./mysql/mysql-replication.nix { };
|
||||||
n8n = runTest ./n8n.nix;
|
n8n = runTest ./n8n.nix;
|
||||||
nagios = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./nagios.nix { };
|
nagios = runTestOn [ "x86_64-linux" "aarch64-linux" ] ./nagios.nix;
|
||||||
nar-serve = runTest ./nar-serve.nix;
|
nar-serve = runTest ./nar-serve.nix;
|
||||||
nat.firewall = handleTest ./nat.nix { withFirewall = true; };
|
nat.firewall = handleTest ./nat.nix { withFirewall = true; };
|
||||||
nat.standalone = handleTest ./nat.nix { withFirewall = false; };
|
nat.standalone = handleTest ./nat.nix { withFirewall = false; };
|
||||||
|
@ -1,124 +1,120 @@
|
|||||||
import ./make-test-python.nix (
|
{ lib, ... }:
|
||||||
{ pkgs, ... }:
|
{
|
||||||
{
|
name = "nagios";
|
||||||
name = "nagios";
|
meta = with lib.maintainers; {
|
||||||
meta = with pkgs.lib.maintainers; {
|
maintainers = [ symphorien ];
|
||||||
maintainers = [ symphorien ];
|
};
|
||||||
|
|
||||||
|
nodes.machine =
|
||||||
|
{ pkgs, ... }:
|
||||||
|
let
|
||||||
|
writer = pkgs.writeShellScript "write" ''
|
||||||
|
set -x
|
||||||
|
echo "$@" >> /tmp/notifications
|
||||||
|
'';
|
||||||
|
in
|
||||||
|
{
|
||||||
|
# tested service
|
||||||
|
services.sshd.enable = true;
|
||||||
|
# nagios
|
||||||
|
services.nagios = {
|
||||||
|
enable = true;
|
||||||
|
# make state transitions faster
|
||||||
|
extraConfig.interval_length = "5";
|
||||||
|
objectDefs =
|
||||||
|
(map (x: "${pkgs.nagios}/etc/objects/${x}.cfg") [
|
||||||
|
"templates"
|
||||||
|
"timeperiods"
|
||||||
|
"commands"
|
||||||
|
])
|
||||||
|
++ [
|
||||||
|
(pkgs.writeText "objects.cfg" ''
|
||||||
|
# notifications are written to /tmp/notifications
|
||||||
|
define command {
|
||||||
|
command_name notify-host-by-file
|
||||||
|
command_line ${writer} "$HOSTNAME is $HOSTSTATE$"
|
||||||
|
}
|
||||||
|
define command {
|
||||||
|
command_name notify-service-by-file
|
||||||
|
command_line ${writer} "$SERVICEDESC$ is $SERVICESTATE$"
|
||||||
|
}
|
||||||
|
|
||||||
|
# nagios boilerplate
|
||||||
|
define contact {
|
||||||
|
contact_name alice
|
||||||
|
alias alice
|
||||||
|
host_notifications_enabled 1
|
||||||
|
service_notifications_enabled 1
|
||||||
|
service_notification_period 24x7
|
||||||
|
host_notification_period 24x7
|
||||||
|
service_notification_options w,u,c,r,f,s
|
||||||
|
host_notification_options d,u,r,f,s
|
||||||
|
service_notification_commands notify-service-by-file
|
||||||
|
host_notification_commands notify-host-by-file
|
||||||
|
email foo@example.com
|
||||||
|
}
|
||||||
|
define contactgroup {
|
||||||
|
contactgroup_name admins
|
||||||
|
alias Admins
|
||||||
|
members alice
|
||||||
|
}
|
||||||
|
define hostgroup{
|
||||||
|
hostgroup_name allhosts
|
||||||
|
alias All hosts
|
||||||
|
}
|
||||||
|
|
||||||
|
# monitored objects
|
||||||
|
define host {
|
||||||
|
use generic-host
|
||||||
|
host_name localhost
|
||||||
|
alias localhost
|
||||||
|
address localhost
|
||||||
|
hostgroups allhosts
|
||||||
|
contact_groups admins
|
||||||
|
# make state transitions faster.
|
||||||
|
max_check_attempts 2
|
||||||
|
check_interval 1
|
||||||
|
retry_interval 1
|
||||||
|
}
|
||||||
|
define service {
|
||||||
|
use generic-service
|
||||||
|
host_name localhost
|
||||||
|
service_description ssh
|
||||||
|
check_command check_ssh
|
||||||
|
# make state transitions faster.
|
||||||
|
max_check_attempts 2
|
||||||
|
check_interval 1
|
||||||
|
retry_interval 1
|
||||||
|
}
|
||||||
|
'')
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
nodes.machine =
|
testScript = ''
|
||||||
{ lib, ... }:
|
with subtest("ensure sshd starts"):
|
||||||
let
|
machine.wait_for_unit("sshd.service")
|
||||||
writer = pkgs.writeShellScript "write" ''
|
|
||||||
set -x
|
|
||||||
echo "$@" >> /tmp/notifications
|
|
||||||
'';
|
|
||||||
in
|
|
||||||
{
|
|
||||||
# tested service
|
|
||||||
services.sshd.enable = true;
|
|
||||||
# nagios
|
|
||||||
services.nagios = {
|
|
||||||
enable = true;
|
|
||||||
# make state transitions faster
|
|
||||||
extraConfig.interval_length = "5";
|
|
||||||
objectDefs =
|
|
||||||
(map (x: "${pkgs.nagios}/etc/objects/${x}.cfg") [
|
|
||||||
"templates"
|
|
||||||
"timeperiods"
|
|
||||||
"commands"
|
|
||||||
])
|
|
||||||
++ [
|
|
||||||
(pkgs.writeText "objects.cfg" ''
|
|
||||||
# notifications are written to /tmp/notifications
|
|
||||||
define command {
|
|
||||||
command_name notify-host-by-file
|
|
||||||
command_line ${writer} "$HOSTNAME is $HOSTSTATE$"
|
|
||||||
}
|
|
||||||
define command {
|
|
||||||
command_name notify-service-by-file
|
|
||||||
command_line ${writer} "$SERVICEDESC$ is $SERVICESTATE$"
|
|
||||||
}
|
|
||||||
|
|
||||||
# nagios boilerplate
|
|
||||||
define contact {
|
|
||||||
contact_name alice
|
|
||||||
alias alice
|
|
||||||
host_notifications_enabled 1
|
|
||||||
service_notifications_enabled 1
|
|
||||||
service_notification_period 24x7
|
|
||||||
host_notification_period 24x7
|
|
||||||
service_notification_options w,u,c,r,f,s
|
|
||||||
host_notification_options d,u,r,f,s
|
|
||||||
service_notification_commands notify-service-by-file
|
|
||||||
host_notification_commands notify-host-by-file
|
|
||||||
email foo@example.com
|
|
||||||
}
|
|
||||||
define contactgroup {
|
|
||||||
contactgroup_name admins
|
|
||||||
alias Admins
|
|
||||||
members alice
|
|
||||||
}
|
|
||||||
define hostgroup{
|
|
||||||
hostgroup_name allhosts
|
|
||||||
alias All hosts
|
|
||||||
}
|
|
||||||
|
|
||||||
# monitored objects
|
|
||||||
define host {
|
|
||||||
use generic-host
|
|
||||||
host_name localhost
|
|
||||||
alias localhost
|
|
||||||
address localhost
|
|
||||||
hostgroups allhosts
|
|
||||||
contact_groups admins
|
|
||||||
# make state transitions faster.
|
|
||||||
max_check_attempts 2
|
|
||||||
check_interval 1
|
|
||||||
retry_interval 1
|
|
||||||
}
|
|
||||||
define service {
|
|
||||||
use generic-service
|
|
||||||
host_name localhost
|
|
||||||
service_description ssh
|
|
||||||
check_command check_ssh
|
|
||||||
# make state transitions faster.
|
|
||||||
max_check_attempts 2
|
|
||||||
check_interval 1
|
|
||||||
retry_interval 1
|
|
||||||
}
|
|
||||||
'')
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
testScript =
|
|
||||||
{ ... }:
|
|
||||||
''
|
|
||||||
with subtest("ensure sshd starts"):
|
|
||||||
machine.wait_for_unit("sshd.service")
|
|
||||||
|
|
||||||
|
|
||||||
with subtest("ensure nagios starts"):
|
with subtest("ensure nagios starts"):
|
||||||
machine.wait_for_file("/var/log/nagios/current")
|
machine.wait_for_file("/var/log/nagios/current")
|
||||||
|
|
||||||
|
|
||||||
def assert_notify(text):
|
def assert_notify(text):
|
||||||
machine.wait_for_file("/tmp/notifications")
|
machine.wait_for_file("/tmp/notifications")
|
||||||
real = machine.succeed("cat /tmp/notifications").strip()
|
real = machine.succeed("cat /tmp/notifications").strip()
|
||||||
print(f"got {real!r}, expected {text!r}")
|
print(f"got {real!r}, expected {text!r}")
|
||||||
assert text == real
|
assert text == real
|
||||||
|
|
||||||
|
|
||||||
with subtest("ensure we get a notification when sshd is down"):
|
with subtest("ensure we get a notification when sshd is down"):
|
||||||
machine.succeed("systemctl stop sshd")
|
machine.succeed("systemctl stop sshd")
|
||||||
assert_notify("ssh is CRITICAL")
|
assert_notify("ssh is CRITICAL")
|
||||||
|
|
||||||
|
|
||||||
with subtest("ensure tests can succeed"):
|
with subtest("ensure tests can succeed"):
|
||||||
machine.succeed("systemctl start sshd")
|
machine.succeed("systemctl start sshd")
|
||||||
machine.succeed("rm /tmp/notifications")
|
machine.succeed("rm /tmp/notifications")
|
||||||
assert_notify("ssh is OK")
|
assert_notify("ssh is OK")
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
)
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user