Tests for upload/download in parallel (#1662)
This commit is contained in:
parent
b566463540
commit
db2f4615fd
@ -5,10 +5,12 @@ package testplanet_test
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"crypto/rand"
|
"crypto/rand"
|
||||||
|
"strconv"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
|
"golang.org/x/sync/errgroup"
|
||||||
|
|
||||||
"storj.io/storj/internal/memory"
|
"storj.io/storj/internal/memory"
|
||||||
"storj.io/storj/internal/testcontext"
|
"storj.io/storj/internal/testcontext"
|
||||||
@ -117,3 +119,98 @@ func TestDownloadWithSomeNodesOffline(t *testing.T) {
|
|||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
require.Equal(t, testData, newData)
|
require.Equal(t, testData, newData)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestUploadDownloadOneUplinksInParallel(t *testing.T) {
|
||||||
|
ctx := testcontext.New(t)
|
||||||
|
defer ctx.Cleanup()
|
||||||
|
|
||||||
|
planet, err := testplanet.New(t, 1, 6, 1)
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer ctx.Check(planet.Shutdown)
|
||||||
|
|
||||||
|
planet.Start(ctx)
|
||||||
|
|
||||||
|
dataToUpload := make([][]byte, 5)
|
||||||
|
for i := 0; i < len(dataToUpload); i++ {
|
||||||
|
dataToUpload[i] = make([]byte, 100*memory.KiB.Int()+(i*100*memory.KiB.Int()))
|
||||||
|
_, err := rand.Read(dataToUpload[i])
|
||||||
|
require.NoError(t, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
var group errgroup.Group
|
||||||
|
for i, data := range dataToUpload {
|
||||||
|
index := strconv.Itoa(i)
|
||||||
|
uplink := planet.Uplinks[0]
|
||||||
|
satellite := planet.Satellites[0]
|
||||||
|
|
||||||
|
data := data
|
||||||
|
group.Go(func() error {
|
||||||
|
return uplink.Upload(ctx, satellite, "testbucket"+index, "test/path"+index, data)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
err = group.Wait()
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
for i, data := range dataToUpload {
|
||||||
|
index := strconv.Itoa(i)
|
||||||
|
uplink := planet.Uplinks[0]
|
||||||
|
satellite := planet.Satellites[0]
|
||||||
|
|
||||||
|
expectedData := data
|
||||||
|
group.Go(func() error {
|
||||||
|
data, err := uplink.Download(ctx, satellite, "testbucket"+index, "test/path"+index)
|
||||||
|
require.Equal(t, expectedData, data)
|
||||||
|
return err
|
||||||
|
})
|
||||||
|
}
|
||||||
|
err = group.Wait()
|
||||||
|
require.NoError(t, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestUploadDownloadMultipleUplinksInParallel(t *testing.T) {
|
||||||
|
ctx := testcontext.New(t)
|
||||||
|
defer ctx.Cleanup()
|
||||||
|
|
||||||
|
numberOfUplinks := 5
|
||||||
|
planet, err := testplanet.New(t, 1, 6, numberOfUplinks)
|
||||||
|
require.NoError(t, err)
|
||||||
|
defer ctx.Check(planet.Shutdown)
|
||||||
|
|
||||||
|
planet.Start(ctx)
|
||||||
|
|
||||||
|
dataToUpload := make([][]byte, numberOfUplinks)
|
||||||
|
for i := 0; i < len(dataToUpload); i++ {
|
||||||
|
dataToUpload[i] = make([]byte, 100*memory.KiB.Int()+(i*100*memory.KiB.Int()))
|
||||||
|
_, err := rand.Read(dataToUpload[i])
|
||||||
|
require.NoError(t, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
var group errgroup.Group
|
||||||
|
for i, data := range dataToUpload {
|
||||||
|
index := strconv.Itoa(i)
|
||||||
|
uplink := planet.Uplinks[i]
|
||||||
|
satellite := planet.Satellites[0]
|
||||||
|
|
||||||
|
data := data
|
||||||
|
group.Go(func() error {
|
||||||
|
return uplink.Upload(ctx, satellite, "testbucket"+index, "test/path"+index, data)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
err = group.Wait()
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
for i, data := range dataToUpload {
|
||||||
|
index := strconv.Itoa(i)
|
||||||
|
uplink := planet.Uplinks[i]
|
||||||
|
satellite := planet.Satellites[0]
|
||||||
|
|
||||||
|
expectedData := data
|
||||||
|
group.Go(func() error {
|
||||||
|
data, err := uplink.Download(ctx, satellite, "testbucket"+index, "test/path"+index)
|
||||||
|
require.Equal(t, expectedData, data)
|
||||||
|
return err
|
||||||
|
})
|
||||||
|
}
|
||||||
|
err = group.Wait()
|
||||||
|
require.NoError(t, err)
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user