267506bb20
metabase has become a central concept and it's more suitable for it to be directly nested under satellite rather than being part of metainfo. metainfo is going to be the "endpoint" logic for handling requests. Change-Id: I53770d6761ac1e9a1283b5aa68f471b21e784198
192 lines
5.7 KiB
Go
192 lines
5.7 KiB
Go
// Copyright (C) 2020 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package audit_test
|
|
|
|
import (
|
|
"context"
|
|
"crypto/tls"
|
|
"net"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
"go.uber.org/zap/zaptest"
|
|
|
|
"storj.io/common/memory"
|
|
"storj.io/common/pb"
|
|
"storj.io/common/rpc"
|
|
"storj.io/common/testcontext"
|
|
"storj.io/common/testrand"
|
|
"storj.io/storj/private/testplanet"
|
|
"storj.io/storj/satellite/audit"
|
|
"storj.io/storj/satellite/metabase"
|
|
)
|
|
|
|
type mockConnector struct {
|
|
realConnector rpc.Connector
|
|
addressesDialed []string
|
|
dialInstead map[string]string
|
|
}
|
|
|
|
func (m *mockConnector) DialContext(ctx context.Context, tlsConfig *tls.Config, address string) (rpc.ConnectorConn, error) {
|
|
m.addressesDialed = append(m.addressesDialed, address)
|
|
replacement := m.dialInstead[address]
|
|
if replacement == "" {
|
|
// allow numeric ip addresses through, return errors for unexpected dns lookups
|
|
host, _, err := net.SplitHostPort(address)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if net.ParseIP(host) == nil {
|
|
return nil, &net.DNSError{
|
|
Err: "unexpected lookup",
|
|
Name: address,
|
|
Server: "a.totally.real.dns.server.i.promise",
|
|
IsNotFound: true,
|
|
}
|
|
}
|
|
replacement = address
|
|
}
|
|
return m.realConnector.DialContext(ctx, tlsConfig, replacement)
|
|
}
|
|
|
|
func reformVerifierWithMockConnector(t testing.TB, sat *testplanet.Satellite, mock *mockConnector) *audit.Verifier {
|
|
tlsOptions := sat.Dialer.TLSOptions
|
|
newDialer := rpc.NewDefaultDialer(tlsOptions)
|
|
mock.realConnector = newDialer.Connector
|
|
newDialer.Connector = mock
|
|
|
|
verifier := audit.NewVerifier(
|
|
zaptest.NewLogger(t).Named("a-special-verifier"),
|
|
sat.Metainfo.Metabase,
|
|
newDialer,
|
|
sat.Overlay.Service,
|
|
sat.DB.Containment(),
|
|
sat.Orders.Service,
|
|
sat.Identity,
|
|
sat.Config.Audit.MinBytesPerSecond,
|
|
sat.Config.Audit.MinDownloadTimeout,
|
|
)
|
|
sat.Audit.Verifier = verifier
|
|
return verifier
|
|
}
|
|
|
|
func TestGetShareDoesNameLookupIfNecessary(t *testing.T) {
|
|
testplanet.Run(t, testplanet.Config{
|
|
SatelliteCount: 1, StorageNodeCount: 4, UplinkCount: 1,
|
|
}, func(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet) {
|
|
testSatellite := planet.Satellites[0]
|
|
audits := testSatellite.Audit
|
|
|
|
audits.Worker.Loop.Pause()
|
|
audits.Chore.Loop.Pause()
|
|
|
|
ul := planet.Uplinks[0]
|
|
testData := testrand.Bytes(8 * memory.KiB)
|
|
|
|
err := ul.Upload(ctx, testSatellite, "test.bucket", "some//path", testData)
|
|
require.NoError(t, err)
|
|
|
|
audits.Chore.Loop.TriggerWait()
|
|
queue := audits.Queues.Fetch()
|
|
queueSegment, err := queue.Next()
|
|
require.NoError(t, err)
|
|
|
|
segment, err := testSatellite.Metainfo.Metabase.GetSegmentByPosition(ctx, metabase.GetSegmentByPosition{
|
|
StreamID: queueSegment.StreamID,
|
|
Position: queueSegment.Position,
|
|
})
|
|
require.NoError(t, err)
|
|
|
|
orderLimits, privateKey, _, err := testSatellite.Orders.Service.CreateAuditOrderLimits(ctx, queueSegment.Bucket(), segment, nil)
|
|
require.NoError(t, err)
|
|
|
|
// find any non-nil limit
|
|
var limit *pb.AddressedOrderLimit
|
|
var orderNum int
|
|
for i, orderLimit := range orderLimits {
|
|
if orderLimit != nil {
|
|
limit = orderLimit
|
|
orderNum = i
|
|
}
|
|
}
|
|
require.NotNil(t, limit)
|
|
|
|
cachedIPAndPort := "garbageXXX#:"
|
|
mock := &mockConnector{}
|
|
verifier := reformVerifierWithMockConnector(t, testSatellite, mock)
|
|
|
|
share, err := verifier.GetShare(ctx, limit, privateKey, cachedIPAndPort, 0, segment.Redundancy.ShareSize, orderNum)
|
|
require.NoError(t, err)
|
|
require.NoError(t, share.Error)
|
|
|
|
// we expect that the cached IP and port was actually dialed
|
|
require.Contains(t, mock.addressesDialed, cachedIPAndPort)
|
|
})
|
|
}
|
|
|
|
func TestGetSharePrefers(t *testing.T) {
|
|
testplanet.Run(t, testplanet.Config{
|
|
SatelliteCount: 1, StorageNodeCount: 4, UplinkCount: 1,
|
|
}, func(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet) {
|
|
testSatellite := planet.Satellites[0]
|
|
audits := testSatellite.Audit
|
|
|
|
audits.Worker.Loop.Pause()
|
|
audits.Chore.Loop.Pause()
|
|
|
|
ul := planet.Uplinks[0]
|
|
testData := testrand.Bytes(8 * memory.KiB)
|
|
|
|
err := ul.Upload(ctx, testSatellite, "test.bucket", "some//path", testData)
|
|
require.NoError(t, err)
|
|
|
|
audits.Chore.Loop.TriggerWait()
|
|
queue := audits.Queues.Fetch()
|
|
queueSegment, err := queue.Next()
|
|
require.NoError(t, err)
|
|
|
|
segment, err := testSatellite.Metainfo.Metabase.GetSegmentByPosition(ctx, metabase.GetSegmentByPosition{
|
|
StreamID: queueSegment.StreamID,
|
|
Position: queueSegment.Position,
|
|
})
|
|
require.NoError(t, err)
|
|
|
|
orderLimits, privateKey, _, err := testSatellite.Orders.Service.CreateAuditOrderLimits(ctx, queueSegment.Bucket(), segment, nil)
|
|
require.NoError(t, err)
|
|
require.GreaterOrEqual(t, len(orderLimits), 1)
|
|
|
|
// find any non-nil limit
|
|
var limit *pb.AddressedOrderLimit
|
|
var orderNum int
|
|
for i, orderLimit := range orderLimits {
|
|
if orderLimit != nil {
|
|
limit = orderLimit
|
|
orderNum = i
|
|
}
|
|
}
|
|
require.NotNil(t, limit)
|
|
|
|
// make it so that when the cached IP is dialed, we dial the "right" address,
|
|
// but when the "right" address is dialed (meaning it came from the OrderLimit,
|
|
// we dial something else!
|
|
cachedIPAndPort := "ohai i am the cached ip"
|
|
mock := &mockConnector{
|
|
dialInstead: map[string]string{
|
|
cachedIPAndPort: limit.StorageNodeAddress.Address,
|
|
limit.StorageNodeAddress.Address: "utter.failure?!*",
|
|
},
|
|
}
|
|
verifier := reformVerifierWithMockConnector(t, testSatellite, mock)
|
|
|
|
share, err := verifier.GetShare(ctx, limit, privateKey, cachedIPAndPort, 0, segment.Redundancy.ShareSize, orderNum)
|
|
require.NoError(t, err)
|
|
require.NoError(t, share.Error)
|
|
|
|
// we expect that the cached IP and port was actually dialed
|
|
require.Contains(t, mock.addressesDialed, cachedIPAndPort)
|
|
// and that the right address was never dialed directly
|
|
require.NotContains(t, mock.addressesDialed, limit.StorageNodeAddress.Address)
|
|
})
|
|
}
|