mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
24 lines
476 B
Nix
24 lines
476 B
Nix
# This test runs peerflix and checks if peerflix starts
|
|
|
|
import ./make-test.nix ({ pkgs, ...} : {
|
|
name = "peerflix";
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
maintainers = [ offline ];
|
|
};
|
|
|
|
nodes = {
|
|
peerflix =
|
|
{ config, pkgs, ... }:
|
|
{
|
|
services.peerflix.enable = true;
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
startAll;
|
|
|
|
$peerflix->waitForUnit("peerflix.service");
|
|
$peerflix->waitUntilSucceeds("curl localhost:9000");
|
|
'';
|
|
})
|