2021-09-18 17:26:11 +00:00
|
|
|
package async_test
|
2019-11-03 21:25:52 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"sync"
|
|
|
|
"testing"
|
|
|
|
|
2024-02-15 05:46:47 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/v5/async"
|
|
|
|
"github.com/prysmaticlabs/prysm/v5/testing/assert"
|
|
|
|
"github.com/prysmaticlabs/prysm/v5/testing/require"
|
2019-11-03 21:25:52 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestDouble(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
inValues int
|
|
|
|
err error
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "0",
|
|
|
|
inValues: 0,
|
|
|
|
err: errors.New("input length must be greater than 0"),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "1",
|
|
|
|
inValues: 1,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "1023",
|
|
|
|
inValues: 1023,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "1024",
|
|
|
|
inValues: 1024,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "1025",
|
|
|
|
inValues: 1025,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, test := range tests {
|
|
|
|
t.Run(test.name, func(t *testing.T) {
|
|
|
|
inValues := make([]int, test.inValues)
|
|
|
|
for i := 0; i < test.inValues; i++ {
|
|
|
|
inValues[i] = i
|
|
|
|
}
|
|
|
|
outValues := make([]int, test.inValues)
|
2021-09-18 17:26:11 +00:00
|
|
|
workerResults, err := async.Scatter(len(inValues), func(offset int, entries int, _ *sync.RWMutex) (interface{}, error) {
|
2019-11-03 21:25:52 +00:00
|
|
|
extent := make([]int, entries)
|
|
|
|
for i := 0; i < entries; i++ {
|
|
|
|
extent[i] = inValues[offset+i] * 2
|
|
|
|
}
|
|
|
|
return extent, nil
|
|
|
|
})
|
|
|
|
if test.err != nil {
|
2020-08-25 15:23:06 +00:00
|
|
|
assert.ErrorContains(t, test.err.Error(), err)
|
2019-11-03 21:25:52 +00:00
|
|
|
} else {
|
2020-08-25 10:18:29 +00:00
|
|
|
require.NoError(t, err)
|
2019-11-03 21:25:52 +00:00
|
|
|
for _, result := range workerResults {
|
|
|
|
copy(outValues[result.Offset:], result.Extent.([]int))
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i < test.inValues; i++ {
|
2020-08-25 15:23:06 +00:00
|
|
|
require.Equal(t, inValues[i]*2, outValues[i], "Outvalue at %d mismatch", i)
|
2019-11-03 21:25:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMutex(t *testing.T) {
|
|
|
|
totalRuns := 1048576
|
|
|
|
val := 0
|
2021-09-18 17:26:11 +00:00
|
|
|
_, err := async.Scatter(totalRuns, func(offset int, entries int, mu *sync.RWMutex) (interface{}, error) {
|
2019-11-03 21:25:52 +00:00
|
|
|
for i := 0; i < entries; i++ {
|
|
|
|
mu.Lock()
|
|
|
|
val++
|
|
|
|
mu.Unlock()
|
|
|
|
}
|
|
|
|
return nil, nil
|
|
|
|
})
|
2020-08-25 10:18:29 +00:00
|
|
|
require.NoError(t, err)
|
2019-11-03 21:25:52 +00:00
|
|
|
|
|
|
|
if val != totalRuns {
|
|
|
|
t.Fatalf("Unexpected value: expected \"%v\", found \"%v\"", totalRuns, val)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestError(t *testing.T) {
|
|
|
|
totalRuns := 1024
|
|
|
|
val := 0
|
2021-09-18 17:26:11 +00:00
|
|
|
_, err := async.Scatter(totalRuns, func(offset int, entries int, mu *sync.RWMutex) (interface{}, error) {
|
2019-11-03 21:25:52 +00:00
|
|
|
for i := 0; i < entries; i++ {
|
|
|
|
mu.Lock()
|
|
|
|
val++
|
|
|
|
if val == 1011 {
|
|
|
|
mu.Unlock()
|
2020-01-08 02:36:55 +00:00
|
|
|
return nil, errors.New("bad number")
|
2019-11-03 21:25:52 +00:00
|
|
|
}
|
|
|
|
mu.Unlock()
|
|
|
|
}
|
|
|
|
return nil, nil
|
|
|
|
})
|
|
|
|
if err == nil {
|
|
|
|
t.Fatalf("Missing expected error")
|
|
|
|
}
|
|
|
|
}
|