2018-05-26 10:49:46 +00:00
|
|
|
package leveldb
|
|
|
|
|
|
|
|
import (
|
2019-03-16 16:50:21 +00:00
|
|
|
"context"
|
2021-01-03 07:32:58 +00:00
|
|
|
"fmt"
|
2018-05-26 10:49:46 +00:00
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
2018-05-27 18:52:26 +00:00
|
|
|
"testing"
|
2021-01-03 07:32:58 +00:00
|
|
|
"time"
|
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"
|
2018-05-26 10:49:46 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestCreateAndFind(t *testing.T) {
|
2021-09-13 09:19:48 +00:00
|
|
|
testFiler := filer.NewFiler(nil, 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)
|
2020-09-01 08:33:43 +00:00
|
|
|
testFiler.SetStore(store)
|
2018-05-26 10:49:46 +00:00
|
|
|
|
2020-03-23 07:01:34 +00:00
|
|
|
fullpath := util.FullPath("/home/chris/this/is/one/file1.jpg")
|
2018-05-26 10:49:46 +00:00
|
|
|
|
2019-03-16 16:50:21 +00:00
|
|
|
ctx := context.Background()
|
|
|
|
|
2020-09-01 08:33:43 +00:00
|
|
|
entry1 := &filer.Entry{
|
2018-05-26 10:49:46 +00:00
|
|
|
FullPath: fullpath,
|
2020-09-01 07:21:19 +00:00
|
|
|
Attr: filer.Attr{
|
2018-05-26 10:49:46 +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 {
|
2018-05-26 10:49:46 +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)
|
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
|
2021-04-24 18:49:03 +00:00
|
|
|
entries, _, _ := testFiler.ListDirectoryEntries(ctx, util.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
|
2021-04-24 18:49:03 +00:00
|
|
|
entries, _, _ = testFiler.ListDirectoryEntries(ctx, util.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) {
|
2021-09-13 09:19:48 +00:00
|
|
|
testFiler := filer.NewFiler(nil, 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)
|
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
|
2021-04-24 18:49:03 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2021-01-03 07:32:58 +00:00
|
|
|
|
|
|
|
func BenchmarkInsertEntry(b *testing.B) {
|
2021-09-13 09:19:48 +00:00
|
|
|
testFiler := filer.NewFiler(nil, nil, "", "", "", "", nil)
|
2021-01-03 07:32:58 +00:00
|
|
|
dir, _ := ioutil.TempDir("", "seaweedfs_filer_bench")
|
|
|
|
defer os.RemoveAll(dir)
|
|
|
|
store := &LevelDBStore{}
|
|
|
|
store.initialize(dir)
|
|
|
|
testFiler.SetStore(store)
|
|
|
|
|
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
b.ReportAllocs()
|
|
|
|
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
entry := &filer.Entry{
|
|
|
|
FullPath: util.FullPath(fmt.Sprintf("/file%d.txt", i)),
|
|
|
|
Attr: filer.Attr{
|
|
|
|
Crtime: time.Now(),
|
|
|
|
Mtime: time.Now(),
|
|
|
|
Mode: os.FileMode(0644),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
store.InsertEntry(ctx, entry)
|
|
|
|
}
|
|
|
|
}
|