mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
33 lines
681 B
Nix
33 lines
681 B
Nix
|
import ./make-test-python.nix (
|
||
|
{ lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
name = "goatcounter";
|
||
|
|
||
|
meta.maintainers = with lib.maintainers; [ bhankas ];
|
||
|
|
||
|
nodes.machine =
|
||
|
{ config, ... }:
|
||
|
{
|
||
|
virtualisation.memorySize = 2048;
|
||
|
|
||
|
services.goatcounter = {
|
||
|
enable = true;
|
||
|
proxy = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
testScript = ''
|
||
|
start_all()
|
||
|
machine.wait_for_unit("goatcounter.service")
|
||
|
# wait for goatcounter to fully come up
|
||
|
|
||
|
with subtest("goatcounter service starts"):
|
||
|
machine.wait_until_succeeds(
|
||
|
"curl -sSfL http://localhost:8081/ > /dev/null",
|
||
|
timeout=30
|
||
|
)
|
||
|
'';
|
||
|
}
|
||
|
)
|