about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/languagetool.nix
blob: e4ab2a47064e681cebc7d424302a912dfa9fd0ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import ./make-test-python.nix ({ pkgs, lib, ... }:
let port = 8082;
in {
  name = "languagetool";
  meta = with lib.maintainers; { maintainers = [ fbeffa ]; };

  nodes.machine = { ... }:
    {
      services.languagetool.enable = true;
      services.languagetool.port = port;
    };

  testScript = ''
    machine.start()
    machine.wait_for_unit("languagetool.service")
    machine.wait_for_open_port(${toString port})
    machine.wait_until_succeeds('curl -d "language=en-US" -d "text=a simple test" http://localhost:${toString port}/v2/check')
  '';
})