2020-07-18 16:06:22 +00:00
|
|
|
import ./make-test-python.nix ({ lib, pkgs, ... }:
|
|
|
|
|
2023-05-24 13:37:59 +00:00
|
|
|
|
2020-07-18 16:06:22 +00:00
|
|
|
let
|
|
|
|
port = 3333;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
name = "convos";
|
2023-05-24 13:37:59 +00:00
|
|
|
meta.maintainers = with lib.maintainers; [ sgo ];
|
2020-07-18 16:06:22 +00:00
|
|
|
|
|
|
|
nodes = {
|
|
|
|
machine =
|
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
services.convos = {
|
|
|
|
enable = true;
|
|
|
|
listenPort = port;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
testScript = ''
|
|
|
|
machine.wait_for_unit("convos")
|
2022-06-26 10:26:21 +00:00
|
|
|
machine.wait_for_open_port(${toString port})
|
2020-10-27 00:29:36 +00:00
|
|
|
machine.succeed("curl -f http://localhost:${toString port}/")
|
2020-07-18 16:06:22 +00:00
|
|
|
'';
|
|
|
|
})
|