depot/third_party/nixpkgs/nixos/tests/languagetool.nix
Default email b450903751 Project import generated by Copybara.
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
2022-09-09 16:08:57 +02:00

19 lines
559 B
Nix

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