2014-12-01 15:40:42 +00:00
|
|
|
# This test runs peerflix and checks if peerflix starts
|
|
|
|
|
2019-12-15 17:50:50 +00:00
|
|
|
import ./make-test-python.nix ({ pkgs, ...} : {
|
2014-12-01 15:40:42 +00:00
|
|
|
name = "peerflix";
|
2021-01-10 19:08:30 +00:00
|
|
|
meta = with pkgs.lib.maintainers; {
|
2015-07-12 11:09:40 +01:00
|
|
|
maintainers = [ offline ];
|
|
|
|
};
|
2014-12-01 15:40:42 +00:00
|
|
|
|
|
|
|
nodes = {
|
|
|
|
peerflix =
|
2018-07-20 21:56:59 +01:00
|
|
|
{ ... }:
|
2014-12-01 15:40:42 +00:00
|
|
|
{
|
|
|
|
services.peerflix.enable = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
testScript = ''
|
2019-12-15 17:50:50 +00:00
|
|
|
start_all()
|
2014-12-01 15:40:42 +00:00
|
|
|
|
2019-12-15 17:50:50 +00:00
|
|
|
peerflix.wait_for_unit("peerflix.service")
|
2020-09-16 15:50:13 +01:00
|
|
|
peerflix.wait_until_succeeds("curl -f localhost:9000")
|
2014-12-01 15:40:42 +00:00
|
|
|
'';
|
2015-07-12 11:09:40 +01:00
|
|
|
})
|