linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / languagemachines / test.nix
blob48c41ac52f2223de49d251f8929ede9bc2c0f94b
1 { runCommand
2 , languageMachines
3 }:
5 runCommand "frog-test" {} ''
6   ${languageMachines.frog}/bin/frog >$out <<EOF
7   Dit is een test
8   
9   EOF
10   echo "Frog output:"
11   cat $out
13   expected () {
14     echo "Test expectation failed: $@"
15     exit 1
16   }
18   lines="$(wc -l $out | awk '{print $1}')"
19   test 5 = $lines || expected "Five lines of output"
20   grep "is" $out | grep "zijn" >/dev/null || expected "Stemming works"
21   grep "een" $out | grep "onbep" >/dev/null || expected "Tagging works"
23   deps="$(echo $(awk 'BEGIN { FS = "\t*" } ; {print $1 " -> " $9 "; "}' <$out))"
24   test "1 -> 2; 2 -> 0; 3 -> 4; 4 -> 2; -> ;" = "$deps" || expected "Dependency parsing works"