-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrhyph_test.go
442 lines (378 loc) · 14.8 KB
/
grhyph_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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
package grhyph
import (
"testing"
)
type hyphenationTest struct {
input string
hyphenated string
}
func TestPlain(t *testing.T) {
hyphenationOptions := GetDefaultOptions()
hyphenationOptions.Separator = "-"
h := Hyphenation{
Options: hyphenationOptions,
}
tests := []hyphenationTest{
{"άκαμπτος", "ά-κα-μπτος"},
{"άλμπατρος", "άλ-μπα-τρος"},
{"έκθλιψη", "έκ-θλι-ψη"},
{"έκπληκτος", "έκ-πλη-κτος"},
{"έμπνευση", "έ-μπνευ-ση"},
{"ένσφαιρος", "έν-σφαι-ρος"},
{"ίντσα", "ί-ντσα"},
{"αεροελεγκτής", "α-ε-ρο-ε-λε-γκτής"},
{"αισχρολόγος", "αι-σχρο-λό-γος"},
{"αλτρουισμός", "αλ-τρου-ι-σμός"},
{"αμφιβληστροειδής", "αμ-φι-βλη-στρο-ει-δής"},
{"ανεξάντλητος", "α-νε-ξά-ντλη-τος"},
{"ανυπέρβλητος", "α-νυ-πέρ-βλη-τος"},
{"απαρτχάιντ", "α-παρτ-χά-ιντ"},
{"αργκό", "αρ-γκό"},
{"αρθρογραφία", "αρ-θρο-γρα-φί-α"},
{"ασύγγνωστος", "α-σύγ-γνω-στος"},
{"βολφράμιο", "βολ-φρά-μι-ο"},
{"βούρτσα", "βούρ-τσα"},
{"γκολτζής", "γκολ-τζής"},
{"γλεντζές", "γλε-ντζές"},
{"Δεκέμβριος", "Δε-κέμ-βρι-ος"},
{"διόπτρα", "δι-ό-πτρα"},
{"εγγλέζικος", "εγ-γλέ-ζι-κος"},
{"εισπλέω", "ει-σπλέ-ω"},
{"εισπνοή", "ει-σπνο-ή"},
{"εισπράκτορας", "ει-σπρά-κτο-ρας"},
{"εκδρομέας", "εκ-δρο-μέ-ας"},
{"εκδρομή", "εκ-δρο-μή"},
{"εκθρόνιση", "εκ-θρό-νι-ση"},
{"εκκρεμότητα", "εκ-κρε-μό-τη-τα"},
{"εκπνοή", "εκ-πνο-ή"},
{"εκπρόσωπος", "εκ-πρό-σω-πος"},
{"εκπτωτικός", "εκ-πτω-τι-κός"},
{"εκστομίζω", "εκ-στο-μί-ζω"},
{"εκσφενδονισμός", "εκ-σφεν-δο-νι-σμός"},
{"εκτρέφω", "ε-κτρέ-φω"},
{"εκφραστικός", "εκ-φρα-στι-κός"},
{"ελκτικός", "ελ-κτι-κός"},
{"εμβληματικός", "εμ-βλη-μα-τι-κός"},
{"ενθρόνιση", "εν-θρό-νι-ση"},
{"ευστροφία", "ευ-στρο-φί-α"},
{"εχθροπραξία", "ε-χθρο-πρα-ξί-α"},
{"ινκόγκνιτο", "ιν-κό-γκνι-το"},
{"ινστιτούτο", "ιν-στι-τού-το"},
{"ισχνότητα", "ι-σχνό-τη-τα"},
{"καλντερίμι", "καλ-ντε-ρί-μι"},
{"καμτσίκι", "καμ-τσί-κι"},
{"καρτποστάλ", "καρτ-πο-στάλ"},
{"κομπλιμέντο", "κο-μπλι-μέ-ντο"},
{"κύλινδρος", "κύ-λιν-δρος"},
{"μάνατζμεντ", "μά-να-τζμεντ"},
{"μαρσπιέ", "μαρ-σπι-έ"}, // todo: Exception rule (synizesis).
{"μετεγγραφή", "με-τεγ-γρα-φή"},
{"μπέιζμπολ", "μπέ-ιζ-μπολ"},
{"μπασκετμπολίστας", "μπα-σκετ-μπο-λί-στας"},
{"μπαχτσές", "μπα-χτσές"},
{"νομενκλατούρα", "νο-μεν-κλα-τού-ρα"},
{"νταρντάνα", "νταρ-ντά-να"},
{"ντόμπρος", "ντό-μπρος"},
{"πάμφθηνα", "πάμ-φθη-να"},
{"πανσπερμία", "παν-σπερ-μί-α"},
{"παρεκκλήσι", "πα-ρεκ-κλή-σι"},
{"πορθμός", "πορθ-μός"},
{"πορτμαντό", "πορ-τμα-ντό"}, // todo: Exception rules for 'πορτ-μα-ντό' (etymological hyphenation) and related.
{"πορτμπαγκάζ", "πορτ-μπα-γκάζ"},
{"προσβλέπω", "προ-σβλέ-πω"},
{"πρόσκληση", "πρό-σκλη-ση"},
{"πρόσκρουση", "πρό-σκρου-ση"},
{"πρόσκτηση", "πρό-σκτη-ση"},
{"πρόσπτωση", "πρό-σπτω-ση"},
{"ράφτρα", "ρά-φτρα"},
{"ροσμπίφ", "ρο-σμπίφ"},
{"σάλτσα", "σάλ-τσα"},
{"σεντράρισμα", "σε-ντρά-ρι-σμα"},
{"στιλπνός", "στιλ-πνός"},
{"συγκλονιστικός", "συ-γκλο-νι-στι-κός"},
{"σφυρίχτρα", "σφυ-ρί-χτρα"},
{"σύμπτωση", "σύ-μπτω-ση"},
{"σύντμηση", "σύ-ντμη-ση"},
{"τερπνότητα", "τερ-πνό-τη-τα"},
{"τζαμτζής", "τζαμ-τζής"},
{"Τουρκμενιστάν", "Τουρκ-με-νι-στάν"},
{"τουρμπίνα", "τουρ-μπί-να"},
{"τροτσκισμός", "τρο-τσκι-σμός"},
{"τσουγκράνα", "τσου-γκρά-να"},
{"υπαρκτός", "υ-παρ-κτός"},
{"υπερδραστήριος", "υ-περ-δρα-στή-ρι-ος"},
{"υπερκράτος", "υ-περ-κρά-τος"},
{"υπερπλήρης", "υ-περ-πλή-ρης"},
{"υπερπροσπάθεια", "υ-περ-προ-σπά-θει-α"},
{"υπερσκελίζω", "υ-περ-σκε-λί-ζω"},
{"υπερσταθμός", "υ-περ-σταθ-μός"},
{"υπερσύγχρονος", "υ-περ-σύγ-χρο-νος"},
{"υπερτραφής", "υ-περ-τρα-φής"},
{"υπερχρονίζω", "υ-περ-χρο-νί-ζω"},
{"φλαμίνγκο", "φλα-μίν-γκο"},
{"φολκλορισμός", "φολ-κλο-ρι-σμός"},
{"χάντμπολ", "χά-ντμπολ"},
{"χαρτζιλίκι", "χαρ-τζι-λί-κι"},
{"μυστηριώδης", "μυ-στη-ρι-ώ-δης"},
{"mustiriwdis", "mu-sti-ri-w-dis"},
{"musthriwdhs", "musthri-wdhs"},
{"στήριγμα", "στή-ριγ-μα"},
{"stirigma", "sti-rig-ma"},
{"sthrigma", "sthrig-ma"},
{"παρίσθμιος", "πα-ρί-σθμι-ος"},
{"paris8mios", "pa-ri-s8mi-os"},
{"paristhmios", "pa-risthmi-os"},
{"άσθμα", "ά-σθμα"},
{"as8ma", "a-s8ma"},
{"asthma", "asthma"},
{"διάστημα", "δι-ά-στη-μα"},
{"diastima", "di-a-sti-ma"},
{"diasthma", "di-asthma"},
{"διαισθητικός", "δι-αι-σθη-τι-κός"},
{"diaisthitikos", "di-aisthi-ti-kos"},
{"diais8htikos", "di-ais8hti-kos"},
{"επιπρόσθετα", "ε-πι-πρό-σθε-τα"},
{"epiprostheta", "e-pi-prosthe-ta"},
{"ευπρόσδεκτος", "ευ-πρόσ-δε-κτος"},
{"euprosdektos", "eu-pros-de-ktos"},
{"euprosthektos", "eu-prosthe-ktos"},
{"τρισδιάστατος", "τρισ-δι-ά-στα-τος"},
{"trisdiastatos", "tris-di-a-sta-tos"},
{"tristhiastatos", "tristhi-a-sta-tos"},
{"αντηλιακό", "α-ντη-λι-α-κό"},
{"antiliako", "a-nti-li-a-ko"},
{"anthliako", "anthli-a-ko"},
{"συνθλίβω", "συν-θλί-βω"},
{"sun8livw", "sun-8li-vw"},
{"sunthlivw", "sunthli-vw"},
{"αντήχηση", "α-ντή-χη-ση"},
{"anthhisi", "anthhi-si"},
{"anthhhsh", "anthhhsh"},
{"άνθρωπος", "άν-θρω-πος"},
{"an8rwpos", "an-8rw-pos"},
{"anthrwpos", "anthrw-pos"},
{"ενθαρρύνω", "εν-θαρ-ρύ-νω"},
{"en8arrunw", "en-8ar-ru-nw"},
{"entharrunw", "enthar-ru-nw"},
{"πανδαιμόνιο", "παν-δαι-μό-νι-ο"},
{"pandaimonio", "pan-dai-mo-ni-o"},
{"panthaimonio", "panthai-mo-ni-o"},
{"ταυτότητα", "ταυ-τό-τη-τα"},
{"tautotita", "tau-to-ti-ta"},
{"tautothta", "tau-toth-ta"},
{"συντηρητικός", "συ-ντη-ρη-τι-κός"},
{"sintiritikos", "si-nti-ri-ti-kos"},
{"sunthritikos", "sunthri-ti-kos"},
{"Αλκμήνη", "Αλκ-μή-νη"},
{"aλkμiοnη", "aλk-μi-ο-nη"},
{"φαστφουντάδικο", "φαστ-φου-ντά-δι-κο"},
{"grafete Ellhnika", "gra-fe-te Ellhni-ka"},
{`δυο
γραμμές.`, `δυ-ο
γραμ-μές.`},
{"Μια και δυο. Μία και δύο", "Μι-α και δυ-ο. Μί-α και δύ-ο"},
{"χελιδόνια", "χε-λι-δό-νι-α"},
{"αηδόνια", "α-η-δό-νι-α"},
{"English words are hyphenated using Greek/Greeklish grammar. Their detection and exclusion has to happen outside of this package.", "En-glish w-ords a-re hyphe-na-ted u-sing Gre-ek/Gre-e-klish gram-mar. Their de-te-cti-on and ex-clu-si-on has to hap-pen ou-tsi-de of this pa-cka-ge."},
}
for _, test := range tests {
h.Input = test.input
hyphenedText, err := h.Hyphenate()
if err != nil {
panic(err)
}
if hyphenedText != test.hyphenated {
t.Errorf("(%s) Hyphenated value does not match: expected %s, got %s", test.input, test.hyphenated, hyphenedText)
}
}
}
func TestQuickSynizesis(t *testing.T) {
hyphenationOptions := GetDefaultOptions()
hyphenationOptions.Separator = "/"
hyphenationOptions.QuickSynizesis = true
h := Hyphenation{
Options: hyphenationOptions,
}
tests := []hyphenationTest{
{"αλκμιόνη", "αλκ/μιό/νη"},
{"Μια και δυο. Μία και δύο", "Μια και δυο. Μί/α και δύ/ο"},
{"δυο μαύρα χελιδόνια", "δυο μαύ/ρα χε/λι/δό/νια"},
{"αηδόνια", "αη/δό/νια"},
{"αραχνοΰφαντος", "α/ρα/χνο/ΰ/φα/ντος"},
{"αραχνούφαντος", "α/ρα/χνού/φα/ντος"},
}
for _, test := range tests {
h.Input = test.input
hyphenedText, err := h.Hyphenate()
if err != nil {
panic(err)
}
if hyphenedText != test.hyphenated {
t.Errorf("(%s) Hyphenated value does not match: expected %s, got %s", test.input, test.hyphenated, hyphenedText)
}
}
}
// Use rules without caching.
func TestRules(t *testing.T) {
hyphenationOptions := GetDefaultOptions()
hyphenationOptions.Separator = "-"
hyphenationOptions.UseGrhyphRules = true
h := Hyphenation{
Options: hyphenationOptions,
}
tests := []hyphenationTest{
// {"drasthriothta", "dra-sth-ri-othta"},
// {"lupanthhrio", "lu-pa-nth-ri-o"},
{"αλκμιόνη", "αλκ-μι-ό-νη"},
// {"Μια και δυο. Μία και δύο", "Μια και δυο. Μί-α και δύ-ο"}, // todo: Finish letters 'μ', 'δ'.
// {"δυο μαύρα χελιδόνια", "δυο μαύ/ρα χε/λι/δό/νια"}, // todo: Finish letter 'χ'.
{"αηδόνια", "αη-δό-νια"},
{"αουτσαιντερ", "α-ου-τσα-ι-ντερ"},
{"αραχνοΰφαντος", "α-ρα-χνο-ΰ-φα-ντος"},
{"αραχνούφαντος", "α-ρα-χνο-ύ-φα-ντος"},
{"aidiniwtis", "a-i-di-niw-tis"},
{"άνθια", "άν-θια"},
{"anthia", "an-thia"},
}
for _, test := range tests {
h.Input = test.input
hyphenedText, err := h.Hyphenate()
if err != nil {
panic(err)
}
if hyphenedText != test.hyphenated {
t.Errorf("(%s) Hyphenated value does not match: expected %s, got %s", test.input, test.hyphenated, hyphenedText)
}
}
}
func TestQuickSynizesisRules(t *testing.T) {
hyphenationOptions := GetDefaultOptions()
hyphenationOptions.Separator = "-"
hyphenationOptions.QuickSynizesis = true
hyphenationOptions.UseGrhyphRules = true
h := Hyphenation{
Options: hyphenationOptions,
}
tests := []hyphenationTest{
// {"drasthriothta", "dra-sth-ri-othta"},
// {"lupanthhrio", "lu-pa-nth-rio"},
{"αλκμιόνη", "αλκ-μιό-νη"},
{"aidiniwtis", "a-i-di-niw-tis"},
}
for _, test := range tests {
h.Input = test.input
hyphenedText, err := h.Hyphenate()
if err != nil {
panic(err)
}
if hyphenedText != test.hyphenated {
t.Errorf("(%s) Hyphenated value does not match: expected %s, got %s", test.input, test.hyphenated, hyphenedText)
}
}
}
func TestConsonantCombinations(t *testing.T) {
hyphenationOptions := GetDefaultOptions()
hyphenationOptions.Separator = "-"
hyphenationOptions.CombineConsonantsDn = true
hyphenationOptions.CombineConsonantsKv = true
hyphenationOptions.CombineConsonantsPf = true
hyphenationOptions.CombineConsonantsSn = true
hyphenationOptions.CombineConsonantsFk = true
h := Hyphenation{
Input: "adnakvapfasnafka",
Options: hyphenationOptions,
}
hyphenedText, err := h.Hyphenate()
if err != nil {
panic(err)
}
if hyphenedText != "a-dna-kva-pfa-sna-fka" {
t.Error("Incorrect hyphenation when every combination option is set to true.")
}
h.Options.CombineConsonantsDn = false
h.Options.CombineConsonantsKv = false
h.Options.CombineConsonantsPf = false
h.Options.CombineConsonantsSn = false
h.Options.CombineConsonantsFk = false
hyphenedText, _ = h.Hyphenate()
if hyphenedText != "ad-nak-vap-fas-naf-ka" {
t.Error("Incorrect hyphenation when every combination option is set to false.")
}
}
func BenchmarkPlain(b *testing.B) {
hyphenationOptions := GetDefaultOptions()
hyphenationOptions.Separator = "-"
h := Hyphenation{
Options: hyphenationOptions,
}
for i := 0; i < b.N; i++ {
h.Input = "παλιόπαλιοpalio"
hyphenedText, err := h.Hyphenate()
if err != nil {
panic(err)
}
if hyphenedText != "πα-λι-ό-πα-λι-ο-pa-li-o" {
b.Errorf("(%s) Hyphenated value does not match: expected %s, got %s", "παλιόπαλιοpalio",
"πα-λι-ό-πα-λι-ο-pa-li-o", hyphenedText)
}
}
}
func BenchmarkQuickSynizesis(b *testing.B) {
hyphenationOptions := GetDefaultOptions()
hyphenationOptions.Separator = "-"
hyphenationOptions.QuickSynizesis = true
h := Hyphenation{
Options: hyphenationOptions,
}
for i := 0; i < b.N; i++ {
h.Input = "παλιόπαλιοpalio"
hyphenedText, err := h.Hyphenate()
if err != nil {
panic(err)
}
if hyphenedText != "πα-λιό-πα-λιο-pa-lio" {
b.Errorf("(%s) Hyphenated value does not match: expected %s, got %s", "παλιόπαλιοpalio", "πα-λιό-πα-λιο-pa-lio",
hyphenedText)
}
}
}
func BenchmarkRules(b *testing.B) {
hyphenationOptions := GetDefaultOptions()
hyphenationOptions.Separator = "-"
hyphenationOptions.UseGrhyphRules = true
h := Hyphenation{
Options: hyphenationOptions,
}
CachingEnabled = true
for i := 0; i < b.N; i++ {
h.Input = "παλιόπαλιοpalio"
hyphenedText, err := h.Hyphenate()
if err != nil {
panic(err)
}
if hyphenedText != "πα-λιό-πα-λιο-pa-lio" {
b.Errorf("(%s) Hyphenated value does not match: expected %s, got %s", "παλιόπαλιοpalio", "πα-λιό-πα-λιο-pa-lio",
hyphenedText)
}
}
}
func BenchmarkRulesNoCache(b *testing.B) {
hyphenationOptions := GetDefaultOptions()
hyphenationOptions.Separator = "-"
hyphenationOptions.UseGrhyphRules = true
h := Hyphenation{
Options: hyphenationOptions,
}
CachingEnabled = false
for i := 0; i < b.N; i++ {
h.Input = "παλιόπαλιοpalio"
hyphenedText, err := h.Hyphenate()
if err != nil {
panic(err)
}
if hyphenedText != "πα-λιό-πα-λιο-pa-lio" {
b.Errorf("(%s) Hyphenated value does not match: expected %s, got %s", "παλιόπαλιοpalio", "πα-λιό-πα-λιο-pa-lio",
hyphenedText)
}
}
}