nixpkgs/nixos/tests/convos.nix

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

28 lines
490 B
Nix
Raw Normal View History

2020-06-05 12:54:29 +00:00
import ./make-test-python.nix ({ lib, pkgs, ... }:
2020-06-05 12:54:29 +00:00
let
port = 3333;
in
{
name = "convos";
meta.maintainers = with lib.maintainers; [ sgo ];
2020-06-05 12:54:29 +00:00
nodes = {
machine =
{ pkgs, ... }:
{
services.convos = {
enable = true;
listenPort = port;
};
};
};
testScript = ''
machine.wait_for_unit("convos")
machine.wait_for_open_port(${toString port})
2020-09-16 16:01:44 +00:00
machine.succeed("curl -f http://localhost:${toString port}/")
2020-06-05 12:54:29 +00:00
'';
})