2019-01-24 20:15:10 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
2018-10-02 20:46:29 +01:00
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
2019-01-18 13:54:08 +00:00
|
|
|
package checker_test
|
2018-10-09 17:09:33 +01:00
|
|
|
|
|
|
|
import (
|
2019-02-14 12:33:41 +00:00
|
|
|
"fmt"
|
2018-10-09 17:09:33 +01:00
|
|
|
"testing"
|
2018-10-30 19:16:40 +00:00
|
|
|
"time"
|
2018-10-09 17:09:33 +01:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2019-02-14 12:33:41 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2018-11-29 14:57:00 +00:00
|
|
|
|
2019-01-18 13:54:08 +00:00
|
|
|
"storj.io/storj/internal/testcontext"
|
|
|
|
"storj.io/storj/internal/testplanet"
|
2019-03-18 10:55:06 +00:00
|
|
|
"storj.io/storj/internal/teststorj"
|
2018-10-09 17:09:33 +01:00
|
|
|
"storj.io/storj/pkg/pb"
|
2018-11-29 18:39:27 +00:00
|
|
|
"storj.io/storj/pkg/storj"
|
2019-02-06 13:03:38 +00:00
|
|
|
"storj.io/storj/storage"
|
2018-10-09 17:09:33 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestIdentifyInjuredSegments(t *testing.T) {
|
2019-02-05 16:00:52 +00:00
|
|
|
testplanet.Run(t, testplanet.Config{
|
|
|
|
SatelliteCount: 1, StorageNodeCount: 4, UplinkCount: 0,
|
|
|
|
}, func(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet) {
|
2019-02-11 21:06:39 +00:00
|
|
|
checker := planet.Satellites[0].Repair.Checker
|
2019-02-14 12:33:41 +00:00
|
|
|
checker.Loop.Stop()
|
2019-02-05 16:00:52 +00:00
|
|
|
|
2019-02-14 12:33:41 +00:00
|
|
|
//add noise to pointerdb before bad record
|
|
|
|
for x := 0; x < 1000; x++ {
|
|
|
|
makePointer(t, planet, fmt.Sprintf("a-%d", x), false)
|
2019-02-05 16:00:52 +00:00
|
|
|
}
|
2019-02-14 12:33:41 +00:00
|
|
|
//create piece that needs repair
|
|
|
|
makePointer(t, planet, fmt.Sprintf("b"), true)
|
|
|
|
//add more noise to pointerdb after bad record
|
|
|
|
for x := 0; x < 1000; x++ {
|
|
|
|
makePointer(t, planet, fmt.Sprintf("c-%d", x), false)
|
2019-01-18 13:54:08 +00:00
|
|
|
}
|
2019-02-14 12:33:41 +00:00
|
|
|
err := checker.IdentifyInjuredSegments(ctx)
|
2019-02-05 16:00:52 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
//check if the expected segments were added to the queue
|
|
|
|
repairQueue := planet.Satellites[0].DB.RepairQueue()
|
|
|
|
injuredSegment, err := repairQueue.Dequeue(ctx)
|
|
|
|
assert.NoError(t, err)
|
2018-12-06 18:51:23 +00:00
|
|
|
|
2019-02-14 12:33:41 +00:00
|
|
|
numValidNode := int32(len(planet.StorageNodes))
|
|
|
|
assert.Equal(t, "b", injuredSegment.Path)
|
|
|
|
assert.Equal(t, len(planet.StorageNodes), len(injuredSegment.LostPieces))
|
2019-02-05 16:00:52 +00:00
|
|
|
for _, lostPiece := range injuredSegment.LostPieces {
|
2019-02-14 12:33:41 +00:00
|
|
|
// makePointer() starts with numValidNode good pieces
|
|
|
|
assert.True(t, lostPiece >= numValidNode, fmt.Sprintf("%d >= %d \n", lostPiece, numValidNode))
|
|
|
|
// makePointer() than has numValidNode bad pieces
|
|
|
|
assert.True(t, lostPiece < numValidNode*2, fmt.Sprintf("%d < %d \n", lostPiece, numValidNode*2))
|
2019-02-05 16:00:52 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2018-10-09 17:09:33 +01:00
|
|
|
|
2019-02-05 16:00:52 +00:00
|
|
|
func TestOfflineNodes(t *testing.T) {
|
|
|
|
testplanet.Run(t, testplanet.Config{
|
|
|
|
SatelliteCount: 1, StorageNodeCount: 4, UplinkCount: 0,
|
|
|
|
}, func(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet) {
|
2019-02-11 21:06:39 +00:00
|
|
|
checker := planet.Satellites[0].Repair.Checker
|
2019-02-14 12:33:41 +00:00
|
|
|
checker.Loop.Stop()
|
2018-10-09 17:09:33 +01:00
|
|
|
|
2019-02-05 16:00:52 +00:00
|
|
|
const numberOfNodes = 10
|
|
|
|
nodeIDs := storj.NodeIDList{}
|
2018-12-06 18:51:23 +00:00
|
|
|
|
2019-02-05 16:00:52 +00:00
|
|
|
// use online nodes
|
|
|
|
for _, storagenode := range planet.StorageNodes {
|
|
|
|
nodeIDs = append(nodeIDs, storagenode.Identity.ID)
|
|
|
|
}
|
2018-10-09 17:09:33 +01:00
|
|
|
|
2019-02-05 16:00:52 +00:00
|
|
|
// simulate offline nodes
|
|
|
|
expectedOffline := make([]int32, 0)
|
|
|
|
for i := len(nodeIDs); i < numberOfNodes; i++ {
|
|
|
|
nodeIDs = append(nodeIDs, storj.NodeID{byte(i)})
|
|
|
|
expectedOffline = append(expectedOffline, int32(i))
|
2018-10-09 17:09:33 +01:00
|
|
|
}
|
2019-02-05 16:00:52 +00:00
|
|
|
|
|
|
|
offline, err := checker.OfflineNodes(ctx, nodeIDs)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, expectedOffline, offline)
|
|
|
|
})
|
2018-10-09 17:09:33 +01:00
|
|
|
}
|
2019-02-06 13:03:38 +00:00
|
|
|
|
|
|
|
func TestIdentifyIrreparableSegments(t *testing.T) {
|
|
|
|
testplanet.Run(t, testplanet.Config{
|
|
|
|
SatelliteCount: 1, StorageNodeCount: 3, UplinkCount: 0,
|
|
|
|
}, func(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet) {
|
2019-02-11 21:06:39 +00:00
|
|
|
checker := planet.Satellites[0].Repair.Checker
|
2019-02-14 12:33:41 +00:00
|
|
|
checker.Loop.Stop()
|
2019-02-06 13:03:38 +00:00
|
|
|
|
|
|
|
const numberOfNodes = 10
|
|
|
|
pieces := make([]*pb.RemotePiece, 0, numberOfNodes)
|
|
|
|
// use online nodes
|
|
|
|
for i, storagenode := range planet.StorageNodes {
|
|
|
|
pieces = append(pieces, &pb.RemotePiece{
|
|
|
|
PieceNum: int32(i),
|
|
|
|
NodeId: storagenode.ID(),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// simulate offline nodes
|
|
|
|
expectedLostPieces := make(map[int32]bool)
|
|
|
|
for i := len(pieces); i < numberOfNodes; i++ {
|
|
|
|
pieces = append(pieces, &pb.RemotePiece{
|
|
|
|
PieceNum: int32(i),
|
|
|
|
NodeId: storj.NodeID{byte(i)},
|
|
|
|
})
|
|
|
|
expectedLostPieces[int32(i)] = true
|
|
|
|
}
|
|
|
|
pointer := &pb.Pointer{
|
|
|
|
Remote: &pb.RemoteSegment{
|
|
|
|
Redundancy: &pb.RedundancyScheme{
|
|
|
|
MinReq: int32(4),
|
|
|
|
RepairThreshold: int32(8),
|
|
|
|
},
|
2019-03-18 10:55:06 +00:00
|
|
|
RootPieceId: teststorj.PieceIDFromString("fake-piece-id"),
|
2019-02-06 13:03:38 +00:00
|
|
|
RemotePieces: pieces,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
// put test pointer to db
|
|
|
|
pointerdb := planet.Satellites[0].Metainfo.Service
|
2019-03-18 10:55:06 +00:00
|
|
|
err := pointerdb.Put("fake-piece-id", pointer)
|
2019-02-06 13:03:38 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
err = checker.IdentifyInjuredSegments(ctx)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
// check if nothing was added to repair queue
|
|
|
|
repairQueue := planet.Satellites[0].DB.RepairQueue()
|
|
|
|
_, err = repairQueue.Dequeue(ctx)
|
|
|
|
assert.True(t, storage.ErrEmptyQueue.Has(err))
|
|
|
|
|
|
|
|
//check if the expected segments were added to the irreparable DB
|
|
|
|
irreparable := planet.Satellites[0].DB.Irreparable()
|
|
|
|
remoteSegmentInfo, err := irreparable.Get(ctx, []byte("fake-piece-id"))
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
2019-03-15 20:21:52 +00:00
|
|
|
assert.Equal(t, len(expectedLostPieces), int(remoteSegmentInfo.LostPieces))
|
2019-02-06 13:03:38 +00:00
|
|
|
assert.Equal(t, 1, int(remoteSegmentInfo.RepairAttemptCount))
|
2019-03-15 20:21:52 +00:00
|
|
|
firstRepair := remoteSegmentInfo.LastRepairAttempt
|
2019-02-06 13:03:38 +00:00
|
|
|
|
|
|
|
// check irreparable once again but wait a second
|
|
|
|
time.Sleep(1 * time.Second)
|
|
|
|
err = checker.IdentifyInjuredSegments(ctx)
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
remoteSegmentInfo, err = irreparable.Get(ctx, []byte("fake-piece-id"))
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
2019-03-15 20:21:52 +00:00
|
|
|
assert.Equal(t, len(expectedLostPieces), int(remoteSegmentInfo.LostPieces))
|
2019-02-06 13:03:38 +00:00
|
|
|
// check if repair attempt count was incremented
|
|
|
|
assert.Equal(t, 2, int(remoteSegmentInfo.RepairAttemptCount))
|
2019-03-15 20:21:52 +00:00
|
|
|
assert.True(t, firstRepair < remoteSegmentInfo.LastRepairAttempt)
|
2019-02-06 13:03:38 +00:00
|
|
|
})
|
|
|
|
}
|
2019-02-14 12:33:41 +00:00
|
|
|
|
|
|
|
func makePointer(t *testing.T, planet *testplanet.Planet, pieceID string, createLost bool) {
|
|
|
|
numOfStorageNodes := len(planet.StorageNodes)
|
|
|
|
pieces := make([]*pb.RemotePiece, 0, numOfStorageNodes)
|
|
|
|
// use online nodes
|
|
|
|
for i := 0; i < numOfStorageNodes; i++ {
|
|
|
|
pieces = append(pieces, &pb.RemotePiece{
|
|
|
|
PieceNum: int32(i),
|
|
|
|
NodeId: planet.StorageNodes[i].Identity.ID,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
// simulate offline nodes equal to the number of online nodes
|
|
|
|
if createLost {
|
|
|
|
for i := 0; i < numOfStorageNodes; i++ {
|
|
|
|
pieces = append(pieces, &pb.RemotePiece{
|
|
|
|
PieceNum: int32(numOfStorageNodes + i),
|
|
|
|
NodeId: storj.NodeID{byte(i)},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
minReq, repairThreshold := numOfStorageNodes-1, numOfStorageNodes-1
|
|
|
|
if createLost {
|
|
|
|
minReq, repairThreshold = numOfStorageNodes-1, numOfStorageNodes+1
|
|
|
|
}
|
|
|
|
pointer := &pb.Pointer{
|
|
|
|
Remote: &pb.RemoteSegment{
|
|
|
|
Redundancy: &pb.RedundancyScheme{
|
|
|
|
MinReq: int32(minReq),
|
|
|
|
RepairThreshold: int32(repairThreshold),
|
|
|
|
},
|
2019-03-18 10:55:06 +00:00
|
|
|
RootPieceId: teststorj.PieceIDFromString(pieceID),
|
2019-02-14 12:33:41 +00:00
|
|
|
RemotePieces: pieces,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
// put test pointer to db
|
|
|
|
pointerdb := planet.Satellites[0].Metainfo.Service
|
2019-03-18 10:55:06 +00:00
|
|
|
err := pointerdb.Put(pieceID, pointer)
|
2019-02-14 12:33:41 +00:00
|
|
|
require.NoError(t, err)
|
|
|
|
}
|