2019-04-09 14:48:35 +01:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package accounting_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/skyrings/skyring-common/tools/uuid"
|
|
|
|
"github.com/stretchr/testify/require"
|
2019-06-13 13:46:08 +01:00
|
|
|
|
2019-04-09 14:48:35 +01:00
|
|
|
"storj.io/storj/internal/testcontext"
|
2019-06-26 11:38:51 +01:00
|
|
|
"storj.io/storj/internal/testrand"
|
2019-04-09 14:48:35 +01:00
|
|
|
"storj.io/storj/pkg/storj"
|
|
|
|
"storj.io/storj/satellite"
|
2019-07-28 06:55:36 +01:00
|
|
|
"storj.io/storj/satellite/accounting"
|
2019-04-09 14:48:35 +01:00
|
|
|
"storj.io/storj/satellite/satellitedb/satellitedbtest"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestSaveBucketTallies(t *testing.T) {
|
|
|
|
satellitedbtest.Run(t, func(t *testing.T, db satellite.DB) {
|
|
|
|
ctx := testcontext.New(t)
|
|
|
|
defer ctx.Cleanup()
|
|
|
|
|
|
|
|
// Setup: create bucket storage tallies
|
2019-06-26 11:38:51 +01:00
|
|
|
projectID := testrand.UUID()
|
|
|
|
|
|
|
|
bucketTallies, expectedTallies, err := createBucketStorageTallies(projectID)
|
2019-04-09 14:48:35 +01:00
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
// Execute test: retrieve the save tallies and confirm they contains the expected data
|
|
|
|
intervalStart := time.Now()
|
2019-05-10 20:05:42 +01:00
|
|
|
pdb := db.ProjectAccounting()
|
|
|
|
actualTallies, err := pdb.SaveTallies(ctx, intervalStart, bucketTallies)
|
2019-04-09 14:48:35 +01:00
|
|
|
require.NoError(t, err)
|
|
|
|
for _, tally := range actualTallies {
|
|
|
|
require.Contains(t, expectedTallies, tally)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func createBucketStorageTallies(projectID uuid.UUID) (map[string]*accounting.BucketTally, []accounting.BucketTally, error) {
|
|
|
|
bucketTallies := make(map[string]*accounting.BucketTally)
|
|
|
|
var expectedTallies []accounting.BucketTally
|
|
|
|
|
|
|
|
for i := 0; i < 4; i++ {
|
|
|
|
bucketName := fmt.Sprintf("%s%d", "testbucket", i)
|
|
|
|
bucketID := storj.JoinPaths(projectID.String(), bucketName)
|
|
|
|
|
|
|
|
// Setup: The data in this tally should match the pointer that the uplink.upload created
|
|
|
|
tally := accounting.BucketTally{
|
2019-06-21 16:38:37 +01:00
|
|
|
BucketName: []byte(bucketName),
|
|
|
|
ProjectID: projectID[:],
|
2019-04-09 14:48:35 +01:00
|
|
|
InlineSegments: int64(1),
|
|
|
|
RemoteSegments: int64(1),
|
|
|
|
Files: int64(1),
|
|
|
|
InlineBytes: int64(1),
|
|
|
|
RemoteBytes: int64(1),
|
|
|
|
MetadataSize: int64(1),
|
|
|
|
}
|
|
|
|
bucketTallies[bucketID] = &tally
|
|
|
|
expectedTallies = append(expectedTallies, tally)
|
|
|
|
|
|
|
|
}
|
|
|
|
return bucketTallies, expectedTallies, nil
|
|
|
|
}
|