tree structured fs cache
FsCache for FsNode, wrapping fs.Node
This commit is contained in:
34
weed/filesys/dir_test.go
Normal file
34
weed/filesys/dir_test.go
Normal file
@@ -0,0 +1,34 @@
|
||||
package filesys
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
func TestDirPath(t *testing.T) {
|
||||
|
||||
p := &Dir{name:"/some"}
|
||||
p = &Dir{name:"path", parent: p}
|
||||
p = &Dir{name:"to", parent: p}
|
||||
p = &Dir{name:"a", parent: p}
|
||||
p = &Dir{name:"file", parent: p}
|
||||
|
||||
assert.Equal(t, "/some/path/to/a/file", p.FullPath())
|
||||
|
||||
p = &Dir{name:"/some"}
|
||||
assert.Equal(t, "/some", p.FullPath())
|
||||
|
||||
p = &Dir{name:"/"}
|
||||
assert.Equal(t, "/", p.FullPath())
|
||||
|
||||
p = &Dir{name:"/"}
|
||||
p = &Dir{name:"path", parent: p}
|
||||
assert.Equal(t, "/path", p.FullPath())
|
||||
|
||||
p = &Dir{name:"/"}
|
||||
p = &Dir{name:"path", parent: p}
|
||||
p = &Dir{name:"to", parent: p}
|
||||
assert.Equal(t, "/path/to", p.FullPath())
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user