nixpkgs/nixos/tests/web-apps/healthchecks.nix

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

45 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, pkgs, ... }:
{
name = "healthchecks";
2022-06-10 14:31:00 +02:00
meta = with lib.maintainers; {
maintainers = [ phaer ];
};
2022-06-10 14:31:00 +02:00
nodes.machine =
{ ... }:
{
services.healthchecks = {
enable = true;
settings = {
SITE_NAME = "MyUniqueInstance";
COMPRESS_ENABLED = "True";
SECRET_KEY_FILE = pkgs.writeText "secret" "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
};
2022-06-10 14:31:00 +02:00
};
};
2022-06-10 14:31:00 +02:00
testScript = ''
machine.start()
machine.wait_for_unit("healthchecks.target")
machine.wait_until_succeeds("journalctl --since -1m --unit healthchecks --grep Listening")
2022-06-10 14:31:00 +02:00
with subtest("Home screen loads"):
machine.succeed(
"curl -sSfL http://localhost:8000 | grep '<title>Log In'"
)
2022-06-10 14:31:00 +02:00
with subtest("Setting SITE_NAME via freeform option works"):
machine.succeed(
"curl -sSfL http://localhost:8000 | grep 'MyUniqueInstance</title>'"
)
2022-06-10 14:31:00 +02:00
with subtest("Manage script works"):
# "shell" sucommand should succeed, needs python in PATH.
assert "foo\n" == machine.succeed("echo 'print(\"foo\")' | sudo -u healthchecks healthchecks-manage shell")
# Shouldn't fail if not called by healthchecks user
assert "foo\n" == machine.succeed("echo 'print(\"foo\")' | healthchecks-manage shell")
'';
}