nixpkgs/nixos/tests/hitch/default.nix

34 lines
799 B
Nix
Raw Normal View History

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