nixpkgs/nixos/tests/robustirc-bridge.nix

31 lines
581 B
Nix
Raw Normal View History

import ./make-test-python.nix (
{ pkgs, ... }:
2020-08-30 18:31:54 +02:00
{
name = "robustirc-bridge";
meta = with pkgs.lib.maintainers; {
maintainers = [ hax404 ];
};
2020-08-30 18:31:54 +02:00
nodes = {
bridge = {
services.robustirc-bridge = {
2020-08-30 18:31:54 +02:00
enable = true;
extraFlags = [
"-listen localhost:6667"
"-network example.com"
];
};
};
};
testScript = ''
2020-08-30 18:31:54 +02:00
start_all()
bridge.wait_for_unit("robustirc-bridge.service")
bridge.wait_for_open_port(1080)
bridge.wait_for_open_port(6667)
'';
}
)