mirror of
https://github.com/ipfs/kubo.git
synced 2025-05-17 06:57:40 +08:00
100 lines
2.7 KiB
Go
100 lines
2.7 KiB
Go
package rpc
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/ipfs/go-cid"
|
|
ipld "github.com/ipfs/go-ipld-format"
|
|
mbase "github.com/multiformats/go-multibase"
|
|
mh "github.com/multiformats/go-multihash"
|
|
)
|
|
|
|
var randomSha256MH = mh.Multihash{0x12, 0x20, 0x88, 0x82, 0x73, 0x37, 0x7c, 0xc1, 0xc9, 0x96, 0xad, 0xee, 0xd, 0x26, 0x84, 0x2, 0xc9, 0xc9, 0x5c, 0xf9, 0x5c, 0x4d, 0x9b, 0xc3, 0x3f, 0xfb, 0x4a, 0xd8, 0xaf, 0x28, 0x6b, 0xca, 0x1a, 0xf2}
|
|
|
|
func doParseIpldNotFoundTest(t *testing.T, original error) {
|
|
originalMsg := original.Error()
|
|
|
|
rebuilt := parseErrNotFoundWithFallbackToMSG(originalMsg)
|
|
|
|
rebuiltMsg := rebuilt.Error()
|
|
|
|
if originalMsg != rebuiltMsg {
|
|
t.Errorf("expected message to be %q; got %q", originalMsg, rebuiltMsg)
|
|
}
|
|
|
|
originalNotFound := ipld.IsNotFound(original)
|
|
rebuiltNotFound := ipld.IsNotFound(rebuilt)
|
|
if originalNotFound != rebuiltNotFound {
|
|
t.Errorf("for %q expected Ipld.IsNotFound to be %t; got %t", originalMsg, originalNotFound, rebuiltNotFound)
|
|
}
|
|
}
|
|
|
|
func TestParseIPLDNotFound(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
if err := parseErrNotFoundWithFallbackToMSG(""); err != nil {
|
|
t.Errorf("expected empty string to give no error; got %T %q", err, err.Error())
|
|
}
|
|
|
|
cidBreaks := make([]string, len(cidBreakSet))
|
|
for i, v := range cidBreakSet {
|
|
cidBreaks[i] = "%w" + string(v)
|
|
}
|
|
|
|
base58BTCEncoder, err := mbase.NewEncoder(mbase.Base58BTC)
|
|
if err != nil {
|
|
t.Fatalf("expected to find Base58BTC encoder; got error %q", err.Error())
|
|
}
|
|
|
|
for _, wrap := range append(cidBreaks,
|
|
"",
|
|
"merkledag: %w",
|
|
"testing: %w the test",
|
|
"%w is wrong",
|
|
) {
|
|
for _, err := range [...]error{
|
|
errors.New("ipld: could not find "),
|
|
errors.New("ipld: could not find Bad_CID"),
|
|
errors.New("ipld: could not find " + cid.NewCidV1(cid.Raw, randomSha256MH).Encode(base58BTCEncoder)), // Test that we only accept CIDv0 and base32 CIDs
|
|
errors.New("network connection timeout"),
|
|
ipld.ErrNotFound{Cid: cid.Undef},
|
|
ipld.ErrNotFound{Cid: cid.NewCidV0(randomSha256MH)},
|
|
ipld.ErrNotFound{Cid: cid.NewCidV1(cid.Raw, randomSha256MH)},
|
|
} {
|
|
if wrap != "" {
|
|
err = fmt.Errorf(wrap, err)
|
|
}
|
|
|
|
doParseIpldNotFoundTest(t, err)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestBlockstoreNotFoundMatchingIPLDErrNotFound(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
if !ipld.IsNotFound(blockstoreNotFoundMatchingIPLDErrNotFound{}) {
|
|
t.Fatalf("expected blockstoreNotFoundMatchingIPLDErrNotFound to match ipld.IsNotFound; got false")
|
|
}
|
|
|
|
for _, wrap := range [...]string{
|
|
"",
|
|
"merkledag: %w",
|
|
"testing: %w the test",
|
|
"%w is wrong",
|
|
} {
|
|
for _, err := range [...]error{
|
|
errors.New("network connection timeout"),
|
|
blockstoreNotFoundMatchingIPLDErrNotFound{"blockstore: block not found"},
|
|
} {
|
|
if wrap != "" {
|
|
err = fmt.Errorf(wrap, err)
|
|
}
|
|
|
|
doParseIpldNotFoundTest(t, err)
|
|
}
|
|
}
|
|
}
|