nixpkgs/nixos/tests/localsend.nix

21 lines
520 B
Nix
Raw Permalink Normal View History

{ ... }:
{
name = "localsend";
2024-05-12 17:07:22 -05:00
nodes.machine =
{ ... }:
{
imports = [ ./common/x11.nix ];
programs.localsend.enable = true;
};
2024-05-12 17:07:22 -05:00
testScript = ''
machine.wait_for_x()
machine.succeed("localsend_app >&2 &")
machine.wait_for_open_port(53317)
machine.wait_for_window("LocalSend", 10)
machine.succeed("netstat --listening --program --tcp | grep -P 'tcp.*53317.*localsend'")
machine.succeed("netstat --listening --program --udp | grep -P 'udp.*53317.*localsend'")
'';
}