2016-08-29 19:18:00 +00:00
|
|
|
// Copyright 2016 The go-ethereum Authors
|
|
|
|
// This file is part of the go-ethereum library.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
const testDataSize = 0x1000000
|
|
|
|
|
2018-06-20 12:06:27 +00:00
|
|
|
func TestFileStorerandom(t *testing.T) {
|
|
|
|
testFileStoreRandom(false, t)
|
|
|
|
testFileStoreRandom(true, t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func testFileStoreRandom(toEncrypt bool, t *testing.T) {
|
|
|
|
tdb, cleanup, err := newTestDbStore(false, false)
|
|
|
|
defer cleanup()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("init dbStore failed: %v", err)
|
2016-08-29 19:18:00 +00:00
|
|
|
}
|
2018-06-20 12:06:27 +00:00
|
|
|
db := tdb.LDBStore
|
|
|
|
db.setCapacity(50000)
|
|
|
|
memStore := NewMemStore(NewDefaultStoreParams(), db)
|
|
|
|
localStore := &LocalStore{
|
|
|
|
memStore: memStore,
|
|
|
|
DbStore: db,
|
2016-08-29 19:18:00 +00:00
|
|
|
}
|
2018-06-20 12:06:27 +00:00
|
|
|
|
|
|
|
fileStore := NewFileStore(localStore, NewFileStoreParams())
|
2016-08-29 19:18:00 +00:00
|
|
|
defer os.RemoveAll("/tmp/bzz")
|
|
|
|
|
2018-06-20 12:06:27 +00:00
|
|
|
reader, slice := generateRandomData(testDataSize)
|
|
|
|
key, wait, err := fileStore.Store(reader, testDataSize, toEncrypt)
|
2016-08-29 19:18:00 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Store error: %v", err)
|
|
|
|
}
|
2018-06-20 12:06:27 +00:00
|
|
|
wait()
|
|
|
|
resultReader, isEncrypted := fileStore.Retrieve(key)
|
|
|
|
if isEncrypted != toEncrypt {
|
|
|
|
t.Fatalf("isEncrypted expected %v got %v", toEncrypt, isEncrypted)
|
|
|
|
}
|
2016-08-29 19:18:00 +00:00
|
|
|
resultSlice := make([]byte, len(slice))
|
|
|
|
n, err := resultReader.ReadAt(resultSlice, 0)
|
|
|
|
if err != io.EOF {
|
|
|
|
t.Errorf("Retrieve error: %v", err)
|
|
|
|
}
|
|
|
|
if n != len(slice) {
|
|
|
|
t.Errorf("Slice size error got %d, expected %d.", n, len(slice))
|
|
|
|
}
|
|
|
|
if !bytes.Equal(slice, resultSlice) {
|
|
|
|
t.Errorf("Comparison error.")
|
|
|
|
}
|
|
|
|
ioutil.WriteFile("/tmp/slice.bzz.16M", slice, 0666)
|
|
|
|
ioutil.WriteFile("/tmp/result.bzz.16M", resultSlice, 0666)
|
2018-06-20 12:06:27 +00:00
|
|
|
localStore.memStore = NewMemStore(NewDefaultStoreParams(), db)
|
|
|
|
resultReader, isEncrypted = fileStore.Retrieve(key)
|
|
|
|
if isEncrypted != toEncrypt {
|
|
|
|
t.Fatalf("isEncrypted expected %v got %v", toEncrypt, isEncrypted)
|
|
|
|
}
|
2017-01-06 14:52:03 +00:00
|
|
|
for i := range resultSlice {
|
2016-08-29 19:18:00 +00:00
|
|
|
resultSlice[i] = 0
|
|
|
|
}
|
|
|
|
n, err = resultReader.ReadAt(resultSlice, 0)
|
|
|
|
if err != io.EOF {
|
|
|
|
t.Errorf("Retrieve error after removing memStore: %v", err)
|
|
|
|
}
|
|
|
|
if n != len(slice) {
|
|
|
|
t.Errorf("Slice size error after removing memStore got %d, expected %d.", n, len(slice))
|
|
|
|
}
|
|
|
|
if !bytes.Equal(slice, resultSlice) {
|
|
|
|
t.Errorf("Comparison error after removing memStore.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-20 12:06:27 +00:00
|
|
|
func TestFileStoreCapacity(t *testing.T) {
|
|
|
|
testFileStoreCapacity(false, t)
|
|
|
|
testFileStoreCapacity(true, t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func testFileStoreCapacity(toEncrypt bool, t *testing.T) {
|
|
|
|
tdb, cleanup, err := newTestDbStore(false, false)
|
|
|
|
defer cleanup()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("init dbStore failed: %v", err)
|
|
|
|
}
|
|
|
|
db := tdb.LDBStore
|
|
|
|
memStore := NewMemStore(NewDefaultStoreParams(), db)
|
2016-08-29 19:18:00 +00:00
|
|
|
localStore := &LocalStore{
|
2018-06-20 12:06:27 +00:00
|
|
|
memStore: memStore,
|
|
|
|
DbStore: db,
|
2016-08-29 19:18:00 +00:00
|
|
|
}
|
2018-06-20 12:06:27 +00:00
|
|
|
fileStore := NewFileStore(localStore, NewFileStoreParams())
|
|
|
|
reader, slice := generateRandomData(testDataSize)
|
|
|
|
key, wait, err := fileStore.Store(reader, testDataSize, toEncrypt)
|
2016-08-29 19:18:00 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Store error: %v", err)
|
|
|
|
}
|
2018-06-20 12:06:27 +00:00
|
|
|
wait()
|
|
|
|
resultReader, isEncrypted := fileStore.Retrieve(key)
|
|
|
|
if isEncrypted != toEncrypt {
|
|
|
|
t.Fatalf("isEncrypted expected %v got %v", toEncrypt, isEncrypted)
|
|
|
|
}
|
2016-08-29 19:18:00 +00:00
|
|
|
resultSlice := make([]byte, len(slice))
|
|
|
|
n, err := resultReader.ReadAt(resultSlice, 0)
|
|
|
|
if err != io.EOF {
|
|
|
|
t.Errorf("Retrieve error: %v", err)
|
|
|
|
}
|
|
|
|
if n != len(slice) {
|
|
|
|
t.Errorf("Slice size error got %d, expected %d.", n, len(slice))
|
|
|
|
}
|
|
|
|
if !bytes.Equal(slice, resultSlice) {
|
|
|
|
t.Errorf("Comparison error.")
|
|
|
|
}
|
|
|
|
// Clear memStore
|
|
|
|
memStore.setCapacity(0)
|
|
|
|
// check whether it is, indeed, empty
|
2018-06-20 12:06:27 +00:00
|
|
|
fileStore.ChunkStore = memStore
|
|
|
|
resultReader, isEncrypted = fileStore.Retrieve(key)
|
|
|
|
if isEncrypted != toEncrypt {
|
|
|
|
t.Fatalf("isEncrypted expected %v got %v", toEncrypt, isEncrypted)
|
|
|
|
}
|
2017-01-09 10:16:06 +00:00
|
|
|
if _, err = resultReader.ReadAt(resultSlice, 0); err == nil {
|
2016-08-29 19:18:00 +00:00
|
|
|
t.Errorf("Was able to read %d bytes from an empty memStore.", len(slice))
|
|
|
|
}
|
|
|
|
// check how it works with localStore
|
2018-06-20 12:06:27 +00:00
|
|
|
fileStore.ChunkStore = localStore
|
2016-08-29 19:18:00 +00:00
|
|
|
// localStore.dbStore.setCapacity(0)
|
2018-06-20 12:06:27 +00:00
|
|
|
resultReader, isEncrypted = fileStore.Retrieve(key)
|
|
|
|
if isEncrypted != toEncrypt {
|
|
|
|
t.Fatalf("isEncrypted expected %v got %v", toEncrypt, isEncrypted)
|
|
|
|
}
|
2017-01-06 14:52:03 +00:00
|
|
|
for i := range resultSlice {
|
2016-08-29 19:18:00 +00:00
|
|
|
resultSlice[i] = 0
|
|
|
|
}
|
|
|
|
n, err = resultReader.ReadAt(resultSlice, 0)
|
|
|
|
if err != io.EOF {
|
|
|
|
t.Errorf("Retrieve error after clearing memStore: %v", err)
|
|
|
|
}
|
|
|
|
if n != len(slice) {
|
|
|
|
t.Errorf("Slice size error after clearing memStore got %d, expected %d.", n, len(slice))
|
|
|
|
}
|
|
|
|
if !bytes.Equal(slice, resultSlice) {
|
|
|
|
t.Errorf("Comparison error after clearing memStore.")
|
|
|
|
}
|
|
|
|
}
|