2014-04-14 05:02:44 -07:00
|
|
|
import ./make-test.nix {
|
2014-06-28 07:04:49 -07:00
|
|
|
name = "tomcat";
|
2011-08-26 03:17:24 -07:00
|
|
|
|
|
|
|
nodes = {
|
2011-09-14 11:20:50 -07:00
|
|
|
server =
|
2011-08-26 03:17:24 -07:00
|
|
|
{ pkgs, config, ... }:
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2014-04-11 08:15:56 -07:00
|
|
|
{ services.tomcat.enable = true;
|
2011-08-26 03:17:24 -07:00
|
|
|
services.httpd.enable = true;
|
|
|
|
services.httpd.adminAddr = "foo@bar.com";
|
2014-04-11 08:15:56 -07:00
|
|
|
services.httpd.extraSubservices =
|
|
|
|
[ { serviceType = "tomcat-connector"; } ];
|
|
|
|
networking.firewall.allowedTCPPorts = [ 80 ];
|
2011-08-26 03:17:24 -07:00
|
|
|
};
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2011-08-26 03:17:24 -07:00
|
|
|
client = { };
|
|
|
|
};
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2011-08-26 03:17:24 -07:00
|
|
|
testScript = ''
|
|
|
|
startAll;
|
|
|
|
|
2012-10-24 09:22:53 -07:00
|
|
|
$server->waitForUnit("tomcat");
|
2011-08-26 03:17:24 -07:00
|
|
|
$server->sleep(30); # Dirty, but it takes a while before Tomcat handles to requests properly
|
2012-10-24 09:22:53 -07:00
|
|
|
$client->waitForUnit("network.target");
|
2011-08-29 07:23:26 -07: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 03:17:24 -07:00
|
|
|
'';
|
2014-04-14 05:02:44 -07:00
|
|
|
|
2011-08-26 03:17:24 -07:00
|
|
|
}
|