-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslices_query_test.go
230 lines (189 loc) · 5.46 KB
/
slices_query_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
package generics_test
import (
"context"
"errors"
"testing"
"github.com/stretchr/testify/require"
"github.com/zeroflucs-given/generics"
)
func TestFirst(t *testing.T) {
// Arrange
input := []int{10, 14, 28}
target := 10
// Act
result := generics.First(input)
// Assert
require.Equal(t, result, target, "Should have the correct value")
}
func TestFirstEmpty(t *testing.T) {
// Arrange
input := []int{}
// Act
result := generics.First(input)
// Assert
require.Equal(t, 0, result, "Should get a default back")
}
func TestFirstWithContext(t *testing.T) {
// Arrange
testCtx := context.Background()
input := []int{10, 14, 28}
filter := func(ctx context.Context, index int, v int) (bool, error) {
require.Equal(t, testCtx, ctx, "Should have right context")
if v >= 12 {
return true, nil
}
return false, nil
}
target := 14
// Act
result, err := generics.FirstWithContext(testCtx, input, filter)
// Assert
require.NoError(t, err, "Should not error")
require.Equal(t, result, target, "Should have the correct value")
}
func TestFirstWithContextNotFound(t *testing.T) {
// Arrange
testCtx := context.Background()
input := []int{10, 14, 28}
filter := func(ctx context.Context, index int, v int) (bool, error) {
require.Equal(t, testCtx, ctx, "Should have right context")
return false, nil
}
target := 0
// Act
result, err := generics.FirstWithContext(testCtx, input, filter)
// Assert
require.NoError(t, err, "Should not error")
require.Equal(t, result, target, "Should have the correct value")
}
func TestFirstWithContextError(t *testing.T) {
// Arrange
testCtx := context.Background()
input := []int{10, 14, 28}
filter := func(ctx context.Context, index int, v int) (bool, error) {
require.Equal(t, testCtx, ctx, "Should have right context")
if v >= 12 {
return false, errors.New("boom")
}
return false, nil
}
// Act
result, err := generics.FirstWithContext(testCtx, input, filter)
// Assert
require.Error(t, err, "Should not error")
require.Equal(t, result, 0, "Should have the default type value")
}
// TestFilter applies a filter to a set
func TestFilter(t *testing.T) {
// Arrange
filter := func(index int, v int) bool {
return v%2 == 0
}
input := []int{1, 2, 3, 4, 5, 6}
// Act
result := generics.Filter(input, filter)
// Assert
require.Len(t, result, 3, "Should have 3 items")
require.Equal(t, []int{2, 4, 6}, result, "Should have the right outputs")
}
// TestFilterContext applies a filter to a set with a context
func TestFilterContext(t *testing.T) {
// Arrange
testCtx := context.TODO()
filter := func(ctx context.Context, index int, v int) (bool, error) {
require.Equal(t, testCtx, ctx, "Should get the same context back")
return v%2 == 0, nil
}
input := []int{1, 2, 3, 4, 5, 6}
// Act
result, err := generics.FilterWithContext(testCtx, input, filter)
// Assert
require.NoError(t, err, "Should not error")
require.Len(t, result, 3, "Should have 3 items")
require.Equal(t, []int{2, 4, 6}, result, "Should have the right outputs")
}
// TestFilterContextError make sure we abort when errors occur
func TestFilterContextError(t *testing.T) {
// Arrange
testCtx := context.TODO()
filter := func(ctx context.Context, index int, v int) (bool, error) {
require.Equal(t, testCtx, ctx, "Should get the same context back")
if v == 5 {
return false, errors.New("boom")
}
return v%2 == 0, nil
}
input := []int{1, 2, 3, 4, 5, 6}
// Act
result, err := generics.FilterWithContext(testCtx, input, filter)
// Assert
require.Error(t, err, "Should error")
require.Nil(t, result, "Should not return a list")
}
func TestLast(t *testing.T) {
// Arrange
input := []int{10, 14, 28}
target := 28
// Act
result := generics.Last(input)
// Assert
require.Equal(t, result, target, "Should have the correct value")
}
func TestLastEmpty(t *testing.T) {
// Arrange
input := []int{}
// Act
result := generics.Last(input)
// Assert
require.Equal(t, 0, result, "Should get the default value of the type")
}
func TestLastWithContext(t *testing.T) {
// Arrange
testCtx := context.Background()
input := []int{10, 30, 14, 10}
filter := func(ctx context.Context, index int, v int) (bool, error) {
require.Equal(t, testCtx, ctx, "Should have right context")
if v >= 12 {
return true, nil
}
return false, nil
}
target := 14
// Act
result, err := generics.LastWithContext(testCtx, input, filter)
// Assert
require.NoError(t, err, "Should not error")
require.Equal(t, result, target, "Should have the correct value")
}
func TestLastWithContextNotFound(t *testing.T) {
// Arrange
testCtx := context.Background()
input := []int{10, 14, 28}
filter := func(ctx context.Context, index int, v int) (bool, error) {
require.Equal(t, testCtx, ctx, "Should have right context")
return false, nil
}
target := 0
// Act
result, err := generics.LastWithContext(testCtx, input, filter)
// Assert
require.NoError(t, err, "Should not error")
require.Equal(t, result, target, "Should have the correct value")
}
func TestLastWithContextError(t *testing.T) {
// Arrange
testCtx := context.Background()
input := []int{10, 14, 28}
filter := func(ctx context.Context, index int, v int) (bool, error) {
require.Equal(t, testCtx, ctx, "Should have right context")
if v >= 12 {
return false, errors.New("boom")
}
return false, nil
}
// Act
result, err := generics.LastWithContext(testCtx, input, filter)
// Assert
require.Error(t, err, "Should not error")
require.Equal(t, result, 0, "Should have the default type value")
}