2020-02-17 18:22:24 +00:00
|
|
|
|
// Copyright (C) 2020 Storj Labs, Inc.
|
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
|
|
package accounting_test
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
|
|
|
|
"testing"
|
|
|
|
|
"time"
|
|
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
|
|
|
|
|
|
"storj.io/common/memory"
|
|
|
|
|
"storj.io/common/testcontext"
|
|
|
|
|
"storj.io/common/testrand"
|
2020-03-30 10:08:50 +01:00
|
|
|
|
"storj.io/common/uuid"
|
2020-02-17 18:22:24 +00:00
|
|
|
|
"storj.io/storj/private/testplanet"
|
2020-01-09 16:51:59 +00:00
|
|
|
|
"storj.io/storj/satellite/accounting"
|
2021-04-21 13:42:57 +01:00
|
|
|
|
"storj.io/storj/satellite/metabase"
|
2021-06-17 16:05:04 +01:00
|
|
|
|
"storj.io/storj/satellite/repair/queue"
|
2020-02-17 18:22:24 +00:00
|
|
|
|
)
|
|
|
|
|
|
2020-02-18 10:52:21 +00:00
|
|
|
|
func TestBilling_DownloadWithoutExpansionFactor(t *testing.T) {
|
|
|
|
|
t.Skip("disable until the bug SM-102 is fixed")
|
|
|
|
|
testplanet.Run(t, testplanet.Config{
|
|
|
|
|
SatelliteCount: 1, StorageNodeCount: 4, UplinkCount: 1,
|
|
|
|
|
Reconfigure: testplanet.Reconfigure{
|
|
|
|
|
Satellite: testplanet.ReconfigureRS(2, 3, 4, 4),
|
|
|
|
|
},
|
|
|
|
|
}, func(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet) {
|
|
|
|
|
const (
|
|
|
|
|
bucketName = "testbucket"
|
|
|
|
|
filePath = "test/path"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var (
|
|
|
|
|
satelliteSys = planet.Satellites[0]
|
|
|
|
|
uplink = planet.Uplinks[0]
|
2020-04-16 13:12:46 +01:00
|
|
|
|
projectID = uplink.Projects[0].ID
|
2020-02-18 10:52:21 +00:00
|
|
|
|
since = time.Now()
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
satelliteSys.Accounting.Tally.Loop.Pause()
|
|
|
|
|
|
|
|
|
|
data := testrand.Bytes(10 * memory.KiB)
|
|
|
|
|
err := uplink.Upload(ctx, satelliteSys, bucketName, filePath, data)
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
|
|
_, err = uplink.Download(ctx, satelliteSys, bucketName, filePath)
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
|
|
// trigger tally so it gets all set up and can return a storage usage
|
|
|
|
|
satelliteSys.Accounting.Tally.Loop.TriggerWait()
|
|
|
|
|
|
|
|
|
|
usage := getProjectTotal(ctx, t, planet, 0, projectID, since)
|
|
|
|
|
|
|
|
|
|
// TODO: this assertion fails due to the bug SM-102
|
|
|
|
|
require.Equal(t, len(data), int(usage.Egress), "Egress should be equal to the downloaded file size")
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-11 15:52:28 +00:00
|
|
|
|
func TestBilling_InlineFiles(t *testing.T) {
|
|
|
|
|
testplanet.Run(t, testplanet.Config{
|
|
|
|
|
SatelliteCount: 1, StorageNodeCount: 1, UplinkCount: 1,
|
|
|
|
|
}, func(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet) {
|
|
|
|
|
const (
|
|
|
|
|
bucketName = "testbucket"
|
|
|
|
|
firstPath = "path"
|
|
|
|
|
secondPath = "another_path"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var (
|
|
|
|
|
satelliteSys = planet.Satellites[0]
|
|
|
|
|
uplink = planet.Uplinks[0]
|
2020-04-16 13:12:46 +01:00
|
|
|
|
projectID = uplink.Projects[0].ID
|
2020-03-11 15:52:28 +00:00
|
|
|
|
since = time.Now()
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
satelliteSys.Accounting.Tally.Loop.Pause()
|
|
|
|
|
|
|
|
|
|
// Prepare two inline segments for the Uplink to upload
|
|
|
|
|
firstSegment := testrand.Bytes(2 * memory.KiB)
|
|
|
|
|
secondSegment := testrand.Bytes(3 * memory.KiB)
|
|
|
|
|
|
|
|
|
|
err := uplink.Upload(ctx, satelliteSys, bucketName, firstPath, firstSegment)
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
err = uplink.Upload(ctx, satelliteSys, bucketName, secondPath, secondSegment)
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
|
|
_, err = uplink.Download(ctx, satelliteSys, bucketName, firstPath)
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
2020-02-18 10:52:21 +00:00
|
|
|
|
// trigger tally so it gets all set up and can return a storage usage
|
2020-03-11 15:52:28 +00:00
|
|
|
|
satelliteSys.Accounting.Tally.Loop.TriggerWait()
|
|
|
|
|
|
|
|
|
|
usage := getProjectTotal(ctx, t, planet, 0, projectID, since)
|
|
|
|
|
|
|
|
|
|
// Usage should be > 0
|
|
|
|
|
require.NotZero(t, usage.ObjectCount)
|
|
|
|
|
require.NotZero(t, usage.Storage)
|
|
|
|
|
require.NotZero(t, usage.Egress)
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-09 16:51:59 +00:00
|
|
|
|
func TestBilling_FilesAfterDeletion(t *testing.T) {
|
|
|
|
|
testplanet.Run(t, testplanet.Config{
|
|
|
|
|
SatelliteCount: 1, StorageNodeCount: 4, UplinkCount: 1,
|
|
|
|
|
}, func(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet) {
|
|
|
|
|
const (
|
|
|
|
|
bucketName = "testbucket"
|
|
|
|
|
filePath = "test/path"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var (
|
|
|
|
|
satelliteSys = planet.Satellites[0]
|
|
|
|
|
uplink = planet.Uplinks[0]
|
2020-04-16 13:12:46 +01:00
|
|
|
|
projectID = uplink.Projects[0].ID
|
2020-01-09 16:51:59 +00:00
|
|
|
|
since = time.Now()
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
satelliteSys.Accounting.Tally.Loop.Pause()
|
|
|
|
|
|
|
|
|
|
// Prepare some data for the Uplink to upload
|
|
|
|
|
uploadData := testrand.Bytes(5 * memory.KiB)
|
|
|
|
|
err := uplink.Upload(ctx, satelliteSys, bucketName, filePath, uploadData)
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
2020-02-18 10:52:21 +00:00
|
|
|
|
// trigger tally so it gets all set up and can return a storage usage
|
2020-01-09 16:51:59 +00:00
|
|
|
|
satelliteSys.Accounting.Tally.Loop.TriggerWait()
|
|
|
|
|
|
|
|
|
|
// Get usage for uploaded file before we delete it
|
|
|
|
|
usageBefore := getProjectTotal(ctx, t, planet, 0, projectID, since)
|
|
|
|
|
|
|
|
|
|
// ObjectCount and Storage should be > 0
|
|
|
|
|
require.NotZero(t, usageBefore.ObjectCount)
|
|
|
|
|
require.NotZero(t, usageBefore.Storage)
|
|
|
|
|
require.Zero(t, usageBefore.Egress)
|
|
|
|
|
|
|
|
|
|
err = uplink.DeleteObject(ctx, satelliteSys, bucketName, filePath)
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
|
|
err = uplink.DeleteBucket(ctx, satelliteSys, bucketName)
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
|
|
// Get usage after file was deleted
|
|
|
|
|
usageAfter := getProjectTotal(ctx, t, planet, 0, projectID, since)
|
|
|
|
|
|
|
|
|
|
// Verify data is correct. We don’t bill for the data after deleting objects, usage should be equal
|
|
|
|
|
require.Equal(t, usageBefore.ObjectCount, usageAfter.ObjectCount, "Object count should be equal")
|
|
|
|
|
require.Equal(t, usageBefore.Storage, usageAfter.Storage, "Storage should be equal")
|
|
|
|
|
require.Zero(t, usageAfter.Egress, "Egress should be 0")
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestBilling_TrafficAfterFileDeletion(t *testing.T) {
|
2020-02-24 11:07:34 +00:00
|
|
|
|
testplanet.Run(t, testplanet.Config{
|
|
|
|
|
SatelliteCount: 1, StorageNodeCount: 4, UplinkCount: 1,
|
|
|
|
|
Reconfigure: testplanet.Reconfigure{
|
|
|
|
|
Satellite: testplanet.ReconfigureRS(2, 3, 4, 4),
|
|
|
|
|
},
|
|
|
|
|
}, func(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet) {
|
|
|
|
|
const (
|
|
|
|
|
bucketName = "testbucket"
|
|
|
|
|
filePath = "test/path"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var (
|
|
|
|
|
satelliteSys = planet.Satellites[0]
|
|
|
|
|
uplink = planet.Uplinks[0]
|
2020-04-16 13:12:46 +01:00
|
|
|
|
projectID = uplink.Projects[0].ID
|
2020-02-24 11:07:34 +00:00
|
|
|
|
)
|
2020-11-18 21:39:13 +00:00
|
|
|
|
err := planet.Uplinks[0].CreateBucket(ctx, planet.Satellites[0], bucketName)
|
|
|
|
|
require.NoError(t, err)
|
2020-02-24 11:07:34 +00:00
|
|
|
|
|
2020-07-01 23:05:01 +01:00
|
|
|
|
// stop any async flushes because we want to be sure when some values are
|
|
|
|
|
// written to avoid races
|
|
|
|
|
satelliteSys.Orders.Chore.Loop.Pause()
|
|
|
|
|
|
2020-02-24 11:07:34 +00:00
|
|
|
|
data := testrand.Bytes(5 * memory.KiB)
|
2020-11-18 21:39:13 +00:00
|
|
|
|
err = uplink.Upload(ctx, satelliteSys, bucketName, filePath, data)
|
2020-02-24 11:07:34 +00:00
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
|
|
_, err = uplink.Download(ctx, satelliteSys, bucketName, filePath)
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
|
|
err = uplink.DeleteObject(ctx, satelliteSys, bucketName, filePath)
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
|
|
err = uplink.DeleteBucket(ctx, satelliteSys, bucketName)
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
|
|
// Check that download traffic gets billed even if the file and bucket was deleted
|
2020-01-09 16:51:59 +00:00
|
|
|
|
usage := getProjectTotal(ctx, t, planet, 0, projectID, time.Now().Add(-30*time.Millisecond))
|
|
|
|
|
require.NotZero(t, usage.Egress, "Egress should not be empty")
|
2020-02-24 11:07:34 +00:00
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-17 18:22:24 +00:00
|
|
|
|
func TestBilling_AuditRepairTraffic(t *testing.T) {
|
|
|
|
|
testplanet.Run(t, testplanet.Config{
|
|
|
|
|
SatelliteCount: 1, StorageNodeCount: 6, UplinkCount: 1,
|
|
|
|
|
Reconfigure: testplanet.Reconfigure{
|
|
|
|
|
Satellite: testplanet.ReconfigureRS(2, 3, 4, 4),
|
|
|
|
|
},
|
|
|
|
|
}, func(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet) {
|
|
|
|
|
const (
|
|
|
|
|
bucketName = "a-bucket"
|
|
|
|
|
objectKey = "object-filename"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
satelliteSys := planet.Satellites[0]
|
|
|
|
|
satelliteSys.Audit.Worker.Loop.Pause()
|
|
|
|
|
satelliteSys.Repair.Checker.Loop.Pause()
|
|
|
|
|
satelliteSys.Repair.Repairer.Loop.Pause()
|
2020-07-01 23:05:01 +01:00
|
|
|
|
// stop any async flushes because we want to be sure when some values are
|
|
|
|
|
// written to avoid races
|
|
|
|
|
satelliteSys.Orders.Chore.Loop.Pause()
|
2020-02-17 18:22:24 +00:00
|
|
|
|
|
|
|
|
|
for _, sn := range planet.StorageNodes {
|
|
|
|
|
sn.Storage2.Orders.Sender.Pause()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
uplnk := planet.Uplinks[0]
|
|
|
|
|
{
|
|
|
|
|
data := testrand.Bytes(10 * memory.KiB)
|
|
|
|
|
err := uplnk.Upload(ctx, satelliteSys, bucketName, objectKey, data)
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// make sure we have at least one tally in db, so when we call
|
|
|
|
|
// getProjectStorage it returns something
|
|
|
|
|
satelliteSys.Accounting.Tally.Loop.TriggerWait()
|
|
|
|
|
|
|
|
|
|
_, err := uplnk.Download(ctx, satelliteSys, bucketName, objectKey)
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
|
|
var (
|
2020-04-16 13:12:46 +01:00
|
|
|
|
projectID = uplnk.Projects[0].ID
|
2020-02-17 18:22:24 +00:00
|
|
|
|
since = time.Now()
|
|
|
|
|
)
|
|
|
|
|
projectTotal := getProjectTotal(ctx, t, planet, 0, projectID, since)
|
|
|
|
|
require.NotZero(t, projectTotal.Egress)
|
|
|
|
|
|
|
|
|
|
// get the only metainfo record (our upload)
|
2020-12-21 12:54:11 +00:00
|
|
|
|
objectsBefore, err := planet.Satellites[0].Metainfo.Metabase.TestingAllObjects(ctx)
|
2020-02-17 18:22:24 +00:00
|
|
|
|
require.NoError(t, err)
|
2020-12-21 12:54:11 +00:00
|
|
|
|
|
|
|
|
|
segmentsBefore, err := planet.Satellites[0].Metainfo.Metabase.TestingAllSegments(ctx)
|
2020-02-17 18:22:24 +00:00
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
|
|
// Cause repair traffic
|
2020-12-21 12:54:11 +00:00
|
|
|
|
require.NotEmpty(t, segmentsBefore[0].Pieces)
|
|
|
|
|
stoppedNodeID := segmentsBefore[0].Pieces[0].StorageNode
|
2020-05-07 09:23:40 +01:00
|
|
|
|
err = planet.StopNodeAndUpdate(ctx, planet.FindNode(stoppedNodeID))
|
|
|
|
|
require.NoError(t, err)
|
2020-02-17 18:22:24 +00:00
|
|
|
|
|
|
|
|
|
runningNodes := make([]*testplanet.StorageNode, 0)
|
|
|
|
|
for _, node := range planet.StorageNodes {
|
|
|
|
|
if node.ID() != stoppedNodeID {
|
|
|
|
|
runningNodes = append(runningNodes, node)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// trigger repair
|
2021-06-17 16:05:04 +01:00
|
|
|
|
queueSegment := queue.InjuredSegment{
|
|
|
|
|
StreamID: objectsBefore[0].StreamID,
|
|
|
|
|
Position: metabase.SegmentPosition{Index: 0},
|
2020-12-21 12:54:11 +00:00
|
|
|
|
}
|
2021-06-17 16:05:04 +01:00
|
|
|
|
_, err = satelliteSys.Repairer.SegmentRepairer.Repair(ctx, &queueSegment)
|
2020-02-17 18:22:24 +00:00
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
|
|
// get the only metainfo record (our upload)
|
2020-12-21 12:54:11 +00:00
|
|
|
|
segments, err := planet.Satellites[0].Metainfo.Metabase.TestingAllSegments(ctx)
|
2020-02-17 18:22:24 +00:00
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
2020-12-21 12:54:11 +00:00
|
|
|
|
require.NotEqual(t, segmentsBefore[0], segments[0])
|
|
|
|
|
for _, piece := range segments[0].Pieces {
|
|
|
|
|
require.NotEqual(t, stoppedNodeID, piece.StorageNode, "there shouldn't be pieces in stopped nodes")
|
2020-02-17 18:22:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
projectTotalAfterRepair := getProjectTotalFromStorageNodes(ctx, t, planet, 0, projectID, since, runningNodes)
|
|
|
|
|
require.Equal(t, projectTotal.Egress, projectTotalAfterRepair.Egress, "bandwidth totals")
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2020-10-20 19:54:17 +01:00
|
|
|
|
func TestBilling_UploadNoEgress(t *testing.T) {
|
2020-02-17 18:22:24 +00:00
|
|
|
|
testplanet.Run(t, testplanet.Config{
|
|
|
|
|
SatelliteCount: 1, StorageNodeCount: 4, UplinkCount: 1,
|
|
|
|
|
Reconfigure: testplanet.Reconfigure{
|
|
|
|
|
Satellite: testplanet.ReconfigureRS(2, 3, 4, 4),
|
|
|
|
|
},
|
|
|
|
|
}, func(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet) {
|
|
|
|
|
const (
|
|
|
|
|
bucketName = "a-bucket"
|
|
|
|
|
objectKey = "object-filename"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
satelliteSys := planet.Satellites[0]
|
|
|
|
|
// Make sure that we don't have interference with billed repair traffic
|
|
|
|
|
// in case of a bug. There is a specific test to verify that the repair
|
|
|
|
|
// traffic isn't billed.
|
|
|
|
|
satelliteSys.Audit.Chore.Loop.Stop()
|
|
|
|
|
satelliteSys.Repair.Repairer.Loop.Stop()
|
2020-07-01 23:05:01 +01:00
|
|
|
|
// stop any async flushes because we want to be sure when some values are
|
|
|
|
|
// written to avoid races
|
|
|
|
|
satelliteSys.Orders.Chore.Loop.Pause()
|
2020-02-17 18:22:24 +00:00
|
|
|
|
|
|
|
|
|
var (
|
|
|
|
|
uplnk = planet.Uplinks[0]
|
2020-04-16 13:12:46 +01:00
|
|
|
|
projectID = uplnk.Projects[0].ID
|
2020-02-17 18:22:24 +00:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
since := time.Now().Add(-10 * time.Hour)
|
2020-01-09 16:51:59 +00:00
|
|
|
|
usage := getProjectTotal(ctx, t, planet, 0, projectID, since)
|
|
|
|
|
require.Zero(t, usage.Egress, "billed usage")
|
2020-02-17 18:22:24 +00:00
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
data := testrand.Bytes(10 * memory.KiB)
|
|
|
|
|
err := uplnk.Upload(ctx, satelliteSys, bucketName, objectKey, data)
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-09 16:51:59 +00:00
|
|
|
|
usage = getProjectTotal(ctx, t, planet, 0, projectID, since)
|
|
|
|
|
require.Zero(t, usage.Egress, "billed usage")
|
2020-10-20 19:54:17 +01:00
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func TestBilling_DownloadTraffic(t *testing.T) {
|
|
|
|
|
testplanet.Run(t, testplanet.Config{
|
|
|
|
|
SatelliteCount: 1, StorageNodeCount: 4, UplinkCount: 1,
|
|
|
|
|
Reconfigure: testplanet.Reconfigure{
|
|
|
|
|
Satellite: testplanet.ReconfigureRS(2, 3, 4, 4),
|
|
|
|
|
},
|
|
|
|
|
}, func(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet) {
|
|
|
|
|
const (
|
|
|
|
|
bucketName = "a-bucket"
|
|
|
|
|
objectKey = "object-filename"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
satelliteSys := planet.Satellites[0]
|
|
|
|
|
// Make sure that we don't have interference with billed repair traffic
|
|
|
|
|
// in case of a bug. There is a specific test to verify that the repair
|
|
|
|
|
// traffic isn't billed.
|
|
|
|
|
satelliteSys.Audit.Chore.Loop.Stop()
|
|
|
|
|
satelliteSys.Repair.Repairer.Loop.Stop()
|
|
|
|
|
// stop any async flushes because we want to be sure when some values are
|
|
|
|
|
// written to avoid races
|
|
|
|
|
satelliteSys.Orders.Chore.Loop.Pause()
|
|
|
|
|
|
|
|
|
|
var (
|
|
|
|
|
uplnk = planet.Uplinks[0]
|
|
|
|
|
projectID = uplnk.Projects[0].ID
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
data := testrand.Bytes(10 * memory.KiB)
|
|
|
|
|
err := uplnk.Upload(ctx, satelliteSys, bucketName, objectKey, data)
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
}
|
2020-02-17 18:22:24 +00:00
|
|
|
|
|
|
|
|
|
_, err := uplnk.Download(ctx, satelliteSys, bucketName, objectKey)
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
2020-10-20 19:54:17 +01:00
|
|
|
|
since := time.Now().Add(-10 * time.Hour)
|
|
|
|
|
usage := getProjectTotal(ctx, t, planet, 0, projectID, since)
|
2020-01-09 16:51:59 +00:00
|
|
|
|
require.NotZero(t, usage.Egress, "billed usage")
|
2020-02-17 18:22:24 +00:00
|
|
|
|
})
|
|
|
|
|
}
|
2021-01-22 13:51:29 +00:00
|
|
|
|
|
2020-04-10 18:35:58 +01:00
|
|
|
|
func TestBilling_ExpiredFiles(t *testing.T) {
|
|
|
|
|
testplanet.Run(t, testplanet.Config{
|
|
|
|
|
SatelliteCount: 1, StorageNodeCount: 4, UplinkCount: 1,
|
|
|
|
|
}, func(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet) {
|
|
|
|
|
const (
|
|
|
|
|
bucketName = "a-bucket"
|
|
|
|
|
objectKey = "object-filename"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
satelliteSys := planet.Satellites[0]
|
|
|
|
|
satelliteSys.Audit.Chore.Loop.Stop()
|
|
|
|
|
satelliteSys.Repair.Repairer.Loop.Stop()
|
|
|
|
|
|
|
|
|
|
satelliteSys.Accounting.Tally.Loop.Pause()
|
|
|
|
|
|
|
|
|
|
tallies := getTallies(ctx, t, planet, 0)
|
|
|
|
|
require.Zero(t, len(tallies), "There should be no tally at this point")
|
|
|
|
|
|
|
|
|
|
now := time.Now()
|
|
|
|
|
expirationDate := now.Add(time.Hour)
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
uplink := planet.Uplinks[0]
|
|
|
|
|
data := testrand.Bytes(128 * memory.KiB)
|
|
|
|
|
err := uplink.UploadWithExpiration(ctx, satelliteSys, bucketName, objectKey, data, expirationDate)
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
}
|
|
|
|
|
require.NoError(t, planet.WaitForStorageNodeEndpoints(ctx))
|
|
|
|
|
|
|
|
|
|
tallies = getTallies(ctx, t, planet, 0)
|
|
|
|
|
require.NotZero(t, len(tallies), "There should be at least one tally")
|
|
|
|
|
|
|
|
|
|
// set the tally service to be in the future for the next get tallies call. it should
|
|
|
|
|
// not add any tallies.
|
|
|
|
|
planet.Satellites[0].Accounting.Tally.SetNow(func() time.Time {
|
|
|
|
|
return now.Add(2 * time.Hour)
|
|
|
|
|
})
|
|
|
|
|
newTallies := getTallies(ctx, t, planet, 0)
|
|
|
|
|
require.Equal(t, tallies, newTallies)
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func getTallies(ctx context.Context, t *testing.T, planet *testplanet.Planet, satelliteIdx int) []accounting.BucketTally {
|
|
|
|
|
t.Helper()
|
|
|
|
|
sat := planet.Satellites[satelliteIdx]
|
|
|
|
|
sat.Accounting.Tally.Loop.TriggerWait()
|
|
|
|
|
sat.Accounting.Tally.Loop.Pause()
|
|
|
|
|
|
|
|
|
|
tallies, err := sat.DB.ProjectAccounting().GetTallies(ctx)
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
return tallies
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-02 12:58:02 +00:00
|
|
|
|
// getProjectTotal returns the total used egress, storage, objectCount for the
|
2020-02-17 18:22:24 +00:00
|
|
|
|
// projectID in the satellite referenced by satelliteIdx index.
|
2020-01-09 16:51:59 +00:00
|
|
|
|
func getProjectTotal(
|
2020-02-17 18:22:24 +00:00
|
|
|
|
ctx context.Context, t *testing.T, planet *testplanet.Planet, satelliteIdx int,
|
|
|
|
|
projectID uuid.UUID, since time.Time,
|
2020-01-09 16:51:59 +00:00
|
|
|
|
) *accounting.ProjectUsage {
|
2020-02-17 18:22:24 +00:00
|
|
|
|
t.Helper()
|
|
|
|
|
|
2020-02-17 18:22:24 +00:00
|
|
|
|
return getProjectTotalFromStorageNodes(ctx, t, planet, satelliteIdx, projectID, since, planet.StorageNodes)
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-02 12:58:02 +00:00
|
|
|
|
// getProjectTotalFromStorageNodes returns used egress, storage, objectCount for the
|
|
|
|
|
// projectID in the satellite referenced by satelliteIdx index, asking orders
|
|
|
|
|
// to storageNodes nodes.
|
2020-02-17 18:22:24 +00:00
|
|
|
|
func getProjectTotalFromStorageNodes(
|
|
|
|
|
ctx context.Context, t *testing.T, planet *testplanet.Planet, satelliteIdx int,
|
|
|
|
|
projectID uuid.UUID, since time.Time, storageNodes []*testplanet.StorageNode,
|
|
|
|
|
) *accounting.ProjectUsage {
|
|
|
|
|
t.Helper()
|
|
|
|
|
|
2020-01-09 16:51:59 +00:00
|
|
|
|
// Wait for the SNs endpoints to finish their work
|
2020-03-05 11:34:12 +00:00
|
|
|
|
require.NoError(t, planet.WaitForStorageNodeEndpoints(ctx))
|
|
|
|
|
|
storagenode: live tracking of order window usage
This change accomplishes multiple things:
1. Instead of having a max in flight time, which means
we effectively have a minimum bandwidth for uploads
and downloads, we keep track of what windows have
active requests happening in them.
2. We don't double check when we save the order to see if it
is too old: by then, it's too late. A malicious uplink
could just submit orders outside of the grace window and
receive all the data, but the node would just not commit
it, so the uplink gets free traffic. Because the endpoints
also check for the order being too old, this would be a
very tight race that depends on knowledge of the node system
clock, but best to not have the race exist. Instead, we piggy
back off of the in flight tracking and do the check when
we start to handle the order, and commit at the end.
3. Change the functions that send orders and list unsent
orders to accept a time at which that operation is
happening. This way, in tests, we can pretend we're
listing or sending far into the future after the windows
are available to send, rather than exposing test functions
to modify internal state about the grace period to get
the desired effect. This brings tests closer to actual
usage in production.
4. Change the calculation for if an order is allowed to be
enqueued due to the grace period to just look at the
order creation time, rather than some computation involving
the window it will be in. In this way, you can easily
answer the question of "will this order be accepted?" by
asking "is it older than X?" where X is the grace period.
5. Increases the frequency we check to send up orders to once
every 5 minutes instead of once every hour because we already
have hour-long buffering due to the windows. This decreases
the maximum latency that an order will be reported back to
the satellite by 55 minutes.
Change-Id: Ie08b90d139d45ee89b82347e191a2f8db1b88036
2020-08-12 20:01:43 +01:00
|
|
|
|
// Ensure all nodes have sent up any orders for the time period we're calculating
|
2020-02-17 18:22:24 +00:00
|
|
|
|
for _, sn := range storageNodes {
|
storagenode: live tracking of order window usage
This change accomplishes multiple things:
1. Instead of having a max in flight time, which means
we effectively have a minimum bandwidth for uploads
and downloads, we keep track of what windows have
active requests happening in them.
2. We don't double check when we save the order to see if it
is too old: by then, it's too late. A malicious uplink
could just submit orders outside of the grace window and
receive all the data, but the node would just not commit
it, so the uplink gets free traffic. Because the endpoints
also check for the order being too old, this would be a
very tight race that depends on knowledge of the node system
clock, but best to not have the race exist. Instead, we piggy
back off of the in flight tracking and do the check when
we start to handle the order, and commit at the end.
3. Change the functions that send orders and list unsent
orders to accept a time at which that operation is
happening. This way, in tests, we can pretend we're
listing or sending far into the future after the windows
are available to send, rather than exposing test functions
to modify internal state about the grace period to get
the desired effect. This brings tests closer to actual
usage in production.
4. Change the calculation for if an order is allowed to be
enqueued due to the grace period to just look at the
order creation time, rather than some computation involving
the window it will be in. In this way, you can easily
answer the question of "will this order be accepted?" by
asking "is it older than X?" where X is the grace period.
5. Increases the frequency we check to send up orders to once
every 5 minutes instead of once every hour because we already
have hour-long buffering due to the windows. This decreases
the maximum latency that an order will be reported back to
the satellite by 55 minutes.
Change-Id: Ie08b90d139d45ee89b82347e191a2f8db1b88036
2020-08-12 20:01:43 +01:00
|
|
|
|
sn.Storage2.Orders.SendOrders(ctx, since.Add(24*time.Hour))
|
2020-02-17 18:22:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sat := planet.Satellites[satelliteIdx]
|
|
|
|
|
sat.Accounting.Tally.Loop.TriggerWait()
|
|
|
|
|
|
2020-07-01 23:05:01 +01:00
|
|
|
|
// flush rollups write cache
|
|
|
|
|
sat.Orders.Chore.Loop.TriggerWait()
|
|
|
|
|
|
2020-01-09 16:51:59 +00:00
|
|
|
|
usage, err := sat.DB.ProjectAccounting().GetProjectTotal(ctx, projectID, since, time.Now())
|
2020-02-17 18:22:24 +00:00
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
2020-01-09 16:51:59 +00:00
|
|
|
|
return usage
|
2020-02-17 18:22:24 +00:00
|
|
|
|
}
|