-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslices_scalars_test.go
298 lines (251 loc) · 7.4 KB
/
slices_scalars_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
package generics_test
import (
"context"
"errors"
"testing"
"github.com/stretchr/testify/require"
"github.com/zeroflucs-given/generics"
)
// TestAll checks a simple case where we return a true value
func TestAll(t *testing.T) {
// Arrange
filter := func(index int, i int) bool {
return i == index+1
}
input := []int{1, 2, 3, 4}
// Act
result := generics.All(input, filter)
// Assert
require.True(t, result, "Should have the correct result")
}
// TestAllFail checks a simple negative case where one value is wrong.
// This also validates we are operating in a lazy fashion.
func TestAllFail(t *testing.T) {
// Arrange
calls := 0
filter := func(index int, i int) bool {
calls++
return i == index+1
}
input := []int{1, 2, 4, 3}
// Act
result := generics.All(input, filter)
// Assert
require.False(t, result, "Should have the correct result")
require.Equal(t, 3, calls, "Should be lazy")
}
// TestAllContext checks a positive outcome with a context
func TestAllContext(t *testing.T) {
// Arrange
testCtx := context.TODO()
filter := func(ctx context.Context, index int, i int) (bool, error) {
require.Equal(t, testCtx, ctx, "Should have right context")
return i == index+1, nil
}
input := []int{1, 2, 3, 4}
// Act
result, err := generics.AllWithContext(testCtx, input, filter)
// Assert
require.NoError(t, err, "Should not error")
require.True(t, result, "Should have the correct result")
}
// TestAllContextFail checks a negative case with a context
func TestAllContextFail(t *testing.T) {
// Arrange
testCtx := context.TODO()
calls := 0
filter := func(ctx context.Context, index int, i int) (bool, error) {
require.Equal(t, testCtx, ctx, "Should have right context")
calls++
return i == index+1, nil
}
input := []int{1, 2, 4, 3}
// Act
result, err := generics.AllWithContext(testCtx, input, filter)
// Assert
require.NoError(t, err, "Should not error")
require.False(t, result, "Should have the correct result")
require.Equal(t, 3, calls, "Should be lazy")
}
// TestAllContextError checks that All propegates context errors from filters
func TestAllContextError(t *testing.T) {
// Arrange
calls := 0
testCtx := context.TODO()
filter := func(ctx context.Context, index int, i int) (bool, error) {
require.Equal(t, testCtx, ctx, "Should have right context")
calls++
if index == 2 {
return false, errors.New("failure")
}
return i == index+1, nil
}
input := []int{1, 2, 3, 4}
// Act
result, err := generics.AllWithContext(testCtx, input, filter)
// Assert
require.Error(t, err, "Should error")
require.False(t, result, "Should have the correct result")
require.Equal(t, 3, calls, "Should be lazy")
}
// TestAny checks a positive case for "any"
func TestAny(t *testing.T) {
// Arrange
calls := 0
filter := func(index int, i int) bool {
calls++
return i == 2
}
input := []int{1, 2, 3, 4}
// Act
result := generics.Any(input, filter)
// Assert
require.True(t, result, "Should have the correct result")
require.Equal(t, 2, calls, "Should be lazy")
}
// TestAnyFail checks a negative case for "any"
func TestAnyFail(t *testing.T) {
// Arrange
calls := 0
filter := func(index int, i int) bool {
calls++
return i == 9
}
input := []int{1, 2, 4, 3}
// Act
result := generics.Any(input, filter)
// Assert
require.False(t, result, "Should have the correct result")
require.Equal(t, len(input), calls, "Should check all items")
}
// TestAnyContext checks a positive case matching any, verifying we are lazy
func TestAnyContext(t *testing.T) {
// Arrange
calls := 0
testCtx := context.TODO()
filter := func(ctx context.Context, index int, i int) (bool, error) {
require.Equal(t, testCtx, ctx, "Should have right context")
calls++
return i == 3, nil
}
input := []int{1, 2, 3, 4}
// Act
result, err := generics.AnyWithContext(testCtx, input, filter)
// Assert
require.NoError(t, err, "Should not error")
require.True(t, result, "Should have the correct result")
require.Equal(t, 3, calls, "Should be lazy")
}
// TestAnyContextFail checks a negative case for any, verifying we are greedy
func TestAnyContextFail(t *testing.T) {
// Arrange
testCtx := context.TODO()
calls := 0
filter := func(ctx context.Context, index int, i int) (bool, error) {
require.Equal(t, testCtx, ctx, "Should have right context")
calls++
return i == 9, nil
}
input := []int{1, 2, 4, 3}
// Act
result, err := generics.AnyWithContext(testCtx, input, filter)
// Assert
require.NoError(t, err, "Should not error")
require.False(t, result, "Should have the correct result")
require.Equal(t, len(input), calls, "Should check all items")
}
// TestAnyContextError checks Any propegates context errors
func TestAnyContextError(t *testing.T) {
// Arrange
calls := 0
testCtx := context.TODO()
filter := func(ctx context.Context, index int, i int) (bool, error) {
require.Equal(t, testCtx, ctx, "Should have right context")
calls++
if index == 2 {
return false, errors.New("failure")
}
return i == 9, nil // We won't get here
}
input := []int{1, 2, 3, 4}
// Act
result, err := generics.AnyWithContext(testCtx, input, filter)
// Assert
require.Error(t, err, "Should error")
require.False(t, result, "Should have the correct result")
require.Equal(t, 3, calls, "Should be lazy")
}
// TestCount checks a positive case for "any"
func TestCount(t *testing.T) {
// Arrange
calls := 0
filter := func(index int, i int) bool {
calls++
return i%2 == 0
}
input := []int{1, 2, 3, 4}
// Act
result := generics.Count(input, filter)
// Assert
require.Equal(t, 2, result, "Should have correct result")
require.Equal(t, len(input), calls, "Should be eager")
}
// TestCountNoFilter checks we handle an optimized case where we dont have any filters
func TestCountNoFilter(t *testing.T) {
// Arrange
input := []int{1, 2, 3, 4}
// Act
result := generics.Count(input)
// Assert
require.Equal(t, 4, result, "Should have correct result")
}
// TestCountContext perfoms counting with a filter
func TestCountContext(t *testing.T) {
// Arrange
calls := 0
testCtx := context.TODO()
filter := func(ctx context.Context, index int, i int) (bool, error) {
require.Equal(t, testCtx, ctx, "Should have right context")
calls++
return i%2 == 0, nil
}
input := []int{1, 2, 3, 4}
// Act
result, err := generics.CountWithContext(testCtx, input, filter)
// Assert
require.NoError(t, err, "Should not error")
require.Equal(t, 2, result, "Should have correct result")
require.Equal(t, len(input), calls, "Should be eager")
}
// TestCountContextNoFilters checks we count with no filters
func TestCountContextNoFilters(t *testing.T) {
// Arrange
testCtx := context.TODO()
input := []int{1, 2, 3, 4}
// Act
result, err := generics.CountWithContext(testCtx, input)
// Assert
require.NoError(t, err, "Should not error")
require.Equal(t, 4, result, "Should have correct result")
}
// TestCountContextError checks we handle context failures
func TestCountContextError(t *testing.T) {
// Arrange
calls := 0
testCtx := context.TODO()
filter := func(ctx context.Context, index int, i int) (bool, error) {
require.Equal(t, testCtx, ctx, "Should have right context")
calls++
if index == 2 {
return false, errors.New("failure")
}
return i%2 == 0, nil
}
input := []int{1, 2, 3, 4}
// Act
result, err := generics.CountWithContext(testCtx, input, filter)
// Assert
require.Error(t, err, "Should error")
require.Zero(t, result, "Should return default value")
require.Equal(t, 3, calls, "Should be lazy")
}