nixpkgs/nixos/tests/trac.nix

20 lines
435 B
Nix
Raw Normal View History

2019-11-05 20:45:02 +00:00
import ./make-test-python.nix ({ pkgs, ... }: {
2019-11-03 16:24:22 +00:00
name = "trac";
meta = with pkgs.lib.maintainers; {
2019-11-03 16:24:22 +00:00
maintainers = [ mmahut ];
};
nodes = {
machine = { ... }: {
services.trac.enable = true;
};
};
testScript = ''
2019-11-05 20:45:02 +00:00
start_all()
machine.wait_for_unit("trac.service")
machine.wait_for_open_port(8000)
2020-09-15 22:40:59 +00:00
machine.wait_until_succeeds("curl -fL http://localhost:8000/ | grep 'Trac Powered'")
2019-11-03 16:24:22 +00:00
'';
})