storj/pkg/audit/newverifier_test.go
Kaloyan Raev bfdee78f05
Introduce NodeDossier type and cleanup overlay.DB interface (#1626)
Co-authored-by: Natalie Villasana <navillasa@gmail.com>
Co-authored-by: Bill Thorp <bill3000@hotmail.com>
2019-04-04 19:34:36 +03:00

77 lines
2.5 KiB
Go

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
package audit_test
import (
"math/rand"
"testing"
"github.com/stretchr/testify/require"
"go.uber.org/zap"
"storj.io/storj/internal/memory"
"storj.io/storj/internal/testcontext"
"storj.io/storj/internal/testplanet"
"storj.io/storj/pkg/audit"
)
func TestVerifierHappyPath(t *testing.T) {
testplanet.Run(t, testplanet.Config{
SatelliteCount: 1, StorageNodeCount: 6, UplinkCount: 1,
}, func(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet) {
t.Skip("flaky")
// TODO (back story): the way NextStripe currently works, it will get a random segment
// from pointerdb. If it picks an inline segment, it will return nil. If this happens
// 3 times in a row, the test will fail. Increasing the amount of iterations will
// decrease risk of flaking but not eliminate it. Kaloyan and Nat are working on refactoring NextStripe.
err := planet.Satellites[0].Audit.Service.Close()
require.NoError(t, err)
uplink := planet.Uplinks[0]
testData := make([]byte, 1*memory.MiB)
_, err = rand.Read(testData)
require.NoError(t, err)
err = uplink.Upload(ctx, planet.Satellites[0], "testbucket", "test/path", testData)
require.NoError(t, err)
pointerdb := planet.Satellites[0].Metainfo.Service
overlay := planet.Satellites[0].Overlay.Service
cursor := audit.NewCursor(pointerdb)
var stripe *audit.Stripe
maxRetries := 3
for i := 0; i < maxRetries; i++ {
stripe, err = cursor.NextStripe(ctx)
if stripe != nil || err != nil {
break
}
}
require.NoError(t, err)
require.NotNil(t, stripe, "unable to get stripe; likely no pointers in pointerdb")
transport := planet.Satellites[0].Transport
orders := planet.Satellites[0].Orders.Service
minBytesPerSecond := 128 * memory.B
verifier := audit.NewVerifier(zap.L(), transport, overlay, orders, planet.Satellites[0].Identity, minBytesPerSecond)
require.NotNil(t, verifier)
// stop some storage nodes to ensure audit can deal with it
err = planet.StopPeer(planet.StorageNodes[0])
require.NoError(t, err)
err = planet.StopPeer(planet.StorageNodes[1])
require.NoError(t, err)
// mark stopped nodes as offline in overlay cache
_, err = planet.Satellites[0].Overlay.Service.UpdateUptime(ctx, planet.StorageNodes[0].ID(), false)
require.NoError(t, err)
_, err = planet.Satellites[0].Overlay.Service.UpdateUptime(ctx, planet.StorageNodes[1].ID(), false)
require.NoError(t, err)
_, err = verifier.Verify(ctx, stripe)
require.NoError(t, err)
})
}