Files
nixpkgs/nixos/tests/cloudlog.nix
2025-12-11 23:54:41 +01:00

17 lines
381 B
Nix

{ pkgs, ... }:
{
name = "cloudlog";
nodes = {
machine = {
services.mysql.package = pkgs.mariadb;
services.cloudlog.enable = true;
};
};
testScript = ''
start_all()
machine.wait_for_unit("phpfpm-cloudlog")
machine.wait_for_open_port(80);
machine.wait_until_succeeds("curl -s -L --fail http://localhost | grep 'Login - Cloudlog'")
'';
}