nixpkgs/nixos/tests/morty.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
582 B
Nix
Raw Permalink Normal View History

2019-11-06 09:58:22 +03:00
import ./make-test-python.nix ({ pkgs, ... }:
2018-05-30 19:13:16 +03:00
{
name = "morty";
meta = with pkgs.lib.maintainers; {
2018-05-30 19:13:16 +03:00
maintainers = [ leenaars ];
};
nodes =
{ mortyProxyWithKey =
{ ... }:
2018-05-30 19:13:16 +03:00
{ services.morty = {
enable = true;
2020-11-22 10:23:53 +03:00
key = "78a9cd0cfee20c672f78427efb2a2a96036027f0";
port = 3001;
};
2018-05-30 19:13:16 +03:00
};
};
testScript =
{ ... }:
2018-05-30 19:13:16 +03:00
''
2019-11-06 09:58:22 +03:00
mortyProxyWithKey.wait_for_unit("default.target")
mortyProxyWithKey.wait_for_open_port(3001)
2020-09-16 18:03:37 +03:00
mortyProxyWithKey.succeed("curl -fL 127.0.0.1:3001 | grep MortyProxy")
2018-05-30 19:13:16 +03:00
'';
})