mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-24 20:07:45 +08:00
99 lines
1.8 KiB
Go
99 lines
1.8 KiB
Go
package blocks
|
|
|
|
import (
|
|
"bytes"
|
|
"testing"
|
|
|
|
mh "gx/ipfs/QmVGtdTZdTFaLsaj2RwdVG8jcjNNcp1DE914DKZ2kHmXHw/go-multihash"
|
|
u "gx/ipfs/QmWbjfz3u6HkAdPh34dgPchGbQjob6LXLhAeCGii2TX69n/go-ipfs-util"
|
|
cid "gx/ipfs/QmYhQaCYEcaPPjxJX7YcPcVKkQfRy6sJ7B3XmGFk82XYdQ/go-cid"
|
|
)
|
|
|
|
func TestBlocksBasic(t *testing.T) {
|
|
|
|
// Test empty data
|
|
empty := []byte{}
|
|
NewBlock(empty)
|
|
|
|
// Test nil case
|
|
NewBlock(nil)
|
|
|
|
// Test some data
|
|
NewBlock([]byte("Hello world!"))
|
|
}
|
|
|
|
func TestData(t *testing.T) {
|
|
data := []byte("some data")
|
|
block := NewBlock(data)
|
|
|
|
if !bytes.Equal(block.RawData(), data) {
|
|
t.Error("data is wrong")
|
|
}
|
|
}
|
|
|
|
func TestHash(t *testing.T) {
|
|
data := []byte("some other data")
|
|
block := NewBlock(data)
|
|
|
|
hash, err := mh.Sum(data, mh.SHA2_256, -1)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if !bytes.Equal(block.Multihash(), hash) {
|
|
t.Error("wrong multihash")
|
|
}
|
|
}
|
|
|
|
func TestCid(t *testing.T) {
|
|
data := []byte("yet another data")
|
|
block := NewBlock(data)
|
|
c := block.Cid()
|
|
|
|
if !bytes.Equal(block.Multihash(), c.Hash()) {
|
|
t.Error("key contains wrong data")
|
|
}
|
|
}
|
|
|
|
func TestManualHash(t *testing.T) {
|
|
oldDebugState := u.Debug
|
|
defer (func() {
|
|
u.Debug = oldDebugState
|
|
})()
|
|
|
|
data := []byte("I can't figure out more names .. data")
|
|
hash, err := mh.Sum(data, mh.SHA2_256, -1)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
c := cid.NewCidV0(hash)
|
|
|
|
u.Debug = false
|
|
block, err := NewBlockWithCid(data, c)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if !bytes.Equal(block.Multihash(), hash) {
|
|
t.Error("wrong multihash")
|
|
}
|
|
|
|
data[5] = byte((uint32(data[5]) + 5) % 256) // Transfrom hash to be different
|
|
block, err = NewBlockWithCid(data, c)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if !bytes.Equal(block.Multihash(), hash) {
|
|
t.Error("wrong multihash")
|
|
}
|
|
|
|
u.Debug = true
|
|
|
|
_, err = NewBlockWithCid(data, c)
|
|
if err != ErrWrongHash {
|
|
t.Fatal(err)
|
|
}
|
|
}
|