2015-07-12 03:09:40 -07:00
|
|
|
import ./make-test.nix ({ pkgs, ...} : {
|
2014-06-28 07:04:49 -07:00
|
|
|
name = "tomcat";
|
2015-07-12 03:09:40 -07:00
|
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
|
|
maintainers = [ eelco chaoflow ];
|
|
|
|
};
|
2011-08-26 03:17:24 -07:00
|
|
|
|
|
|
|
nodes = {
|
2011-09-14 11:20:50 -07:00
|
|
|
server =
|
2018-07-20 13:56:59 -07:00
|
|
|
{ ... }:
|
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");
|
|
|
|
$client->waitForUnit("network.target");
|
2016-09-13 12:56:27 -07:00
|
|
|
$client->waitUntilSucceeds("curl --fail http://server/examples/servlets/servlet/HelloWorldExample");
|
|
|
|
$client->waitUntilSucceeds("curl --fail http://server/examples/jsp/jsp2/simpletag/hello.jsp");
|
2011-08-26 03:17:24 -07:00
|
|
|
'';
|
2015-07-12 03:09:40 -07:00
|
|
|
})
|