-
Notifications
You must be signed in to change notification settings - Fork 3
/
ac_automachinne_test.go
79 lines (65 loc) · 1.54 KB
/
ac_automachinne_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
package lad
import (
"testing"
)
func TestAcMachine_Add(t *testing.T) {
machine := New()
machine.Add("我们")
machine.Add("历史")
machine.Add("listen to me")
p := machine.root
p.view()
}
func TestAcMachine_Load(t *testing.T) {
machine := New()
if err := machine.Load("./test.data"); err != nil {
t.Error(err)
}
machine.root.view()
}
func TestAcMachine_Build(t *testing.T) {
machine := New()
if err := machine.Load("./test.data"); err != nil {
t.Error(err)
}
machine.Build()
machine.root.view()
}
func TestAcMachine_Find(t *testing.T) {
machine := New()
if err := machine.Load("./test.data"); err != nil {
t.Error(err)
}
machine.Build()
t.Log(machine.Find("ab 阿宾 cdadfadfadfadf"))
}
func TestAcMachine_Match(t *testing.T) {
machine := New()
if err := machine.Load("./test.data"); err != nil {
t.Error(err)
}
machine.Build()
t.Log(machine.Match("abx 阿宾 cdadfadfadfadf"))
}
func TestAcMachine_Replace(t *testing.T) {
machine := New()
if err := machine.Load("./test.data"); err != nil {
t.Error(err)
}
machine.Build()
t.Log(machine.Replace("ab 阿宾 cdadfadfadfadf", "****"))
}
func BenchmarkAcMachine_Find(b *testing.B) {
machine := New()
if err := machine.Load("./test.data"); err != nil {
b.Error(err)
}
machine.Build()
b.Run("find", func(b *testing.B) {
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
machine.Find("cdadfadfadfadfab 阿宾 cdadfadfadfadf,俣哈萨克斯坦喝茶;罪域国;工;国;甘;adfa;dflklazdlfjaldf a:jfla工;期刊")
}
})
})
}