2019-12-16 22:02:36 +01:00
|
|
|
import ../make-test-python.nix ({ pkgs, ... }:
|
2018-05-01 11:36:36 +02:00
|
|
|
{
|
|
|
|
name = "hitch";
|
|
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
|
|
maintainers = [ jflanglois ];
|
|
|
|
};
|
2018-07-20 22:56:59 +02:00
|
|
|
machine = { pkgs, ... }: {
|
2018-05-01 11:36:36 +02:00
|
|
|
environment.systemPackages = [ pkgs.curl ];
|
|
|
|
services.hitch = {
|
|
|
|
enable = true;
|
|
|
|
backend = "[127.0.0.1]:80";
|
|
|
|
pem-files = [
|
|
|
|
./example.pem
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
services.httpd = {
|
|
|
|
enable = true;
|
2019-11-04 22:24:55 +01:00
|
|
|
virtualHosts.localhost.documentRoot = ./example;
|
2018-05-01 11:36:36 +02:00
|
|
|
adminAddr = "noone@testing.nowhere";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
testScript =
|
|
|
|
''
|
2019-12-16 22:02:36 +01:00
|
|
|
start_all()
|
2018-05-01 11:36:36 +02:00
|
|
|
|
2019-12-16 22:02:36 +01:00
|
|
|
machine.wait_for_unit("multi-user.target")
|
|
|
|
machine.wait_for_unit("hitch.service")
|
|
|
|
machine.wait_for_open_port(443)
|
|
|
|
assert "We are all good!" in machine.succeed("curl -k https://localhost:443/index.txt")
|
2018-05-01 11:36:36 +02:00
|
|
|
'';
|
|
|
|
})
|