Skip to content

Commit

Permalink
Additional queue tests
Browse files Browse the repository at this point in the history
License: MIT
Signed-off-by: Erik Ingenito <[email protected]>
  • Loading branch information
Erik Ingenito committed Mar 16, 2019
1 parent 6c1eca9 commit 47fb37f
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 16 deletions.
19 changes: 9 additions & 10 deletions provider/provider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,15 @@ type mockRouting struct {
provided chan cid.Cid
}

func (r *mockRouting) Provide(ctx context.Context, cid cid.Cid, recursive bool) error {
r.provided <- cid
return nil
}

func (r *mockRouting) FindProvidersAsync(ctx context.Context, cid cid.Cid, timeout int) <-chan pstore.PeerInfo {
return nil
}

func mockContentRouting() *mockRouting {
r := mockRouting{}
r.provided = make(chan cid.Cid)
Expand Down Expand Up @@ -68,13 +77,3 @@ func TestAnnouncement(t *testing.T) {
}
}
}

func (r *mockRouting) Provide(ctx context.Context, cid cid.Cid, recursive bool) error {
r.provided <- cid
return nil
}

// Search for peers who are able to provide a given key
func (r *mockRouting) FindProvidersAsync(ctx context.Context, cid cid.Cid, timeout int) <-chan pstore.PeerInfo {
return nil
}
11 changes: 6 additions & 5 deletions provider/queue.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@ package provider

import (
"context"
"github.com/ipfs/go-cid"
"github.com/ipfs/go-datastore"
"github.com/ipfs/go-datastore/namespace"
"github.com/ipfs/go-datastore/query"
"math"
"strconv"
"strings"

cid "github.com/ipfs/go-cid"
datastore "github.com/ipfs/go-datastore"
namespace "github.com/ipfs/go-datastore/namespace"
query "github.com/ipfs/go-datastore/query"
)

// Queue provides a durable, FIFO interface to the datastore for storing cids
Expand Down Expand Up @@ -100,11 +101,11 @@ func (q *Queue) nextEntry() (datastore.Key, cid.Cid) {
// Run dequeues and enqueues when available.
func (q *Queue) work() {
go func() {

for {
k, c := q.nextEntry()
var dequeue chan cid.Cid

// If c != cid.Undef set dequeue and attempt write, otherwise wait for enqueue
if c != cid.Undef {
dequeue = q.dequeue
}
Expand Down
53 changes: 52 additions & 1 deletion provider/queue_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,37 @@ func TestBasicOperation(t *testing.T) {
assertOrdered(cids, queue, t)
}

func TestInitialization(t *testing.T) {
func TestSparseDatastore(t *testing.T) {
ctx := context.Background()
defer ctx.Done()

ds := sync.MutexWrap(datastore.NewMapDatastore())
queue, err := NewQueue(ctx, "test", ds)
if err != nil {
t.Fatal(err)
}

cids := makeCids(10)
for _, c := range cids {
queue.Enqueue(c)
}

// remove entries in the middle
err = queue.ds.Delete(queue.queueKey(5))
if err != nil {
t.Fatal(err)
}

err = queue.ds.Delete(queue.queueKey(6))
if err != nil {
t.Fatal(err)
}

expected := append(cids[:5], cids[7:]...)
assertOrdered(expected, queue, t)
}

func TestMangledData(t *testing.T) {
ctx := context.Background()
defer ctx.Done()

Expand All @@ -63,7 +93,28 @@ func TestInitialization(t *testing.T) {
}

cids := makeCids(10)
for _, c := range cids {
queue.Enqueue(c)
}

// remove entries in the middle
err = queue.ds.Put(queue.queueKey(5), []byte("borked"))

expected := append(cids[:5], cids[6:]...)
assertOrdered(expected, queue, t)
}

func TestInitialization(t *testing.T) {
ctx := context.Background()
defer ctx.Done()

ds := sync.MutexWrap(datastore.NewMapDatastore())
queue, err := NewQueue(ctx, "test", ds)
if err != nil {
t.Fatal(err)
}

cids := makeCids(10)
for _, c := range cids {
queue.Enqueue(c)
}
Expand Down

0 comments on commit 47fb37f

Please sign in to comment.