2018-06-19 15:00:15 +01:00
|
|
|
// Copyright (C) 2018 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
2018-12-04 20:18:26 +00:00
|
|
|
package overlay_test
|
2018-06-19 15:00:15 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2018-12-04 20:18:26 +00:00
|
|
|
"time"
|
2018-06-19 15:00:15 +01:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
|
2018-11-16 16:31:14 +00:00
|
|
|
"storj.io/storj/internal/testcontext"
|
2019-01-02 17:39:17 +00:00
|
|
|
"storj.io/storj/internal/testidentity"
|
2018-12-04 20:18:26 +00:00
|
|
|
"storj.io/storj/internal/testplanet"
|
|
|
|
"storj.io/storj/pkg/overlay"
|
2018-09-18 05:39:06 +01:00
|
|
|
"storj.io/storj/pkg/pb"
|
2018-11-29 18:39:27 +00:00
|
|
|
"storj.io/storj/pkg/storj"
|
2018-06-19 15:00:15 +01:00
|
|
|
)
|
|
|
|
|
2018-12-20 13:57:54 +00:00
|
|
|
func TestNewClient(t *testing.T) {
|
2018-11-16 16:31:14 +00:00
|
|
|
ctx := testcontext.New(t)
|
|
|
|
defer ctx.Cleanup()
|
|
|
|
|
2018-06-19 15:00:15 +01:00
|
|
|
cases := []struct {
|
|
|
|
address string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
address: "127.0.0.1:8080",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, v := range cases {
|
2018-11-29 18:39:27 +00:00
|
|
|
ca, err := testidentity.NewTestCA(ctx)
|
2018-08-24 05:01:03 +01:00
|
|
|
assert.NoError(t, err)
|
|
|
|
identity, err := ca.NewIdentity()
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
2018-12-20 13:57:54 +00:00
|
|
|
oc, err := overlay.NewClient(identity, v.address)
|
2018-06-19 15:00:15 +01:00
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
assert.NotNil(t, oc)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestChoose(t *testing.T) {
|
2018-12-17 18:47:26 +00:00
|
|
|
n1 := &pb.Node{Id: storj.NodeID{1}, Type: pb.NodeType_STORAGE}
|
|
|
|
n2 := &pb.Node{Id: storj.NodeID{2}, Type: pb.NodeType_STORAGE}
|
|
|
|
n3 := &pb.Node{Id: storj.NodeID{3}, Type: pb.NodeType_STORAGE}
|
|
|
|
n4 := &pb.Node{Id: storj.NodeID{4}, Type: pb.NodeType_STORAGE}
|
|
|
|
n5 := &pb.Node{Id: storj.NodeID{5}, Type: pb.NodeType_STORAGE}
|
|
|
|
n6 := &pb.Node{Id: storj.NodeID{6}, Type: pb.NodeType_STORAGE}
|
|
|
|
n7 := &pb.Node{Id: storj.NodeID{7}, Type: pb.NodeType_STORAGE}
|
|
|
|
n8 := &pb.Node{Id: storj.NodeID{8}, Type: pb.NodeType_STORAGE}
|
|
|
|
|
|
|
|
id1 := storj.NodeID{1}
|
|
|
|
id2 := storj.NodeID{2}
|
|
|
|
id3 := storj.NodeID{3}
|
|
|
|
id4 := storj.NodeID{4}
|
|
|
|
|
2018-11-16 16:31:14 +00:00
|
|
|
ctx := testcontext.New(t)
|
|
|
|
defer ctx.Cleanup()
|
|
|
|
|
2018-12-04 20:18:26 +00:00
|
|
|
planet, cleanup := getPlanet(ctx, t)
|
|
|
|
defer cleanup()
|
|
|
|
oc := getOverlayClient(t, planet)
|
|
|
|
|
2018-06-19 15:00:15 +01:00
|
|
|
cases := []struct {
|
2018-12-04 20:18:26 +00:00
|
|
|
limit int
|
|
|
|
space int64
|
|
|
|
bandwidth int64
|
|
|
|
uptime float64
|
|
|
|
uptimeCount int64
|
|
|
|
auditSuccess float64
|
|
|
|
auditCount int64
|
|
|
|
allNodes []*pb.Node
|
|
|
|
excluded storj.NodeIDList
|
2018-06-19 15:00:15 +01:00
|
|
|
}{
|
|
|
|
{
|
2018-12-04 20:18:26 +00:00
|
|
|
limit: 4,
|
|
|
|
space: 0,
|
|
|
|
bandwidth: 0,
|
|
|
|
uptime: 0,
|
|
|
|
uptimeCount: 0,
|
|
|
|
auditSuccess: 0,
|
|
|
|
auditCount: 0,
|
2018-12-17 18:47:26 +00:00
|
|
|
allNodes: []*pb.Node{n1, n2, n3, n4, n5, n6, n7, n8},
|
|
|
|
excluded: storj.NodeIDList{id1, id2, id3, id4},
|
2018-06-19 15:00:15 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, v := range cases {
|
2018-12-04 20:18:26 +00:00
|
|
|
newNodes, err := oc.Choose(ctx, overlay.Options{
|
|
|
|
Amount: v.limit,
|
|
|
|
Space: v.space,
|
|
|
|
Uptime: v.uptime,
|
|
|
|
UptimeCount: v.uptimeCount,
|
|
|
|
AuditSuccess: v.auditSuccess,
|
|
|
|
AuditCount: v.auditCount,
|
|
|
|
Excluded: v.excluded,
|
|
|
|
})
|
2018-06-19 15:00:15 +01:00
|
|
|
assert.NoError(t, err)
|
|
|
|
|
2018-12-04 20:18:26 +00:00
|
|
|
excludedNodes := make(map[storj.NodeID]bool)
|
|
|
|
for _, e := range v.excluded {
|
|
|
|
excludedNodes[e] = true
|
2018-10-19 15:05:31 +01:00
|
|
|
}
|
2018-12-04 20:18:26 +00:00
|
|
|
assert.Len(t, newNodes, v.limit)
|
|
|
|
for _, n := range newNodes {
|
|
|
|
assert.NotContains(t, excludedNodes, n.Id)
|
|
|
|
assert.True(t, n.GetRestrictions().GetFreeDisk() >= v.space)
|
|
|
|
assert.True(t, n.GetRestrictions().GetFreeBandwidth() >= v.bandwidth)
|
|
|
|
assert.True(t, n.GetReputation().GetUptimeRatio() >= v.uptime)
|
|
|
|
assert.True(t, n.GetReputation().GetUptimeCount() >= v.uptimeCount)
|
|
|
|
assert.True(t, n.GetReputation().GetAuditSuccessRatio() >= v.auditSuccess)
|
|
|
|
assert.True(t, n.GetReputation().GetAuditCount() >= v.auditCount)
|
2018-06-19 15:00:15 +01:00
|
|
|
|
2018-10-19 15:05:31 +01:00
|
|
|
}
|
2018-06-19 15:00:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestLookup(t *testing.T) {
|
2018-11-16 16:31:14 +00:00
|
|
|
ctx := testcontext.New(t)
|
|
|
|
defer ctx.Cleanup()
|
|
|
|
|
2018-12-04 20:18:26 +00:00
|
|
|
planet, cleanup := getPlanet(ctx, t)
|
|
|
|
defer cleanup()
|
|
|
|
oc := getOverlayClient(t, planet)
|
|
|
|
|
|
|
|
nid1 := planet.StorageNodes[0].ID()
|
|
|
|
|
2018-06-19 15:00:15 +01:00
|
|
|
cases := []struct {
|
2018-12-04 20:18:26 +00:00
|
|
|
nodeID storj.NodeID
|
|
|
|
expectErr bool
|
2018-06-19 15:00:15 +01:00
|
|
|
}{
|
|
|
|
{
|
2018-12-04 20:18:26 +00:00
|
|
|
nodeID: nid1,
|
|
|
|
expectErr: false,
|
|
|
|
},
|
|
|
|
{
|
2018-12-17 18:47:26 +00:00
|
|
|
nodeID: storj.NodeID{1},
|
2018-12-04 20:18:26 +00:00
|
|
|
expectErr: true,
|
2018-06-19 15:00:15 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, v := range cases {
|
2018-12-04 20:18:26 +00:00
|
|
|
n, err := oc.Lookup(ctx, v.nodeID)
|
|
|
|
if v.expectErr {
|
|
|
|
assert.Error(t, err)
|
|
|
|
} else {
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, n.Id.String(), v.nodeID.String())
|
|
|
|
}
|
2018-06-19 15:00:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2018-11-16 16:31:14 +00:00
|
|
|
|
2018-09-11 05:52:14 +01:00
|
|
|
func TestBulkLookup(t *testing.T) {
|
2018-11-16 16:31:14 +00:00
|
|
|
ctx := testcontext.New(t)
|
|
|
|
defer ctx.Cleanup()
|
|
|
|
|
2018-12-04 20:18:26 +00:00
|
|
|
planet, cleanup := getPlanet(ctx, t)
|
|
|
|
defer cleanup()
|
|
|
|
oc := getOverlayClient(t, planet)
|
|
|
|
|
|
|
|
nid1 := planet.StorageNodes[0].ID()
|
|
|
|
nid2 := planet.StorageNodes[1].ID()
|
|
|
|
nid3 := planet.StorageNodes[2].ID()
|
|
|
|
|
2018-09-11 05:52:14 +01:00
|
|
|
cases := []struct {
|
2018-11-29 18:39:27 +00:00
|
|
|
nodeIDs storj.NodeIDList
|
2018-09-11 05:52:14 +01:00
|
|
|
expectedCalls int
|
|
|
|
}{
|
|
|
|
{
|
2018-12-04 20:18:26 +00:00
|
|
|
nodeIDs: storj.NodeIDList{nid1, nid2, nid3},
|
2018-09-11 05:52:14 +01:00
|
|
|
expectedCalls: 1,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, v := range cases {
|
2018-12-04 20:18:26 +00:00
|
|
|
resNodes, err := oc.BulkLookup(ctx, v.nodeIDs)
|
2018-09-11 05:52:14 +01:00
|
|
|
assert.NoError(t, err)
|
2018-12-04 20:18:26 +00:00
|
|
|
for i, n := range resNodes {
|
|
|
|
assert.Equal(t, n.Id, v.nodeIDs[i])
|
|
|
|
}
|
|
|
|
assert.Equal(t, len(resNodes), len(v.nodeIDs))
|
2018-09-11 05:52:14 +01:00
|
|
|
}
|
|
|
|
}
|
2018-11-16 16:31:14 +00:00
|
|
|
|
2018-09-11 05:52:14 +01:00
|
|
|
func TestBulkLookupV2(t *testing.T) {
|
2018-11-16 16:31:14 +00:00
|
|
|
ctx := testcontext.New(t)
|
|
|
|
defer ctx.Cleanup()
|
2018-09-11 08:27:12 +01:00
|
|
|
|
2018-12-04 20:18:26 +00:00
|
|
|
planet, cleanup := getPlanet(ctx, t)
|
|
|
|
defer cleanup()
|
|
|
|
oc := getOverlayClient(t, planet)
|
2018-09-11 05:52:14 +01:00
|
|
|
|
2018-12-04 20:18:26 +00:00
|
|
|
cache := planet.Satellites[0].Overlay
|
2018-12-17 18:47:26 +00:00
|
|
|
|
|
|
|
nid1 := storj.NodeID{1}
|
|
|
|
nid2 := storj.NodeID{2}
|
|
|
|
nid3 := storj.NodeID{3}
|
|
|
|
nid4 := storj.NodeID{4}
|
|
|
|
nid5 := storj.NodeID{5}
|
|
|
|
|
|
|
|
n1 := &pb.Node{Id: storj.NodeID{1}}
|
|
|
|
n2 := &pb.Node{Id: storj.NodeID{2}}
|
|
|
|
n3 := &pb.Node{Id: storj.NodeID{3}}
|
|
|
|
|
2018-09-18 05:39:06 +01:00
|
|
|
nodes := []*pb.Node{n1, n2, n3}
|
2018-09-11 05:52:14 +01:00
|
|
|
for _, n := range nodes {
|
2018-12-04 20:18:26 +00:00
|
|
|
assert.NoError(t, cache.Put(ctx, n.Id, *n))
|
2018-09-11 05:52:14 +01:00
|
|
|
}
|
|
|
|
|
2018-11-16 16:31:14 +00:00
|
|
|
{ // empty id
|
2018-11-29 18:39:27 +00:00
|
|
|
_, err := oc.BulkLookup(ctx, storj.NodeIDList{})
|
2018-11-16 16:31:14 +00:00
|
|
|
assert.Error(t, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
{ // valid ids
|
2018-12-04 20:18:26 +00:00
|
|
|
idList := storj.NodeIDList{nid1, nid2, nid3}
|
|
|
|
ns, err := oc.BulkLookup(ctx, idList)
|
2018-11-16 16:31:14 +00:00
|
|
|
assert.NoError(t, err)
|
2018-12-04 20:18:26 +00:00
|
|
|
|
|
|
|
for i, n := range ns {
|
|
|
|
assert.Equal(t, n.Id, idList[i])
|
|
|
|
}
|
2018-09-11 05:52:14 +01:00
|
|
|
}
|
2018-11-16 16:31:14 +00:00
|
|
|
|
|
|
|
{ // missing ids
|
2018-12-04 20:18:26 +00:00
|
|
|
idList := storj.NodeIDList{nid4, nid5}
|
|
|
|
ns, err := oc.BulkLookup(ctx, idList)
|
2018-11-16 16:31:14 +00:00
|
|
|
assert.NoError(t, err)
|
2018-12-04 20:18:26 +00:00
|
|
|
|
2018-11-16 16:31:14 +00:00
|
|
|
assert.Equal(t, []*pb.Node{nil, nil}, ns)
|
|
|
|
}
|
|
|
|
|
|
|
|
{ // different order and missing
|
2018-12-04 20:18:26 +00:00
|
|
|
idList := storj.NodeIDList{nid3, nid4, nid1, nid2, nid5}
|
|
|
|
ns, err := oc.BulkLookup(ctx, idList)
|
2018-11-16 16:31:14 +00:00
|
|
|
assert.NoError(t, err)
|
2018-12-04 20:18:26 +00:00
|
|
|
|
|
|
|
expectedNodes := []*pb.Node{n3, nil, n1, n2, nil}
|
|
|
|
for i, n := range ns {
|
|
|
|
if n == nil {
|
|
|
|
assert.Nil(t, expectedNodes[i])
|
|
|
|
} else {
|
|
|
|
assert.Equal(t, n.Id, expectedNodes[i].Id)
|
|
|
|
}
|
|
|
|
}
|
2018-09-11 05:52:14 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-04 20:18:26 +00:00
|
|
|
func getPlanet(ctx *testcontext.Context, t *testing.T) (planet *testplanet.Planet, f func()) {
|
|
|
|
planet, err := testplanet.New(t, 1, 4, 1)
|
2018-09-11 05:52:14 +01:00
|
|
|
if err != nil {
|
2018-12-04 20:18:26 +00:00
|
|
|
t.Fatal(err)
|
2018-09-11 05:52:14 +01:00
|
|
|
}
|
|
|
|
|
2018-12-04 20:18:26 +00:00
|
|
|
planet.Start(ctx)
|
|
|
|
// we wait a second for all the nodes to complete bootstrapping off the satellite
|
|
|
|
time.Sleep(2 * time.Second)
|
2018-09-11 05:52:14 +01:00
|
|
|
|
2018-12-04 20:18:26 +00:00
|
|
|
f = func() {
|
|
|
|
ctx.Check(planet.Shutdown)
|
|
|
|
}
|
2018-09-11 05:52:14 +01:00
|
|
|
|
2018-12-04 20:18:26 +00:00
|
|
|
return planet, f
|
2018-09-11 05:52:14 +01:00
|
|
|
}
|
2018-09-11 08:27:12 +01:00
|
|
|
|
2018-12-04 20:18:26 +00:00
|
|
|
func getOverlayClient(t *testing.T, planet *testplanet.Planet) (oc overlay.Client) {
|
|
|
|
oc, err := planet.Uplinks[0].DialOverlay(planet.Satellites[0])
|
2018-08-24 05:01:03 +01:00
|
|
|
if err != nil {
|
2018-12-04 20:18:26 +00:00
|
|
|
t.Fatal(err)
|
2018-08-24 05:01:03 +01:00
|
|
|
}
|
|
|
|
|
2018-12-04 20:18:26 +00:00
|
|
|
return oc
|
2018-09-11 05:52:14 +01:00
|
|
|
}
|