nixpkgs/nixos/tests/n8n.nix

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

26 lines
450 B
Nix
Raw Normal View History

2020-11-28 17:00:25 +00:00
import ./make-test-python.nix ({ lib, ... }:
with lib;
let
port = 5678;
in
{
name = "n8n";
2022-06-07 20:46:49 +00:00
meta.maintainers = with maintainers; [ freezeboy k900 ];
2020-11-28 17:00:25 +00:00
nodes.machine =
{ pkgs, ... }:
{
services.n8n = {
enable = true;
};
};
testScript = ''
machine.wait_for_unit("n8n.service")
2022-06-07 20:46:49 +00:00
machine.wait_for_open_port(${toString port})
2020-11-28 17:00:25 +00:00
machine.succeed("curl --fail http://localhost:${toString port}/")
'';
})