46 lines
980 B
Go
46 lines
980 B
Go
package store
|
|
|
|
import (
|
|
"bytes"
|
|
"testing"
|
|
|
|
"github.com/lbryio/lbry.go/v2/extras/errors"
|
|
)
|
|
|
|
func TestMemoryBlobStore_Put(t *testing.T) {
|
|
s := NewMemoryBlobStore()
|
|
blob := []byte("abcdefg")
|
|
err := s.Put("abc", blob)
|
|
if err != nil {
|
|
t.Errorf("Expected no error, got %v", err)
|
|
}
|
|
}
|
|
|
|
func TestMemoryBlobStore_Get(t *testing.T) {
|
|
s := NewMemoryBlobStore()
|
|
hash := "abc"
|
|
blob := []byte("abcdefg")
|
|
err := s.Put(hash, blob)
|
|
if err != nil {
|
|
t.Error("error getting memory blob - ", err)
|
|
}
|
|
|
|
gotBlob, err := s.Get(hash)
|
|
if err != nil {
|
|
t.Errorf("Expected no error, got %v", err)
|
|
}
|
|
if !bytes.Equal(gotBlob, blob) {
|
|
t.Error("Got blob that is different from expected blob")
|
|
}
|
|
|
|
missingBlob, err := s.Get("nonexistent hash")
|
|
if err == nil {
|
|
t.Errorf("Expected ErrBlobNotFound, got nil")
|
|
}
|
|
if !errors.Is(err, ErrBlobNotFound) {
|
|
t.Errorf("Received unexpected error: %v", err)
|
|
}
|
|
if !bytes.Equal(missingBlob, []byte{}) {
|
|
t.Error("Got blob that is not empty")
|
|
}
|
|
}
|