blocks_test.go 1.5 KB
Newer Older
1 2 3 4 5
package blockservice

import (
	"bytes"
	"testing"
Jeromy's avatar
Jeromy committed
6 7
	"time"

Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
8
	"github.com/jbenet/go-ipfs/Godeps/_workspace/src/code.google.com/p/go.net/context"
9
	ds "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-datastore"
10
	dssync "github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-datastore/sync"
11
	blocks "github.com/jbenet/go-ipfs/blocks"
12 13
	blockstore "github.com/jbenet/go-ipfs/blocks/blockstore"
	offline "github.com/jbenet/go-ipfs/exchange/offline"
14 15 16 17 18
	u "github.com/jbenet/go-ipfs/util"
)

func TestBlocks(t *testing.T) {
	d := ds.NewMapDatastore()
19 20
	tsds := dssync.MutexWrap(d)
	bs, err := New(blockstore.NewBlockstore(tsds), offline.Exchange())
21 22 23 24 25
	if err != nil {
		t.Error("failed to construct block service", err)
		return
	}

Jeromy's avatar
Jeromy committed
26
	b := blocks.NewBlock([]byte("beep boop"))
Juan Batiz-Benet's avatar
Juan Batiz-Benet committed
27
	h := u.Hash([]byte("beep boop"))
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
	if !bytes.Equal(b.Multihash, h) {
		t.Error("Block Multihash and data multihash not equal")
	}

	if b.Key() != u.Key(h) {
		t.Error("Block key and data multihash key not equal")
	}

	k, err := bs.AddBlock(b)
	if err != nil {
		t.Error("failed to add block to BlockService", err)
		return
	}

	if k != b.Key() {
		t.Error("returned key is not equal to block key", err)
	}

Jeromy's avatar
Jeromy committed
46 47
	ctx, _ := context.WithTimeout(context.TODO(), time.Second*5)
	b2, err := bs.GetBlock(ctx, b.Key())
48 49 50 51 52 53 54 55 56 57 58 59 60
	if err != nil {
		t.Error("failed to retrieve block from BlockService", err)
		return
	}

	if b.Key() != b2.Key() {
		t.Error("Block keys not equal.")
	}

	if !bytes.Equal(b.Data, b2.Data) {
		t.Error("Block data is not equal.")
	}
}