nixpkgs/nixos/tests/peerflix.nix
2019-12-15 20:08:01 +01:00

24 lines
469 B
Nix

# This test runs peerflix and checks if peerflix starts
import ./make-test-python.nix ({ pkgs, ...} : {
name = "peerflix";
meta = with pkgs.stdenv.lib.maintainers; {
maintainers = [ offline ];
};
nodes = {
peerflix =
{ ... }:
{
services.peerflix.enable = true;
};
};
testScript = ''
start_all()
peerflix.wait_for_unit("peerflix.service")
peerflix.wait_until_succeeds("curl localhost:9000")
'';
})