-
Notifications
You must be signed in to change notification settings - Fork 41
/
test_analyzer_estnltk.py
53 lines (46 loc) · 1.09 KB
/
test_analyzer_estnltk.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
"""Unit tests for EstNLTK analyzer in Annif"""
import pytest
import annif.analyzer
import annif.analyzer.estnltk
pytestmark = pytest.mark.skipif(
not annif.analyzer.estnltk.EstNLTKAnalyzer.is_available(),
reason="EstNLTK is required",
)
def test_estnltk_tokenize_words():
analyzer = annif.analyzer.get_analyzer("estnltk")
words = analyzer.tokenize_words(
"""
Aga kõik juhtus iseenesest. Ka köögis oli kõik endine.
"""
)
assert words == [
"aga",
"kõik",
"juhtuma",
"iseenesest",
"köök",
"olema",
"kõik",
"endine",
]
def test_estnltk_tokenize_words_no_filter():
analyzer = annif.analyzer.get_analyzer("estnltk")
words = analyzer.tokenize_words(
"""
Aga kõik juhtus iseenesest. Ka köögis oli kõik endine.
""",
filter=False,
)
assert words == [
"aga",
"kõik",
"juhtuma",
"iseenesest",
".",
"ka",
"köök",
"olema",
"kõik",
"endine",
".",
]