-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoordinate_supplier_test.go
301 lines (272 loc) · 8.17 KB
/
coordinate_supplier_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
package coordinate_supplier
import (
"fmt"
"github.com/stretchr/testify/require"
"sync"
"sync/atomic"
"testing"
)
var suppliersToTest = []struct {
name string
new func(options CoordinateSupplierOptions) (CoordinateSupplier, error)
}{
{"atomic", NewCoordinateSupplierAtomic},
{"rw", NewCoordinateSupplierRWMutex},
}
func Test_Coordinate_Supplier_Asc_10x1(t *testing.T) {
testOpts := CoordinateSupplierOptions{10, 1, Asc, false}
// test the ones behind CoordinateSupplier interface
for _, supplier := range suppliersToTest {
t.Run(supplier.name, func(t *testing.T) {
cs, err := supplier.new(testOpts)
require.NoError(t, err)
seen := 0
last := -1
for x, y, done := cs.Next(); !done; x, y, done = cs.Next() {
require.Equal(t, 0, y)
require.Greater(t, x, last)
last = x
seen++
}
require.Equal(t, 10, seen)
})
}
}
func Test_Coordinate_Supplier_Asc_1x10(t *testing.T) {
testOpts := CoordinateSupplierOptions{1, 10, Asc, false}
// test the ones behind CoordinateSupplier interface
for _, supplier := range suppliersToTest {
t.Run(supplier.name, func(t *testing.T) {
cs, err := supplier.new(testOpts)
require.NoError(t, err)
seen := 0
last := -1
for x, y, done := cs.Next(); !done; x, y, done = cs.Next() {
require.Equal(t, 0, x)
require.Greater(t, y, last)
last = y
seen++
}
require.Equal(t, 10, seen)
})
}
}
func Test_Coordinate_Supplier_Asc_2x2(t *testing.T) {
testOpts := CoordinateSupplierOptions{2, 2, Asc, false}
// test the ones behind CoordinateSupplier interface
for _, supplier := range suppliersToTest {
t.Run(supplier.name, func(t *testing.T) {
cs, err := supplier.new(testOpts)
require.NoError(t, err)
x1, y1, done1 := cs.Next()
x2, y2, done2 := cs.Next()
x3, y3, done3 := cs.Next()
x4, y4, done4 := cs.Next()
_, _, done5 := cs.Next()
require.Equal(t, 0, x1)
require.Equal(t, 1, x2)
require.Equal(t, 0, x3)
require.Equal(t, 1, x4)
require.Equal(t, 0, y1)
require.Equal(t, 0, y2)
require.Equal(t, 1, y3)
require.Equal(t, 1, y4)
require.False(t, done1)
require.False(t, done2)
require.False(t, done3)
require.False(t, done4)
require.True(t, done5)
})
}
}
func Test_Coordinate_Supplier_Desc_2x2(t *testing.T) {
testOpts := CoordinateSupplierOptions{2, 2, Desc, false}
// test the ones behind CoordinateSupplier interface
for _, supplier := range suppliersToTest {
t.Run(supplier.name, func(t *testing.T) {
cs, err := supplier.new(testOpts)
require.NoError(t, err)
x1, y1, done1 := cs.Next()
x2, y2, done2 := cs.Next()
x3, y3, done3 := cs.Next()
x4, y4, done4 := cs.Next()
_, _, done5 := cs.Next()
require.Equal(t, 1, x1)
require.Equal(t, 0, x2)
require.Equal(t, 1, x3)
require.Equal(t, 0, x4)
require.Equal(t, 1, y1)
require.Equal(t, 1, y2)
require.Equal(t, 0, y3)
require.Equal(t, 0, y4)
require.False(t, done1)
require.False(t, done2)
require.False(t, done3)
require.False(t, done4)
require.True(t, done5)
})
}
}
func Test_Coordinate_Supplier_Asc_3x2_Repeat(t *testing.T) {
testOpts := CoordinateSupplierOptions{3, 2, Asc, true}
xPattern := []int{0, 1, 2, 0, 1, 2}
yPattern := []int{0, 0, 0, 1, 1, 1}
// test the ones behind CoordinateSupplier interface
for _, supplier := range suppliersToTest {
t.Run(supplier.name, func(t *testing.T) {
cs, err := supplier.new(testOpts)
require.NoError(t, err)
for seen := 0; seen < 1000; seen++ {
x, y, done := cs.Next()
require.False(t, done)
require.Equal(t, xPattern[seen%len(xPattern)], x)
require.Equal(t, yPattern[seen%len(yPattern)], y)
}
})
}
}
func Test_Coordinate_Supplier_Desc_3x2_Repeat(t *testing.T) {
testOpts := CoordinateSupplierOptions{3, 2, Desc, true}
xPattern := []int{2, 1, 0, 2, 1, 0}
yPattern := []int{1, 1, 1, 0, 0, 0}
// test the ones behind CoordinateSupplier interface
for _, supplier := range suppliersToTest {
t.Run(supplier.name, func(t *testing.T) {
cs, err := supplier.new(testOpts)
require.NoError(t, err)
for seen := 0; seen < 1000; seen++ {
x, y, done := cs.Next()
require.False(t, done)
require.Equal(t, xPattern[seen%len(xPattern)], x)
require.Equal(t, yPattern[seen%len(yPattern)], y)
}
})
}
}
func Test_Coordinate_Supplier_Desc_2x2_Repeat(t *testing.T) {
testOpts := CoordinateSupplierOptions{2, 2, Desc, true}
xPattern := []int{1, 0, 1, 0}
yPattern := []int{1, 1, 0, 0}
// test the ones behind CoordinateSupplier interface
for _, supplier := range suppliersToTest {
t.Run(supplier.name, func(t *testing.T) {
cs, err := supplier.new(testOpts)
require.NoError(t, err)
for seen := 0; seen < 1000; seen++ {
x, y, done := cs.Next()
require.False(t, done)
require.Equal(t, xPattern[seen%len(xPattern)], x)
require.Equal(t, yPattern[seen%len(yPattern)], y)
}
})
}
}
func Test_Coordinate_Supplier_Asc_1000x1000_Concurrent(t *testing.T) {
testOpts := CoordinateSupplierOptions{1000, 1000, Asc, false}
// test the ones behind CoordinateSupplier interface
for _, supplier := range suppliersToTest {
t.Run(supplier.name, func(t *testing.T) {
cs, err := supplier.new(testOpts)
require.NoError(t, err)
consumed := runCoordinateSupplier(cs, 10, 0)
require.Equal(t, uint64(testOpts.Width*testOpts.Height), consumed)
})
}
}
func Test_ConsumePastEnd(t *testing.T) {
testOpts := CoordinateSupplierOptions{100, 100, Asc, false}
// test the ones behind CoordinateSupplier interface
for _, supplier := range suppliersToTest {
t.Run(supplier.name, func(t *testing.T) {
// consume the coordinates
cs, err := supplier.new(testOpts)
require.NoError(t, err)
for _, _, done := cs.Next(); !done; _, _, done = cs.Next() {
require.False(t, done)
}
// get a bunch past the end... it should still be done
extras := 0
for {
if extras > 1000000 {
break
}
extras++
_, _, done := cs.Next()
require.True(t, done)
}
})
}
}
func Test_Readme_Example(t *testing.T) {
opts := CoordinateSupplierOptions{Width: 10, Height: 10, Order: Asc, Repeat: false}
cs, err := NewCoordinateSupplier(opts)
if err != nil {
require.NoError(t, err)
}
for x, y, done := cs.Next(); !done; x, y, done = cs.Next() {
fmt.Println("The next coordinate is", x, y)
}
}
func BenchmarkCoordinateSuppliers(b *testing.B) {
upToWidth := 1000
upToHeight := 1000
upToConsumers := 1000
upToConsumed := 1000000
for width := 1; width <= upToWidth; width *= 30 {
for height := 1; height <= upToHeight; height *= 30 {
for consume := 1; consume <= upToConsumed; consume *= 1000000 {
for consumers := 1; consumers <= upToConsumers; consumers *= 10 {
// run CoordinateSuppliers
for _, supplier := range suppliersToTest {
b.Run(fmt.Sprintf("%s-%dw-%dh-%dconsumers-consume%d", supplier.name, width, height, consumers, consume), func(b *testing.B) {
for i := 0; i < b.N; i++ {
// special case if consume == 1, then consume all coordinates once
// otherwise, loop through coordinates on repeat until upToConsumed
useConsume := consume
if consume == 1 {
useConsume = 0
}
var repeat bool
if useConsume > 0 {
// instead of consuming once, will loop until upToConsumed
repeat = true
}
cs, err := supplier.new(CoordinateSupplierOptions{width, height, Asc, repeat})
require.NoError(b, err)
count := runCoordinateSupplier(cs, consumers, uint64(useConsume))
if useConsume == 0 {
require.Equal(b, uint64(width*height), count)
} else {
require.Equal(b, uint64(useConsume), count)
}
}
})
}
}
}
}
}
}
func runCoordinateSupplier(cs CoordinateSupplier, numConsumers int, maxConsumed uint64) (consumed uint64) {
// run consumers to get all coordinates
wg := sync.WaitGroup{}
var requested uint64
for i := 0; i < numConsumers; i++ {
wg.Add(1)
go func() {
defer wg.Done()
for _, _, done := cs.Next(); !done; _, _, done = cs.Next() {
// if on repeat, break when reach max consumed limit
if maxConsumed != 0 {
now := atomic.AddUint64(&requested, 1)
if now > maxConsumed {
return
}
}
atomic.AddUint64(&consumed, 1)
}
}()
}
wg.Wait()
return
}