-
Notifications
You must be signed in to change notification settings - Fork 1
/
distance_test.go
92 lines (86 loc) · 2.07 KB
/
distance_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
package gnlp_test
import (
"fmt"
"testing"
"github.com/shota3506/gnlp"
)
func TestHammingDistance(t *testing.T) {
for i, tc := range []struct {
a []rune
b []rune
expected int64
}{
{[]rune("abcde"), []rune("abcde"), 0},
{[]rune("abcde"), []rune("abxxe"), 2},
} {
t.Run(fmt.Sprintf("test case %d", i), func(t *testing.T) {
d, err := gnlp.HammingDistance(tc.a, tc.b)
if err != nil {
t.Errorf("unexpected error: %v", err)
}
if tc.expected != d {
t.Errorf("epected: %d, actual: %d", tc.expected, d)
}
})
}
}
func TestHammingDistanceError(t *testing.T) {
for i, tc := range []struct {
a []rune
b []rune
}{
{[]rune("a"), []rune("")},
{[]rune("abc"), []rune("ab")},
} {
t.Run(fmt.Sprintf("test case %d", i), func(t *testing.T) {
_, err := gnlp.HammingDistance(tc.a, tc.b)
if err == nil {
t.Error("error epected")
}
})
}
}
func TestLevenshteinDistance(t *testing.T) {
for i, tc := range []struct {
a []rune
b []rune
expected int64
}{
{[]rune(""), []rune(""), 0},
{[]rune("abcde"), []rune("abcde"), 0},
{[]rune("a"), []rune(""), 1},
{[]rune("abcde"), []rune("ce"), 3},
{[]rune("ce"), []rune("abcde"), 3},
{[]rune("abcde"), []rune("ed"), 4},
{[]rune("abcde"), []rune("acbde"), 2},
} {
t.Run(fmt.Sprintf("test case %d", i), func(t *testing.T) {
d := gnlp.LevenshteinDistance(tc.a, tc.b)
if tc.expected != d {
t.Errorf("epected: %d, actual: %d", tc.expected, d)
}
})
}
}
func TestDamerauLevenshteinDistance(t *testing.T) {
for i, tc := range []struct {
a []rune
b []rune
expected int64
}{
{[]rune(""), []rune(""), 0},
{[]rune("abcde"), []rune("abcde"), 0},
{[]rune("a"), []rune(""), 1},
{[]rune("abcde"), []rune("ce"), 3},
{[]rune("ce"), []rune("abcde"), 3},
{[]rune("abcde"), []rune("ed"), 4},
{[]rune("abcde"), []rune("acbde"), 1},
} {
t.Run(fmt.Sprintf("test case %d", i), func(t *testing.T) {
d := gnlp.DamerauLevenshteinDistance(tc.a, tc.b)
if tc.expected != d {
t.Errorf("epected: %d, actual: %d", tc.expected, d)
}
})
}
}