2019-05-18 00:33:49 +00:00
|
|
|
package leveldb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"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"
|
2019-05-18 00:33:49 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestCreateAndFind(t *testing.T) {
|
2021-09-13 09:19:48 +00:00
|
|
|
testFiler := filer.NewFiler(nil, nil, "", "", "", "", nil)
|
2019-05-18 00:33:49 +00:00
|
|
|
dir, _ := ioutil.TempDir("", "seaweedfs_filer_test")
|
|
|
|
defer os.RemoveAll(dir)
|
|
|
|
store := &LevelDB2Store{}
|
2019-07-22 04:51:38 +00:00
|
|
|
store.initialize(dir, 2)
|
2020-09-01 08:33:43 +00:00
|
|
|
testFiler.SetStore(store)
|
2019-05-18 00:33:49 +00:00
|
|
|
|
2020-03-23 07:01:34 +00:00
|
|
|
fullpath := util.FullPath("/home/chris/this/is/one/file1.jpg")
|
2019-05-18 00:33:49 +00:00
|
|
|
|
|
|
|
ctx := context.Background()
|
|
|
|
|
2020-09-01 08:33:43 +00:00
|
|
|
entry1 := &filer.Entry{
|
2019-05-18 00:33:49 +00:00
|
|
|
FullPath: fullpath,
|
2020-09-01 07:21:19 +00:00
|
|
|
Attr: filer.Attr{
|
2019-05-18 00:33:49 +00:00
|
|
|
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 {
|
2019-05-18 00:33:49 +00:00
|
|
|
t.Errorf("create entry %v: %v", entry1.FullPath, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-09-01 08:33:43 +00:00
|
|
|
entry, err := testFiler.FindEntry(ctx, fullpath)
|
2019-05-18 00:33:49 +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
|
2021-04-24 18:49:03 +00:00
|
|
|
entries, _, _ := testFiler.ListDirectoryEntries(ctx, util.FullPath("/home/chris/this/is/one"), "", false, 100, "", "", "")
|
2019-05-18 00:33:49 +00:00
|
|
|
if len(entries) != 1 {
|
|
|
|
t.Errorf("list entries count: %v", len(entries))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// checking one upper directory
|
2021-04-24 18:49:03 +00:00
|
|
|
entries, _, _ = testFiler.ListDirectoryEntries(ctx, util.FullPath("/"), "", false, 100, "", "", "")
|
2019-05-18 00:33:49 +00:00
|
|
|
if len(entries) != 1 {
|
|
|
|
t.Errorf("list entries count: %v", len(entries))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestEmptyRoot(t *testing.T) {
|
2021-09-13 09:19:48 +00:00
|
|
|
testFiler := filer.NewFiler(nil, nil, "", "", "", "", nil)
|
2019-05-18 00:33:49 +00:00
|
|
|
dir, _ := ioutil.TempDir("", "seaweedfs_filer_test2")
|
|
|
|
defer os.RemoveAll(dir)
|
|
|
|
store := &LevelDB2Store{}
|
2019-07-22 04:51:38 +00:00
|
|
|
store.initialize(dir, 2)
|
2020-09-01 08:33:43 +00:00
|
|
|
testFiler.SetStore(store)
|
2019-05-18 00:33:49 +00:00
|
|
|
|
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
// checking one upper directory
|
2021-04-24 18:49:03 +00:00
|
|
|
entries, _, err := testFiler.ListDirectoryEntries(ctx, util.FullPath("/"), "", false, 100, "", "", "")
|
2019-05-18 00:33:49 +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
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|