2020-06-05 13:54:29 +01:00
|
|
|
import ./make-test-python.nix ({ lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
port = 3333;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
name = "convos";
|
2021-01-10 19:08:30 +00:00
|
|
|
meta = with pkgs.lib.maintainers; {
|
2020-06-05 13:54:29 +01:00
|
|
|
maintainers = [ sgo ];
|
|
|
|
};
|
|
|
|
|
|
|
|
nodes = {
|
|
|
|
machine =
|
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
services.convos = {
|
|
|
|
enable = true;
|
|
|
|
listenPort = port;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
testScript = ''
|
|
|
|
machine.wait_for_unit("convos")
|
|
|
|
machine.wait_for_open_port("${toString port}")
|
|
|
|
machine.succeed("journalctl -u convos | grep -q 'Listening at.*${toString port}'")
|
2020-09-16 17:01:44 +01:00
|
|
|
machine.succeed("curl -f http://localhost:${toString port}/")
|
2020-06-05 13:54:29 +01:00
|
|
|
'';
|
|
|
|
})
|