1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-22 09:20:58 +03:00
nixpkgs/nixos/tests/languagetool.nix

27 lines
617 B
Nix
Raw Normal View History

import ./make-test-python.nix (
{ pkgs, lib, ... }:
let
port = 8082;
in
{
name = "languagetool";
meta = with lib.maintainers; {
maintainers = [ fbeffa ];
2022-08-16 20:33:08 +02:00
};
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')
'';
}
)