690e8b2061
* draft * still errors * double close fix * added tests * weird, goimports must not be working * renames * missed one * forgot to save:
27 lines
761 B
Go
27 lines
761 B
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package kademlia_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"storj.io/storj/internal/testcontext"
|
|
"storj.io/storj/internal/testplanet"
|
|
)
|
|
|
|
func TestFetchPeerIdentity(t *testing.T) {
|
|
testplanet.Run(t, testplanet.Config{
|
|
SatelliteCount: 1, StorageNodeCount: 1, UplinkCount: 0,
|
|
}, func(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet) {
|
|
sat := planet.Satellites[0]
|
|
peerID, err := planet.StorageNodes[0].Kademlia.Service.FetchPeerIdentity(ctx, sat.ID())
|
|
require.NoError(t, err)
|
|
require.Equal(t, sat.ID(), peerID.ID)
|
|
require.True(t, sat.Identity.Leaf.Equal(peerID.Leaf))
|
|
require.True(t, sat.Identity.CA.Equal(peerID.CA))
|
|
})
|
|
}
|