1 import ./make-test-python.nix ({ pkgs, ... }: {
4 nodes.machine = { pkgs, ... }: {
12 machine.wait_for_unit("tomcat.service")
13 machine.wait_for_open_port(8080)
14 machine.wait_for_file("/var/tomcat/webapps/examples");
17 "curl -sS --fail http://localhost:8080/examples/servlets/servlet/HelloWorldExample | grep 'Hello World!'"
20 "curl -sS --fail http://localhost:8080/examples/jsp/jsp2/simpletag/hello.jsp | grep 'Hello, world!'"
23 "curl -sS --fail http://localhost:8080/axis2/axis2-web/HappyAxis.jsp | grep 'Found Axis2'"