-
Notifications
You must be signed in to change notification settings - Fork 1
/
reduce_test.go
225 lines (203 loc) · 4.23 KB
/
reduce_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
package goulash
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestReduceInt(t *testing.T) {
t.Parallel()
var sumIntFn = func(a int, b int) int {
return a + b
}
testCases := []struct {
name string
input []int
expect int
fn func(a int, b int) int
}{
{
name: "Empty slices",
input: []int{},
expect: 0,
fn: sumIntFn,
},
{
name: "Slices with odd number of elements",
input: []int{1, 2, 3},
expect: 6,
fn: sumIntFn,
},
{
name: "Slices with even number of elements",
input: []int{1, 2, 3, 4},
expect: 10,
fn: sumIntFn,
},
}
for _, testCase := range testCases {
testCase := testCase
t.Run(testCase.name, func(t *testing.T) {
t.Parallel()
assert.Equal(t, testCase.expect, Reduce(testCase.input, testCase.fn, 0))
})
}
}
func TestReduceUint(t *testing.T) {
t.Parallel()
var sumUintFn = func(a uint, b uint) uint {
return a + b
}
testCases := []struct {
name string
input []uint
expect uint
fn func(a uint, b uint) uint
}{
{
name: "Empty slices",
input: []uint{},
expect: 0,
fn: sumUintFn,
},
{
name: "Slices with odd number of elements",
input: []uint{1, 2, 3},
expect: 6,
fn: sumUintFn,
},
{
name: "Slices with even number of elements",
input: []uint{1, 2, 3, 4},
expect: 10,
fn: sumUintFn,
},
}
for _, testCase := range testCases {
testCase := testCase
t.Run(testCase.name, func(t *testing.T) {
t.Parallel()
assert.Equal(t, testCase.expect, Reduce(testCase.input, testCase.fn, 0))
})
}
}
func TestReduceFloat32(t *testing.T) {
t.Parallel()
var sumUintFn = func(a float32, b float32) float32 {
return a + b
}
testCases := []struct {
name string
input []float32
expect float32
fn func(a float32, b float32) float32
}{
{
name: "Empty slices",
input: []float32{},
expect: 0,
fn: sumUintFn,
},
{
name: "Slices with odd number of elements",
input: []float32{1.1, 2.1, 3.1},
expect: 6.2999997,
fn: sumUintFn,
},
{
name: "Slices with even number of elements",
input: []float32{1.1, 2.1, 3.1, 4.1},
expect: 10.4,
fn: sumUintFn,
},
}
for _, testCase := range testCases {
testCase := testCase
t.Run(testCase.name, func(t *testing.T) {
t.Parallel()
assert.Equal(t, testCase.expect, Reduce(testCase.input, testCase.fn, 0))
})
}
}
func TestReduceFloat64(t *testing.T) {
t.Parallel()
var sumUintFn = func(a float64, b float64) float64 {
return a + b
}
testCases := []struct {
name string
input []float64
expect float64
fn func(a float64, b float64) float64
}{
{
name: "Empty slices",
input: []float64{},
expect: 0,
fn: sumUintFn,
},
{
name: "Slices with odd number of elements",
input: []float64{1.1, 2.1, 3.1},
expect: 6.300000000000001,
fn: sumUintFn,
},
{
name: "Slices with even number of elements",
input: []float64{1.1, 2.1, 3.1, 4.1},
expect: 10.4,
fn: sumUintFn,
},
}
for _, testCase := range testCases {
testCase := testCase
t.Run(testCase.name, func(t *testing.T) {
t.Parallel()
assert.Equal(t, testCase.expect, Reduce(testCase.input, testCase.fn, 0))
})
}
}
func TestReduceString(t *testing.T) {
t.Parallel()
var addStringFn = func(a string, b string) string {
return a + b
}
testCases := []struct {
name string
input []string
initValue string
expect string
fn func(a string, b string) string
}{
{
name: "Empty slices",
input: []string{},
initValue: "",
expect: "",
fn: addStringFn,
},
{
name: "Slices with odd number of elements",
input: []string{"a", "b", "c"},
initValue: "letters: ",
expect: "letters: abc",
fn: addStringFn,
},
{
name: "Slices with even number of elements",
input: []string{"a", "b", "c", "d"},
initValue: "letters: ",
expect: "letters: abcd",
fn: addStringFn,
},
}
for _, testCase := range testCases {
testCase := testCase
t.Run(testCase.name, func(t *testing.T) {
t.Parallel()
assert.Equal(
t,
testCase.expect,
Reduce(testCase.input, testCase.fn, testCase.initValue),
)
})
}
}