mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-22 02:47:48 +08:00
206 lines
4.4 KiB
Go
206 lines
4.4 KiB
Go
package tests
|
|
|
|
import (
|
|
"context"
|
|
"io/ioutil"
|
|
"strings"
|
|
"testing"
|
|
|
|
coreiface "github.com/ipfs/go-ipfs/core/coreapi/interface"
|
|
opt "github.com/ipfs/go-ipfs/core/coreapi/interface/options"
|
|
|
|
mh "gx/ipfs/QmerPMzPk1mJVowm8KgmoknWa4yCYvvugMPsgWmDNUvDLW/go-multihash"
|
|
)
|
|
|
|
func (tp *provider) TestBlock(t *testing.T) {
|
|
tp.hasApi(t, func(api coreiface.CoreAPI) error {
|
|
if api.Block() == nil {
|
|
return apiNotImplemented
|
|
}
|
|
return nil
|
|
})
|
|
|
|
t.Run("TestBlockPut", tp.TestBlockPut)
|
|
t.Run("TestBlockPutFormat", tp.TestBlockPutFormat)
|
|
t.Run("TestBlockPutHash", tp.TestBlockPutHash)
|
|
t.Run("TestBlockGet", tp.TestBlockGet)
|
|
t.Run("TestBlockRm", tp.TestBlockRm)
|
|
t.Run("TestBlockStat", tp.TestBlockStat)
|
|
}
|
|
|
|
func (tp *provider) TestBlockPut(t *testing.T) {
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
api, err := tp.makeAPI(ctx)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
res, err := api.Block().Put(ctx, strings.NewReader(`Hello`))
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if res.Path().Cid().String() != "QmPyo15ynbVrSTVdJL9th7JysHaAbXt9dM9tXk1bMHbRtk" {
|
|
t.Errorf("got wrong cid: %s", res.Path().Cid().String())
|
|
}
|
|
}
|
|
|
|
func (tp *provider) TestBlockPutFormat(t *testing.T) {
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
api, err := tp.makeAPI(ctx)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
res, err := api.Block().Put(ctx, strings.NewReader(`Hello`), opt.Block.Format("cbor"))
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if res.Path().Cid().String() != "zdpuAn4amuLWo8Widi5v6VQpuo2dnpnwbVE3oB6qqs7mDSeoa" {
|
|
t.Errorf("got wrong cid: %s", res.Path().Cid().String())
|
|
}
|
|
}
|
|
|
|
func (tp *provider) TestBlockPutHash(t *testing.T) {
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
api, err := tp.makeAPI(ctx)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
res, err := api.Block().Put(ctx, strings.NewReader(`Hello`), opt.Block.Hash(mh.KECCAK_512, -1))
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if res.Path().Cid().String() != "zBurKB9YZkcDf6xa53WBE8CFX4ydVqAyf9KPXBFZt5stJzEstaS8Hukkhu4gwpMtc1xHNDbzP7sPtQKyWsP3C8fbhkmrZ" {
|
|
t.Errorf("got wrong cid: %s", res.Path().Cid().String())
|
|
}
|
|
}
|
|
|
|
func (tp *provider) TestBlockGet(t *testing.T) {
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
api, err := tp.makeAPI(ctx)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
res, err := api.Block().Put(ctx, strings.NewReader(`Hello`), opt.Block.Hash(mh.KECCAK_512, -1))
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
r, err := api.Block().Get(ctx, res.Path())
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
d, err := ioutil.ReadAll(r)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
if string(d) != "Hello" {
|
|
t.Error("didn't get correct data back")
|
|
}
|
|
|
|
p, err := coreiface.ParsePath("/ipfs/" + res.Path().Cid().String())
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
rp, err := api.ResolvePath(ctx, p)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if rp.Cid().String() != res.Path().Cid().String() {
|
|
t.Error("paths didn't match")
|
|
}
|
|
}
|
|
|
|
func (tp *provider) TestBlockRm(t *testing.T) {
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
api, err := tp.makeAPI(ctx)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
res, err := api.Block().Put(ctx, strings.NewReader(`Hello`))
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
r, err := api.Block().Get(ctx, res.Path())
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
d, err := ioutil.ReadAll(r)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
if string(d) != "Hello" {
|
|
t.Error("didn't get correct data back")
|
|
}
|
|
|
|
err = api.Block().Rm(ctx, res.Path())
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
_, err = api.Block().Get(ctx, res.Path())
|
|
if err == nil {
|
|
t.Error("expected err to exist")
|
|
}
|
|
if err.Error() != "blockservice: key not found" {
|
|
t.Errorf("unexpected error; %s", err.Error())
|
|
}
|
|
|
|
err = api.Block().Rm(ctx, res.Path())
|
|
if err == nil {
|
|
t.Error("expected err to exist")
|
|
}
|
|
if err.Error() != "blockstore: block not found" {
|
|
t.Errorf("unexpected error; %s", err.Error())
|
|
}
|
|
|
|
err = api.Block().Rm(ctx, res.Path(), opt.Block.Force(true))
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
}
|
|
|
|
func (tp *provider) TestBlockStat(t *testing.T) {
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
api, err := tp.makeAPI(ctx)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
res, err := api.Block().Put(ctx, strings.NewReader(`Hello`))
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
stat, err := api.Block().Stat(ctx, res.Path())
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
if stat.Path().String() != res.Path().String() {
|
|
t.Error("paths don't match")
|
|
}
|
|
|
|
if stat.Size() != len("Hello") {
|
|
t.Error("length doesn't match")
|
|
}
|
|
}
|