nixpkgs/tests/tomcat.nix
Peter Simons eb6e1310b8 strip trailing whitespace; no functional change
svn path=/nixos/trunk/; revision=29285
2011-09-14 18:20:50 +00:00

33 lines
839 B
Nix

{ pkgs, ... }:
{
nodes = {
server =
{ pkgs, config, ... }:
{
services.tomcat.enable = true;
services.httpd.enable = true;
services.httpd.adminAddr = "foo@bar.com";
services.httpd.extraSubservices = [
{ serviceType = "tomcat-connector";
stateDir = "/var/run/httpd";
logDir = "/var/log/httpd";
}
];
};
client = { };
};
testScript = ''
startAll;
$server->waitForJob("tomcat");
$server->sleep(30); # Dirty, but it takes a while before Tomcat handles to requests properly
$client->waitForJob("network-interfaces");
$client->succeed("curl --fail http://server/examples/servlets/servlet/HelloWorldExample");
$client->succeed("curl --fail http://server/examples/jsp/jsp2/simpletag/hello.jsp");
'';
}