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