2018-05-26 10:49:46 +00:00
|
|
|
package leveldb
|
|
|
|
|
|
|
|
import (
|
2019-03-16 16:50:21 +00:00
|
|
|
"context"
|
2018-05-26 10:49:46 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/filer2"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
2018-05-27 18:52:26 +00:00
|
|
|
"testing"
|
2018-05-26 10:49:46 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestCreateAndFind(t *testing.T) {
|
2019-02-18 20:11:52 +00:00
|
|
|
filer := filer2.NewFiler(nil, nil)
|
2018-05-26 10:49:46 +00:00
|
|
|
dir, _ := ioutil.TempDir("", "seaweedfs_filer_test")
|
|
|
|
defer os.RemoveAll(dir)
|
|
|
|
store := &LevelDBStore{}
|
|
|
|
store.initialize(dir)
|
|
|
|
filer.SetStore(store)
|
|
|
|
filer.DisableDirectoryCache()
|
|
|
|
|
|
|
|
fullpath := filer2.FullPath("/home/chris/this/is/one/file1.jpg")
|
|
|
|
|
2019-03-16 16:50:21 +00:00
|
|
|
ctx := context.Background()
|
|
|
|
|
2018-05-26 10:49:46 +00:00
|
|
|
entry1 := &filer2.Entry{
|
|
|
|
FullPath: fullpath,
|
|
|
|
Attr: filer2.Attr{
|
|
|
|
Mode: 0440,
|
|
|
|
Uid: 1234,
|
|
|
|
Gid: 5678,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-03-16 16:50:21 +00:00
|
|
|
if err := filer.CreateEntry(ctx, entry1); err != nil {
|
2018-05-26 10:49:46 +00:00
|
|
|
t.Errorf("create entry %v: %v", entry1.FullPath, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-03-16 16:50:21 +00:00
|
|
|
entry, err := filer.FindEntry(ctx, fullpath)
|
2018-05-26 10:49:46 +00:00
|
|
|
|
|
|
|
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
|
2019-03-16 16:50:21 +00:00
|
|
|
entries, _ := filer.ListDirectoryEntries(ctx, filer2.FullPath("/home/chris/this/is/one"), "", false, 100)
|
2018-05-26 10:49:46 +00:00
|
|
|
if len(entries) != 1 {
|
|
|
|
t.Errorf("list entries count: %v", len(entries))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// checking one upper directory
|
2019-03-16 16:50:21 +00:00
|
|
|
entries, _ = filer.ListDirectoryEntries(ctx, filer2.FullPath("/"), "", false, 100)
|
2018-05-26 10:49:46 +00:00
|
|
|
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) {
|
2019-02-18 20:11:52 +00:00
|
|
|
filer := filer2.NewFiler(nil, nil)
|
2018-12-03 03:42:50 +00:00
|
|
|
dir, _ := ioutil.TempDir("", "seaweedfs_filer_test2")
|
|
|
|
defer os.RemoveAll(dir)
|
|
|
|
store := &LevelDBStore{}
|
|
|
|
store.initialize(dir)
|
|
|
|
filer.SetStore(store)
|
|
|
|
filer.DisableDirectoryCache()
|
|
|
|
|
2019-03-16 16:50:57 +00:00
|
|
|
ctx := context.Background()
|
|
|
|
|
2018-12-03 03:42:50 +00:00
|
|
|
// checking one upper directory
|
2019-03-16 16:50:21 +00:00
|
|
|
entries, err := filer.ListDirectoryEntries(ctx, filer2.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
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|