This repository has been archived by the owner on Jan 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
trie_test.go
123 lines (106 loc) · 2.57 KB
/
trie_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
package trie
import "testing"
func TestEmpty(t *testing.T) {
tr := New()
if !tr.Match("") {
t.Error("空のトライ木は空文字でもマッチする")
}
if !tr.Match("zoi") {
t.Error("空のトライ木はzoiでもマッチする")
}
}
func TestZoi(t *testing.T) {
tr := New()
tr.Add("zoi")
tr.Add("java")
tr.Add("ぞい")
tr.Pack()
if !tr.Match("zoi") {
t.Error("ぞいしてよ")
}
if !tr.Match("ぞい") {
t.Error("ぞいしてよ")
}
if tr.Match("z") {
t.Error("まだまっちしちゃだめ")
}
if tr.Match("ganbaruzoi") {
t.Error("最初だけだよ")
}
if tr.Match("nenetch") {
t.Error("ねねっちそこじゃない")
}
if !tr.Contains("ganbaruzoi!") {
t.Error("ぞいしてよ")
}
if !tr.Contains("今日も一日がんばるぞい!") {
t.Error("ぞいしてよ")
}
if !tr.Contains("anatatojava") {
t.Error("ド")
}
if !tr.Contains("anatatojava, imasugu download") {
t.Error("ド")
}
}
func TestContains(t *testing.T) {
tr := New()
tr.Add("うらにわ")
tr.Add("おおにわとり")
tr.Add("こけこっこ")
tr.Add("ok")
tr.Pack()
if tr.Contains("にわにはにわにわとりがいる") == true {
t.Error("わとは")
}
if tr.Contains("にわにはにわおおにわとりがいる") == false {
t.Error("いるよ")
}
if !(tr.Contains("コケコッコー") == false) {
t.Error("カタカナだよ")
}
if !(tr.Contains("POKEMON") == false) {
t.Error("大文字小文字区別して。")
}
}
func TestReadme(t *testing.T) {
tr := New() // Animes.
// kirara
tr.Add("NewGame!")
tr.Add("School Live!")
tr.Add("Urara Meirocho")
tr.Add("Anne Happy")
tr.Add("Kiniro Mosaic")
tr.Add("Hanayamata")
tr.Add("Is the order a rabbit?")
tr.Add("Is the order a rabbit??")
tr.Add("The Demon Girl Next Door")
tr.Add("Hidamari Sketch")
tr.Add("Blend S")
tr.Add("Dōjin Work")
tr.Add("Magic of Stella")
// semi-kirara
tr.Add("Yuki Yuna Is a Hero")
tr.Add("Non Non Biyori")
tr.Pack()
// Match method
if tr.Match("NewGame!") == false {
t.Error("NewGame! is a first season of the series.")
}
if tr.Match("NewGame!!") == false {
t.Error("NewGame!! is a second season of the series.")
}
if tr.Match("NewGame") == true {
t.Error("Not NewGame. NewGame\"!\"")
}
if tr.Match("Dojin Work") == true {
t.Error("Not Dojin Work. \"Dōjin Work\"")
}
// Contains method
if tr.Contains("I would like to eat udon with Fuu Inubozaki, a hero in \"Yuki Yuna Is a Hero\".") == false {
t.Error("What????? Why????")
}
if tr.Contains("Alas, Ikaruga is going...") == true {
t.Error("Ikaruga is a game. Not an animation.")
}
}