My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/nixos/tests/leaps.nix

32 lines
629 B

import ./make-test-python.nix ({ pkgs, ... }:
{
name = "leaps";
meta = with pkgs.lib.maintainers; {
maintainers = [ qknight ];
};
nodes =
{
client = { };
server =
{ services.leaps = {
enable = true;
port = 6666;
path = "/leaps/";
};
networking.firewall.enable = false;
};
};
testScript =
''
start_all()
server.wait_for_open_port(6666)
client.wait_for_unit("network.target")
assert "leaps" in client.succeed(
"${pkgs.curl}/bin/curl -f http://server:6666/leaps/"
)
'';
})