seaweedfs/weed/filer/leveldb/leveldb_store_test.go

89 lines
2 KiB
Go
Raw Normal View History

package leveldb
import (
2019-03-16 16:50:21 +00:00
"context"
"io/ioutil"
"os"
2018-05-27 18:52:26 +00:00
"testing"
2020-03-23 07:01:34 +00:00
2020-09-01 08:33:43 +00:00
"github.com/chrislusf/seaweedfs/weed/filer"
2020-03-23 07:01:34 +00:00
"github.com/chrislusf/seaweedfs/weed/util"
)
func TestCreateAndFind(t *testing.T) {
2020-11-11 21:13:33 +00:00
testFiler := filer.NewFiler(nil, nil, "", 0, "", "", "", nil)
dir, _ := ioutil.TempDir("", "seaweedfs_filer_test")
defer os.RemoveAll(dir)
store := &LevelDBStore{}
store.initialize(dir)
2020-09-01 08:33:43 +00:00
testFiler.SetStore(store)
2020-03-23 07:01:34 +00:00
fullpath := util.FullPath("/home/chris/this/is/one/file1.jpg")
2019-03-16 16:50:21 +00:00
ctx := context.Background()
2020-09-01 08:33:43 +00:00
entry1 := &filer.Entry{
FullPath: fullpath,
2020-09-01 07:21:19 +00:00
Attr: filer.Attr{
Mode: 0440,
Uid: 1234,
Gid: 5678,
},
}
2020-09-01 08:33:43 +00:00
if err := testFiler.CreateEntry(ctx, entry1, false, false, nil); err != nil {
t.Errorf("create entry %v: %v", entry1.FullPath, err)
return
}
2020-09-01 08:33:43 +00:00
entry, err := testFiler.FindEntry(ctx, fullpath)
if err != nil {
t.Errorf("find entry: %v", err)
return
}
if entry.FullPath != entry1.FullPath {
t.Errorf("find wrong entry: %v", entry.FullPath)
return
}
// checking one upper directory
entries, _ := testFiler.ListDirectoryEntries(ctx, util.FullPath("/home/chris/this/is/one"), "", false, 100, "", "")
if len(entries) != 1 {
t.Errorf("list entries count: %v", len(entries))
return
}
// checking one upper directory
entries, _ = testFiler.ListDirectoryEntries(ctx, util.FullPath("/"), "", false, 100, "", "")
if len(entries) != 1 {
t.Errorf("list entries count: %v", len(entries))
return
}
}
2018-12-03 03:42:50 +00:00
func TestEmptyRoot(t *testing.T) {
2020-11-12 03:49:38 +00:00
testFiler := filer.NewFiler(nil, nil, "", 0, "", "", "", nil)
2018-12-03 03:42:50 +00:00
dir, _ := ioutil.TempDir("", "seaweedfs_filer_test2")
defer os.RemoveAll(dir)
store := &LevelDBStore{}
store.initialize(dir)
2020-09-01 08:33:43 +00:00
testFiler.SetStore(store)
2018-12-03 03:42:50 +00:00
2019-03-16 16:50:57 +00:00
ctx := context.Background()
2018-12-03 03:42:50 +00:00
// checking one upper directory
entries, err := testFiler.ListDirectoryEntries(ctx, util.FullPath("/"), "", false, 100, "", "")
2018-12-03 03:42:50 +00:00
if err != nil {
t.Errorf("list entries: %v", err)
return
}
if len(entries) != 0 {
t.Errorf("list entries count: %v", len(entries))
return
}
}