6615ecc9b6
Change-Id: Ibb89c42060450e3839481a7e495bbe3ad940610a
208 lines
5.1 KiB
Go
208 lines
5.1 KiB
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package live_test
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"math/rand"
|
|
"testing"
|
|
|
|
"github.com/skyrings/skyring-common/tools/uuid"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
"go.uber.org/zap/zaptest"
|
|
"golang.org/x/sync/errgroup"
|
|
|
|
"storj.io/common/testcontext"
|
|
"storj.io/common/testrand"
|
|
"storj.io/storj/satellite/accounting"
|
|
"storj.io/storj/satellite/accounting/live"
|
|
"storj.io/storj/storage/redis/redisserver"
|
|
)
|
|
|
|
func TestLiveAccountingCache(t *testing.T) {
|
|
tests := []struct {
|
|
backend string
|
|
}{
|
|
{
|
|
backend: "memory",
|
|
},
|
|
{
|
|
backend: "redis",
|
|
},
|
|
}
|
|
ctx := testcontext.New(t)
|
|
defer ctx.Cleanup()
|
|
|
|
address, cleanup, err := redisserver.Start()
|
|
require.NoError(t, err)
|
|
defer cleanup()
|
|
|
|
for _, tt := range tests {
|
|
var config live.Config
|
|
if tt.backend == "redis" {
|
|
config = live.Config{
|
|
StorageBackend: "redis://" + address + "?db=0",
|
|
}
|
|
}
|
|
|
|
cache, err := live.NewCache(zaptest.NewLogger(t).Named("live-accounting"), config)
|
|
require.NoError(t, err)
|
|
|
|
projectIDs, sum, err := populateCache(ctx, cache)
|
|
require.NoError(t, err)
|
|
|
|
// make sure all of the "projects" got all space updates and got right totals
|
|
for _, projID := range projectIDs {
|
|
spaceUsed, err := cache.GetProjectStorageUsage(ctx, projID)
|
|
require.NoError(t, err)
|
|
assert.Equalf(t, sum, spaceUsed, "projectID %v", projID)
|
|
}
|
|
|
|
err = cache.ResetTotals(ctx)
|
|
require.NoError(t, err)
|
|
|
|
for _, projID := range projectIDs {
|
|
spaceUsed, err := cache.GetProjectStorageUsage(ctx, projID)
|
|
require.NoError(t, err)
|
|
assert.EqualValues(t, 0, spaceUsed)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestRedisCacheConcurrency(t *testing.T) {
|
|
ctx := testcontext.New(t)
|
|
defer ctx.Cleanup()
|
|
|
|
address, cleanup, err := redisserver.Start()
|
|
require.NoError(t, err)
|
|
defer cleanup()
|
|
|
|
config := live.Config{
|
|
StorageBackend: "redis://" + address + "?db=0",
|
|
}
|
|
cache, err := live.NewCache(zaptest.NewLogger(t).Named("live-accounting"), config)
|
|
require.NoError(t, err)
|
|
|
|
projectID := testrand.UUID()
|
|
|
|
const (
|
|
numConcurrent = 100
|
|
inlineAmount = 10
|
|
remoteAmount = 10
|
|
)
|
|
expectedSum := (inlineAmount * numConcurrent) + (remoteAmount * numConcurrent)
|
|
|
|
var group errgroup.Group
|
|
for i := 0; i < numConcurrent; i++ {
|
|
group.Go(func() error {
|
|
return cache.AddProjectStorageUsage(ctx, projectID, inlineAmount, remoteAmount)
|
|
})
|
|
}
|
|
require.NoError(t, group.Wait())
|
|
|
|
spaceUsed, err := cache.GetProjectStorageUsage(ctx, projectID)
|
|
require.NoError(t, err)
|
|
|
|
require.EqualValues(t, expectedSum, spaceUsed)
|
|
}
|
|
|
|
func TestPlainMemoryCacheConcurrency(t *testing.T) {
|
|
ctx := testcontext.New(t)
|
|
defer ctx.Cleanup()
|
|
|
|
config := live.Config{
|
|
StorageBackend: "memory",
|
|
}
|
|
cache, err := live.NewCache(zaptest.NewLogger(t).Named("live-accounting"), config)
|
|
require.NoError(t, err)
|
|
|
|
projectID := testrand.UUID()
|
|
|
|
const (
|
|
numConcurrent = 100
|
|
inlineAmount = 10
|
|
remoteAmount = 10
|
|
)
|
|
expectedSum := (inlineAmount * numConcurrent) + (remoteAmount * numConcurrent)
|
|
|
|
var group errgroup.Group
|
|
for i := 0; i < numConcurrent; i++ {
|
|
group.Go(func() error {
|
|
return cache.AddProjectStorageUsage(ctx, projectID, inlineAmount, remoteAmount)
|
|
})
|
|
}
|
|
require.NoError(t, group.Wait())
|
|
|
|
spaceUsed, err := cache.GetProjectStorageUsage(ctx, projectID)
|
|
require.NoError(t, err)
|
|
|
|
require.EqualValues(t, expectedSum, spaceUsed)
|
|
}
|
|
|
|
func TestNegativeSpaceUsed(t *testing.T) {
|
|
ctx := testcontext.New(t)
|
|
defer ctx.Cleanup()
|
|
|
|
config := live.Config{
|
|
StorageBackend: "memory:",
|
|
}
|
|
cache, err := live.NewCache(zaptest.NewLogger(t).Named("live-accounting"), config)
|
|
require.NoError(t, err)
|
|
|
|
projectID := testrand.UUID()
|
|
inline := int64(-10)
|
|
remote := int64(-20)
|
|
|
|
expectedError := fmt.Sprintf("live-accounting: Used space amounts must be greater than 0. Inline: %d, Remote: %d", inline, remote)
|
|
|
|
err = cache.AddProjectStorageUsage(ctx, projectID, inline, remote)
|
|
require.EqualError(t, err, expectedError)
|
|
}
|
|
|
|
func populateCache(ctx context.Context, cache accounting.Cache) (projectIDs []uuid.UUID, sum int64, _ error) {
|
|
const (
|
|
valuesListSize = 1000
|
|
valueMultiplier = 4096
|
|
numProjects = 200
|
|
)
|
|
// make a largish list of varying values
|
|
someValues := make([]int64, valuesListSize)
|
|
for i := range someValues {
|
|
someValues[i] = int64((i + 1) * valueMultiplier)
|
|
sum += someValues[i] * 2
|
|
}
|
|
|
|
// make up some project IDs
|
|
projectIDs = make([]uuid.UUID, numProjects)
|
|
for i := range projectIDs {
|
|
projectIDs[i] = testrand.UUID()
|
|
}
|
|
|
|
// send lots of space used updates for all of these projects to the live
|
|
// accounting store.
|
|
errg, ctx := errgroup.WithContext(context.Background())
|
|
for _, projID := range projectIDs {
|
|
projID := projID
|
|
errg.Go(func() error {
|
|
// have each project sending the values in a different order
|
|
myValues := make([]int64, valuesListSize)
|
|
copy(myValues, someValues)
|
|
rand.Shuffle(valuesListSize, func(v1, v2 int) {
|
|
myValues[v1], myValues[v2] = myValues[v2], myValues[v1]
|
|
})
|
|
|
|
for _, val := range myValues {
|
|
if err := cache.AddProjectStorageUsage(ctx, projID, val, val); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
})
|
|
}
|
|
|
|
return projectIDs, sum, errg.Wait()
|
|
}
|