2022-03-13 13:31:43 +00:00
|
|
|
import ./make-test-python.nix ({ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
name = "tomcat";
|
|
|
|
|
2022-03-20 23:15:30 +00:00
|
|
|
nodes.machine = { pkgs, ... }: {
|
2022-03-13 13:31:43 +00:00
|
|
|
services.tomcat.enable = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
testScript = ''
|
|
|
|
machine.wait_for_unit("tomcat.service")
|
|
|
|
machine.wait_for_open_port(8080)
|
|
|
|
machine.wait_for_file("/var/tomcat/webapps/examples");
|
|
|
|
machine.succeed(
|
|
|
|
"curl --fail http://localhost:8080/examples/servlets/servlet/HelloWorldExample | grep 'Hello World!'"
|
|
|
|
)
|
|
|
|
machine.succeed(
|
|
|
|
"curl --fail http://localhost:8080/examples/jsp/jsp2/simpletag/hello.jsp | grep 'Hello, world!'"
|
|
|
|
)
|
|
|
|
'';
|
|
|
|
})
|