-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslice_test.go
341 lines (328 loc) · 8.77 KB
/
slice_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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
package kgo
import (
"reflect"
"testing"
)
func TestSlicePagination(t *testing.T) {
type args[T any] struct {
data []T
pageSize int
}
type testCase[T any] struct {
name string
args args[T]
wantPaged [][]T
}
tests := []testCase[int]{
{
name: "int pagination 5",
args: args[int]{
data: []int{1, 2, 3, 4, 5},
pageSize: 2,
},
wantPaged: [][]int{{1, 2}, {3, 4}, {5}},
},
{
name: "int pagination 10",
args: args[int]{
data: []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10},
pageSize: 5,
},
wantPaged: [][]int{{1, 2, 3, 4, 5}, {6, 7, 8, 9, 10}},
},
{
name: "int pagination 29",
args: args[int]{
data: []int{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},
pageSize: 10,
},
wantPaged: [][]int{{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}},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if gotPaged := SlicePagination(tt.args.data, tt.args.pageSize); !reflect.DeepEqual(gotPaged, tt.wantPaged) {
t.Errorf("SlicePagination() = %v, want %v", gotPaged, tt.wantPaged)
}
})
}
}
func TestContainsString(t *testing.T) {
type args[T any] struct {
data []T
element T
}
type testCase[T any] struct {
name string
args args[T]
want bool
}
tests := []testCase[string]{
{name: "stringsContains", args: args[string]{data: []string{"abc", "def", "xyz"}, element: "abc"}, want: true},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := Contains(tt.args.data, tt.args.element); got != tt.want {
t.Errorf("Contains() = %v, want %v", got, tt.want)
}
})
}
}
func TestContainsInteger(t *testing.T) {
type args[T any] struct {
data []T
element T
}
type testCase[T any] struct {
name string
args args[T]
want bool
}
tests := []testCase[int]{
{name: "integerContains", args: args[int]{data: []int{1, 2, 3}, element: 1}, want: true},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := Contains(tt.args.data, tt.args.element); got != tt.want {
t.Errorf("Contains() = %v, want %v", got, tt.want)
}
})
}
}
func TestContainsFloat(t *testing.T) {
type args[T any] struct {
data []T
element T
}
type testCase[T any] struct {
name string
args args[T]
want bool
}
tests := []testCase[float64]{
{name: "floatContains", args: args[float64]{data: []float64{1.1, 2.2, 3.3}, element: 1.1}, want: true},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := Contains(tt.args.data, tt.args.element); got != tt.want {
t.Errorf("Contains() = %v, want %v", got, tt.want)
}
})
}
}
func TestContainsAllStrings(t *testing.T) {
type args[T any] struct {
data []T
elements []T
}
type testCase[T any] struct {
name string
args args[T]
want bool
}
tests := []testCase[string]{
{name: "stringsContainsAll", args: args[string]{data: []string{"abc", "def", "xyz"}, elements: []string{"abc", "def"}}, want: true},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := ContainsAll(tt.args.data, tt.args.elements); got != tt.want {
t.Errorf("ContainsAll() = %v, want %v", got, tt.want)
}
})
}
}
func TestContainsAllIntegers(t *testing.T) {
type args[T any] struct {
data []T
elements []T
}
type testCase[T any] struct {
name string
args args[T]
want bool
}
tests := []testCase[int]{
{name: "integerContainsAll", args: args[int]{data: []int{1, 2, 3}, elements: []int{1, 2}}, want: true},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := ContainsAll(tt.args.data, tt.args.elements); got != tt.want {
t.Errorf("ContainsAll() = %v, want %v", got, tt.want)
}
})
}
}
func TestContainsAllFloats(t *testing.T) {
type args[T any] struct {
data []T
elements []T
}
type testCase[T any] struct {
name string
args args[T]
want bool
}
tests := []testCase[float64]{
{name: "floatContainsAll", args: args[float64]{data: []float64{1.1, 2.2, 3.3}, elements: []float64{1.1, 2.2}}, want: true},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := ContainsAll(tt.args.data, tt.args.elements); got != tt.want {
t.Errorf("ContainsAll() = %v, want %v", got, tt.want)
}
})
}
}
func TestContainsAnyString(t *testing.T) {
type args[T any] struct {
data []T
elements []T
}
type testCase[T any] struct {
name string
args args[T]
want bool
}
tests := []testCase[string]{
{name: "stringsContainsAny", args: args[string]{data: []string{"abc", "def", "xyz"}, elements: []string{"abc", "opq"}}, want: true},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := ContainsAny(tt.args.data, tt.args.elements); got != tt.want {
t.Errorf("ContainsAny() = %v, want %v", got, tt.want)
}
})
}
}
func TestContainsAnyInteger(t *testing.T) {
type args[T any] struct {
data []T
elements []T
}
type testCase[T any] struct {
name string
args args[T]
want bool
}
tests := []testCase[int]{
{name: "integerContainsAny", args: args[int]{data: []int{1, 2, 3, 4}, elements: []int{10, 1, 2, 300}}, want: true},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := ContainsAny(tt.args.data, tt.args.elements); got != tt.want {
t.Errorf("ContainsAny() = %v, want %v", got, tt.want)
}
})
}
}
func TestSlice_Intersection_Union_Diff_Integer(t *testing.T) {
type args[T any] struct {
data1 []T
data2 []T
}
type testCase[T any] struct {
name string
args args[T]
intersectionWant []T
unionWant []T
diffWant []T
}
tests := []testCase[int]{
{
name: "SliceIntersection_Union_Diff_Integer",
args: args[int]{data1: []int{1, 2, 3, 4}, data2: []int{1, 2, 8, 10}},
intersectionWant: []int{1, 2},
unionWant: []int{1, 2, 3, 4, 8, 10},
diffWant: []int{3, 4},
},
}
for _, tt := range tests {
if got := Intersection[int](tt.args.data1, tt.args.data2); !SameElements(got, tt.intersectionWant) {
t.Errorf("Intersection() = %v, want %v", got, tt.intersectionWant)
}
if got := Union[int](tt.args.data1, tt.args.data2); !SameElements(got, tt.unionWant) {
t.Errorf("Union() = %v, want %v", got, tt.unionWant)
}
if got := Diff[int](tt.args.data1, tt.args.data2); !SameElements(got, tt.diffWant) {
t.Errorf("Diff() = %v, want %v", got, tt.diffWant)
}
}
}
func TestSlice_Intersection_Union_Diff_String(t *testing.T) {
type args[T any] struct {
data1 []T
data2 []T
}
type testCase[T any] struct {
name string
args args[T]
intersectionWant []T
unionWant []T
diffWant []T
}
tests := []testCase[string]{
{
name: "SliceIntersection_Union_Diff_String",
args: args[string]{data1: []string{"1", "2", "3", "4"}, data2: []string{"1", "2", "8", "10"}},
intersectionWant: []string{"1", "2"},
unionWant: []string{"1", "2", "3", "4", "8", "10"},
diffWant: []string{"3", "4"},
},
}
for _, tt := range tests {
if got := Intersection[string](tt.args.data1, tt.args.data2); !SameElements(got, tt.intersectionWant) {
t.Errorf("Intersection() = %v, want %v", got, tt.intersectionWant)
}
if got := Union[string](tt.args.data1, tt.args.data2); !SameElements(got, tt.unionWant) {
t.Errorf("Union() = %v, want %v", got, tt.unionWant)
}
if got := Diff[string](tt.args.data1, tt.args.data2); !SameElements(got, tt.diffWant) {
t.Errorf("Diff() = %v, want %v", got, tt.diffWant)
}
}
}
func TestSplitCounter(t *testing.T) {
type args struct {
count int
pageSize int
}
type testCase[T any] struct {
name string
args args
want [][]T
}
tests := []testCase[string]{
{
name: "SplitCounter1",
args: args{count: 13, pageSize: 5},
want: [][]string{{"", "", "", "", ""}, {"", "", "", "", ""}, {"", ""}},
},
{
name: "SplitCounter2",
args: args{count: 3, pageSize: 5},
want: [][]string{{"", "", ""}},
},
{
name: "SplitCounter3",
args: args{count: 10, pageSize: 5},
want: [][]string{{"", "", "", "", ""}, {"", "", "", "", ""}},
},
}
for _, test := range tests {
pageCount := test.args.count/test.args.pageSize + 1
t.Run(test.name, func(t *testing.T) {
items := SplitCounter[string](test.args.pageSize, test.args.count)
if len(items) != pageCount {
t.Errorf("len(items) = %v, want 3", len(items))
}
for i, item := range items {
if i+1 < pageCount && cap(item) != test.args.pageSize {
t.Errorf("cap(item) = %v, want %v", cap(item), test.args.pageSize)
}
if i+1 == pageCount && cap(item) != test.args.count%test.args.pageSize {
t.Errorf("cap(item) = %v, want %v", cap(item), test.args.count%test.args.pageSize)
}
}
})
}
}