-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsymspell_test.go
216 lines (211 loc) · 4.63 KB
/
symspell_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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
package symspell
import (
"fmt"
"testing"
"github.com/snapp-incubator/go-symspell/pkg/options"
"github.com/snapp-incubator/go-symspell/pkg/verbosity"
)
func TestSymspellLookup(t *testing.T) {
type args struct {
a string
maxEditDistance int
verbosity verbosity.Verbosity
}
tests := []struct {
name string
args args
want string
}{
{
name: "خیابان",
args: args{
a: "حیابان",
maxEditDistance: 3,
verbosity: verbosity.Top,
},
want: "خیابان",
},
{
name: "میدان",
args: args{
a: "میذان",
maxEditDistance: 3,
verbosity: verbosity.Top,
},
want: "میدان",
},
{
name: "ملاصدرا",
args: args{
a: "ملاصدزا",
maxEditDistance: 3,
verbosity: verbosity.Top,
},
want: "ملاصدرا",
},
{
name: "چهاردانگه",
args: args{
a: "چهاردنگه",
maxEditDistance: 3,
verbosity: verbosity.Top,
},
want: "چهاردانگه",
},
}
symSpell := NewSymSpellWithLoadDictionary("internal/tests/vocab_fa.txt", 0, 1,
options.WithCountThreshold(10),
options.WithMaxDictionaryEditDistance(3),
options.WithPrefixLength(5),
)
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
suggests, err :=
symSpell.Lookup(tt.args.a, tt.args.verbosity, tt.args.maxEditDistance)
if err != nil {
t.Errorf("err = %v, want %v", err, nil)
}
if suggests[0].Term != tt.want {
t.Errorf("got = %v, want %v", suggests[0].Term, tt.want)
}
})
}
}
func TestLookupCompound(t *testing.T) {
type args struct {
a string
maxEditDistance int
}
tests := []struct {
name string
args args
want string
}{
{
name: "Test 1",
args: args{
a: "whereis th elove hehad dated forImuch of thepast who ",
maxEditDistance: 2,
},
want: "where is the love he had dated for much of the past who",
},
{
name: "Test 2",
args: args{
a: "Can yu readthis",
maxEditDistance: 2,
},
want: "can you read this",
},
{
name: "Test 3",
args: args{
a: "sekretplan",
maxEditDistance: 1,
},
want: "secret plan",
},
}
symSpell := NewSymSpellWithLoadBigramDictionary("internal/tests/vocab.txt", "internal/tests/vocab_bigram.txt",
0, 1,
options.WithCountThreshold(1),
options.WithMaxDictionaryEditDistance(3),
options.WithPrefixLength(7),
options.WithSplitWordBySpace(),
)
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
suggests :=
symSpell.LookupCompound(tt.args.a, tt.args.maxEditDistance)
if suggests.Term != tt.want {
fmt.Println(suggests.Term)
t.Errorf("want = %v, got %v", tt.want, suggests.Term)
}
})
}
}
func TestSymspellLookupCompoundUnigram(t *testing.T) {
type args struct {
a string
maxEditDistance int
}
tests := []struct {
name string
args args
want string
}{
{
name: "Test 1",
args: args{
a: "میذان ملاصدزا",
maxEditDistance: 3,
},
want: "میدان ملاصدرا",
}, {
name: "Test 3",
args: args{
a: "حیابان کارکر",
maxEditDistance: 3,
},
want: "خیابان کارگر",
}, {
name: "Test 4",
args: args{
a: "حیابانکارکر",
maxEditDistance: 3,
},
want: "خیابان کارگر",
},
{
name: "Test 5",
args: args{
a: "حیابانملاصدزا",
maxEditDistance: 3,
},
want: "خیابان ملاصدرا",
},
{
name: "Test station",
args: args{
a: "ایستگا",
maxEditDistance: 3,
},
want: "ایستگاه",
},
{
name: "Test Laboratory",
args: args{
a: "ازمایشگا",
maxEditDistance: 3,
},
want: "ازمایشگاه",
},
{
name: "Test Min Character",
args: args{
a: "بیمارستان ا",
maxEditDistance: 3,
},
want: "بیمارستان ا",
},
}
symSpell := NewSymSpellWithLoadBigramDictionary("internal/tests/vocab_fa.txt",
"internal/tests/vocab_bigram_fa.txt",
0,
1,
options.WithCountThreshold(0),
options.WithPrefixLength(5),
options.WithMaxDictionaryEditDistance(3),
options.WithSplitItemThreshold(100),
options.WithSplitWordBySpace(),
options.WithMinimumCharacterToChange(2),
)
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
suggest := symSpell.LookupCompound(tt.args.a, tt.args.maxEditDistance)
if suggest.Term != tt.want {
t.Errorf("got = %v, want %v", suggest.Term, tt.want)
}
})
}
}