-
Notifications
You must be signed in to change notification settings - Fork 1
/
lists_test.go
221 lines (141 loc) · 3.44 KB
/
lists_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
package lists
import "testing"
var (
QuoteStr = "to be or not to be"
QuoteSlc = []string{"to", "be", "or", "not", "to", "be"}
)
func TestParseArray(t *testing.T) {
hamlet := ParseArray(QuoteSlc, " ")
if len(hamlet.Values) != len(QuoteSlc) {
t.Errorf("Array haven't been parsed correctly.")
}
if hamlet.Separator != " " {
t.Errorf("Separator haven't been assigned correctly.")
}
if hamlet.Index != -1 {
t.Errorf("Index haven't been initialized correctly.")
}
}
func TestParseString(t *testing.T) {
hamlet := ParseString(QuoteStr, " ")
if len(hamlet.Values) != 6 {
t.Errorf("Array haven't been parsed correctly.")
}
if hamlet.Separator != " " {
t.Errorf("Separator haven't been assigned correctly.")
}
if hamlet.Index != -1 {
t.Errorf("Index haven't been initialized correctly.")
}
}
func TestToString(t *testing.T) {
hamlet := ParseArray(QuoteSlc, " ")
if hamlet.ToString() != QuoteStr {
t.Errorf("Strings are not matching.")
}
}
func TestToArray(t *testing.T) {
hamlet := ParseString(QuoteStr, " ")
if len(hamlet.Values) != len(QuoteSlc) {
t.Errorf("Slices are not matching.")
}
for i := range hamlet.Values {
if hamlet.Values[i] != QuoteSlc[i] {
t.Errorf("Slices are not matching.")
}
}
}
func TestLen(t *testing.T) {
hamlet := ParseArray(QuoteSlc, " ")
if hamlet.Len() != len(QuoteSlc) {
t.Errorf("Len failed.")
}
}
func TestFirst(t *testing.T) {
hamlet := ParseArray(QuoteSlc, " ")
if hamlet.First() != QuoteSlc[0] {
t.Errorf("First failed.")
}
}
func TestLast(t *testing.T) {
hamlet := ParseArray(QuoteSlc, " ")
if hamlet.Last() != QuoteSlc[len(QuoteSlc)-1] {
t.Errorf("Last failed.")
}
}
func TestFind(t *testing.T) {
hamlet := ParseArray(QuoteSlc, " ")
if hamlet.Find("question") != -1 || hamlet.Find("be") != 1 {
t.Errorf("Find failed.")
}
}
func TestExist(t *testing.T) {
hamlet := ParseArray(QuoteSlc, " ")
if hamlet.Exist("question") || !hamlet.Exist("be") {
t.Errorf("Exist failed.")
}
}
func TestHasNext(t *testing.T) {
hamlet := ParseArray(QuoteSlc, " ")
for hamlet.HasNext() {
hamlet.Next()
}
if hamlet.Index != len(QuoteSlc)-1 {
t.Errorf("HasNext failed.")
}
}
func TestMoveTo(t *testing.T) {
hamlet := ParseArray(QuoteSlc, " ")
hamlet.MoveTo(2)
if hamlet.Get() != "or" {
t.Errorf("MoveTo failed.")
}
}
func TestRewind(t *testing.T) {
hamlet := ParseArray(QuoteSlc, " ")
hamlet.MoveTo(2)
hamlet.Rewind()
if hamlet.Index != -1 {
t.Errorf("Rewind failed.")
}
}
func TestIsEmpty(t *testing.T) {
hamlet := ParseArray(QuoteSlc, " ")
macbeth := List{}
if hamlet.IsEmpty() || !macbeth.IsEmpty() {
t.Errorf("IsEmpty failed.")
}
}
func TestIsOutOfBound(t *testing.T) {
hamlet := ParseArray(QuoteSlc, " ")
if hamlet.IsOutOfBound(1) || !hamlet.IsOutOfBound(10) {
t.Errorf("IsOutOfBound failed.")
}
}
func TestGet(t *testing.T) {
hamlet := ParseArray(QuoteSlc, " ")
hamlet.MoveTo(2)
if hamlet.Get() != "or" {
t.Errorf("Get failed.")
}
}
func TestGetAt(t *testing.T) {
hamlet := ParseArray(QuoteSlc, " ")
if value, _ := hamlet.GetAt(2); value != "or" {
t.Errorf("GetAt failed.")
}
}
func TestDedup(t *testing.T) {
hamlet := ParseArray(QuoteSlc, " ")
hamlet.Dedup()
if hamlet.ToString() != "to be or not" {
t.Errorf("Dedup failed.")
}
}
func TestQuote(t *testing.T) {
hamlet := ParseArray(QuoteSlc, " ")
hamlet.Quote('\'')
if hamlet.ToString() != "'to' 'be' 'or' 'not' 'to' 'be'" {
t.Errorf("Quote has failed.")
}
}