-
Notifications
You must be signed in to change notification settings - Fork 20
/
process_test.go
116 lines (97 loc) · 3.33 KB
/
process_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
package fuzzy
import (
"testing"
)
var baseballStrings = []string{
"new york mets vs chicago cubs",
"chicago cubs vs chicago white sox",
"philladelphia phillies vs atlanta braves",
"braves vs mets",
}
var moreBaseballStrings = []string{
"new york mets vs chicago cubs",
"chicago cubs at new york mets",
"atlanta braves vs pittsbugh pirates",
"new york yankees vs boston red sox",
}
var someEmptyStrings = []string{
"",
"new york mets vs chicago cubs",
"new york yankees vs boston red sox",
"",
"",
}
var someNullStrings = []string{}
func TestExtractOne(t *testing.T) {
query1 := "new york mets at atlanta braves"
best1, _ := ExtractOne(query1, baseballStrings)
assertMatch(t, query1, baseballStrings[3], best1.Match)
query2 := "philadelphia phillies at atlanta braves"
best2, _ := ExtractOne(query2, baseballStrings)
assertMatch(t, query2, baseballStrings[2], best2.Match)
query3 := "atlanta braves at philadelphia phillies"
best3, _ := ExtractOne(query3, baseballStrings)
assertMatch(t, query3, baseballStrings[2], best3.Match)
query4 := "chicago cubs vs new york mets"
best4, _ := ExtractOne(query4, baseballStrings)
assertMatch(t, query4, baseballStrings[0], best4.Match)
query5 := "new york mets at chicago cubs"
best5, _ := ExtractOne(query5, baseballStrings)
assertMatch(t, query5, baseballStrings[0], best5.Match)
customScorer := func(s1, s2 string) int {
return QRatio(s1, s2)
}
best6, _ := ExtractOne(query5, baseballStrings, customScorer)
assertMatch(t, query5, baseballStrings[0], best6.Match)
query7 := "los angeles dodgers vs san francisco giants"
scoreCutoff := 50
best7, _ := ExtractOne(query7, moreBaseballStrings, scoreCutoff)
if best7 != nil {
t.Error("expecting to find no matches")
}
query8 := "new york mets vs chicago cubs"
scoreCutoff = 100
best8, _ := ExtractOne(query8, moreBaseballStrings, scoreCutoff)
if best8 == nil {
t.Error("expecting to find a match")
}
query9 := "new york mets at chicago cubs"
best9, _ := ExtractOne(query9, someEmptyStrings)
assertMatch(t, query9, someEmptyStrings[1], best9.Match)
query10 := "a, b"
choices := []string{query10}
expectedResult := new(MatchPair)
expectedResult.Match = query10
expectedResult.Score = 100
customScorer = func(s1, s2 string) int {
return Ratio(s1, s2)
}
partialScorer := func(s1, s2 string) int {
return PartialRatio(s1, s2)
}
res, _ := ExtractOne(query10, choices, customScorer)
partialRes, _ := ExtractOne(query10, choices, partialScorer)
if *res != *expectedResult {
t.Error("simple match failed")
}
if *partialRes != *expectedResult {
t.Error("simple partial match failed")
}
}
func TestDedupe(t *testing.T) {
sliceWithDupes := []string{"Frodo Baggins", "Tom Sawyer", "Bilbo Baggin", "Samuel L. Jackson", "F. Baggins", "Frody Baggins", "Bilbo Baggins"}
res, _ := Dedupe(sliceWithDupes)
if len(res) >= len(sliceWithDupes) {
t.Error("expecting Dedupe to remove at least one string from slice")
}
sliceWithoutDupes := []string{"Tom", "Dick", "Harry"}
res2, _ := Dedupe(sliceWithoutDupes)
if len(res2) != len(sliceWithoutDupes) {
t.Error("not expecting Dedupe to remove any strings from slice")
}
}
func assertMatch(t *testing.T, query, expectedMatch, actualMatch string) {
if expectedMatch != actualMatch {
t.Errorf("expecting [%v] to find match of [%v], actual match was [%v]", query, expectedMatch, actualMatch)
}
}