forked from aaaton/golem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_test.go
126 lines (115 loc) · 2.17 KB
/
main_test.go
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
package golem
import (
"bytes"
"compress/gzip"
"strings"
"testing"
"github.com/aaaton/golem/dicts"
)
func TestReadBinary(t *testing.T) {
b, err := dicts.Asset("data/en.gz")
if err != nil {
t.Fatal(err)
}
_, err = gzip.NewReader(bytes.NewBuffer(b))
if err != nil {
t.Fatal(err)
}
}
func TestUsage(t *testing.T) {
l, err := New("english")
if err != nil {
t.Fatal(err)
}
word := l.Lemma("agreed")
fmt.Println(word)
result := "agree"
if word != result {
t.Errorf("Wanted %s, got %s.", result, word)
}
}
func TestFrenchUsage(t *testing.T) {
l, err := New("fr")
if err != nil {
fmt.Println(err)
}
word := l.Lemma("avait")
fmt.Println(word)
result := "avoir"
if word != result {
t.Errorf("Wanted %s, got %s.", result, word)
}
}
func TestSpanishUsage(t *testing.T) {
l, err := New("es")
if err != nil {
fmt.Println(err)
}
_ = l
word := l.Lemma("Buenas")
fmt.Println(word)
result := "bueno"
if word != result {
t.Errorf("Wanted %s, got %s.", result, word)
}
}
func TestGermanUsage(t *testing.T) {
l, err := New("de")
if err != nil {
fmt.Println(err)
}
_ = l
word := l.Lemma("Hast")
fmt.Println(word)
result := "haben"
if word != result {
t.Errorf("Wanted %s, got %s.", result, word)
}
}
func TestLemmatizer_Lemma(t *testing.T) {
l, err := New("swedish")
if err != nil {
t.Fatal(err)
}
tests := []struct {
in string
out string
}{
{"Avtalet", "avtal"},
{"avtalets", "avtal"},
{"avtalens", "avtal"},
{"Avtaletsadlkj", "Avtaletsadlkj"},
}
for _, tt := range tests {
t.Run(tt.in, func(t *testing.T) {
got := l.Lemma(tt.in)
if got != tt.out {
t.Errorf("Lemmatizer.Lemma() = %v, want %v", got, tt.out)
}
got = l.LemmaLower(strings.ToLower(tt.in))
if got != strings.ToLower(tt.out) {
t.Errorf("Lemmatizer.LemmaLower() = %v, want %v", got, tt.out)
}
})
}
}
func BenchmarkLookup(b *testing.B) {
l, err := New("swedish")
if err != nil {
b.Error(err)
}
b.ResetTimer()
for i := 0; i < b.N/2; i++ {
l.Lemma("Avtalet")
}
}
func BenchmarkLookupLower(b *testing.B) {
l, err := New("swedish")
if err != nil {
b.Error(err)
}
b.ResetTimer()
for i := 0; i < b.N/2; i++ {
l.LemmaLower("avtalet")
}
}