2011-08-26 12:17:24 +02:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
nodes = {
|
2011-09-14 20:20:50 +02:00
|
|
|
server =
|
2011-08-26 12:17:24 +02:00
|
|
|
{ pkgs, config, ... }:
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2014-04-11 17:15:56 +02:00
|
|
|
{ services.tomcat.enable = true;
|
2011-08-26 12:17:24 +02:00
|
|
|
services.httpd.enable = true;
|
|
|
|
services.httpd.adminAddr = "foo@bar.com";
|
2014-04-11 17:15:56 +02:00
|
|
|
services.httpd.extraSubservices =
|
|
|
|
[ { serviceType = "tomcat-connector"; } ];
|
|
|
|
networking.firewall.allowedTCPPorts = [ 80 ];
|
2011-08-26 12:17:24 +02:00
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2011-08-26 12:17:24 +02:00
|
|
|
client = { };
|
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2011-08-26 12:17:24 +02:00
|
|
|
testScript = ''
|
|
|
|
startAll;
|
|
|
|
|
2012-10-24 18:22:53 +02:00
|
|
|
$server->waitForUnit("tomcat");
|
2011-08-26 12:17:24 +02:00
|
|
|
$server->sleep(30); # Dirty, but it takes a while before Tomcat handles to requests properly
|
2012-10-24 18:22:53 +02:00
|
|
|
$client->waitForUnit("network.target");
|
2011-08-29 16:23:26 +02:00
|
|
|
$client->succeed("curl --fail http://server/examples/servlets/servlet/HelloWorldExample");
|
|
|
|
$client->succeed("curl --fail http://server/examples/jsp/jsp2/simpletag/hello.jsp");
|
2011-08-26 12:17:24 +02:00
|
|
|
'';
|
|
|
|
}
|