summaryrefslogtreecommitdiffstats
path: root/nixos/tests/languagetool.nix
blob: bbd6f3bf97c3dc97b39d3253542f05727fb16e5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ 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')
  '';
}