6463b87ebe
* add errcheck * fixed linter errors * fixes * errcheck fixes in pkg/paths * Fix errchecks in PieceID.Derive * Fix ecclient tests * Move closeConn a little bit above in the exectution flow * fix new lint errors * Fatalf -> Printf * address eclipsed errors * rename err to closeErr * rename err to closeErr for differentiation
44 lines
925 B
Go
44 lines
925 B
Go
// Copyright (C) 2018 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package client
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mr-tron/base58/base58"
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"storj.io/storj/pkg/kademlia"
|
|
)
|
|
|
|
func TestNewPieceID(t *testing.T) {
|
|
t.Run("should return an id string", func(t *testing.T) {
|
|
assert := assert.New(t)
|
|
id := NewPieceID()
|
|
assert.Equal(id.IsValid(), true)
|
|
})
|
|
|
|
t.Run("should return a different string on each call", func(t *testing.T) {
|
|
assert := assert.New(t)
|
|
assert.NotEqual(NewPieceID(), NewPieceID())
|
|
})
|
|
}
|
|
|
|
func TestDerivePieceID(t *testing.T) {
|
|
pid := NewPieceID()
|
|
nid, err := kademlia.NewID()
|
|
assert.NoError(t, err)
|
|
|
|
did, err := pid.Derive(nid.Bytes())
|
|
assert.NoError(t, err)
|
|
assert.NotEqual(t, pid, did)
|
|
|
|
did2, err := pid.Derive(nid.Bytes())
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, did, did2)
|
|
|
|
_, err = base58.Decode(did.String())
|
|
assert.NoError(t, err)
|
|
}
|