2019-01-24 20:15:10 +00:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
2018-12-14 19:23:54 +00:00
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
package discovery_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
|
|
|
|
"storj.io/storj/internal/testcontext"
|
|
|
|
"storj.io/storj/internal/testplanet"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestCache_Refresh(t *testing.T) {
|
2019-02-05 17:03:16 +00:00
|
|
|
testplanet.Run(t, testplanet.Config{
|
|
|
|
SatelliteCount: 1, StorageNodeCount: 10, UplinkCount: 0,
|
|
|
|
}, func(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet) {
|
|
|
|
satellite := planet.Satellites[0]
|
|
|
|
for _, storageNode := range planet.StorageNodes {
|
|
|
|
node, err := satellite.Overlay.Service.Get(ctx, storageNode.ID())
|
|
|
|
if assert.NoError(t, err) {
|
|
|
|
assert.Equal(t, storageNode.Addr(), node.Address.Address)
|
|
|
|
}
|
2019-01-30 20:29:33 +00:00
|
|
|
}
|
2019-02-05 17:03:16 +00:00
|
|
|
})
|
2018-12-14 19:23:54 +00:00
|
|
|
}
|