about summary refs log tree commit diff
path: root/nixos/tests/localsend.nix
blob: 8c0a6ac681900e0da256e9f49f9d4e18995956d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import ./make-test-python.nix (
  { ... }:
  {
    name = "localsend";

    nodes.machine =
      { ... }:
      {
        imports = [ ./common/x11.nix ];
        programs.localsend.enable = true;
      };

    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'")
    '';
  }
)