aboutsummaryrefslogtreecommitdiff
path: root/weed/mount/inode_to_path_test.go
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2022-07-23 13:21:42 -0700
committerchrislu <chris.lu@gmail.com>2022-07-23 13:21:42 -0700
commit02c2d81cde7cc35a8f86947591ff51199abf45f9 (patch)
tree032d0c99ce3b66b4babe84c156489bb0db884de2 /weed/mount/inode_to_path_test.go
parent4d5dc557664b9bdf377c0fb560f9a13bc717d13f (diff)
downloadseaweedfs-02c2d81cde7cc35a8f86947591ff51199abf45f9.tar.xz
seaweedfs-02c2d81cde7cc35a8f86947591ff51199abf45f9.zip
fix removePathFromInode2Path
Diffstat (limited to 'weed/mount/inode_to_path_test.go')
-rw-r--r--weed/mount/inode_to_path_test.go79
1 files changed, 79 insertions, 0 deletions
diff --git a/weed/mount/inode_to_path_test.go b/weed/mount/inode_to_path_test.go
new file mode 100644
index 000000000..b9723c4c5
--- /dev/null
+++ b/weed/mount/inode_to_path_test.go
@@ -0,0 +1,79 @@
+package mount
+
+import (
+ "github.com/chrislusf/seaweedfs/weed/util"
+ "testing"
+)
+
+func TestInodeEntry_removeOnePath(t *testing.T) {
+ tests := []struct {
+ name string
+ entry InodeEntry
+ p util.FullPath
+ want bool
+ count int
+ }{
+ {
+ name: "empty",
+ entry: InodeEntry{},
+ p: "x",
+ want: false,
+ count: 0,
+ },
+ {
+ name: "single",
+ entry: InodeEntry{
+ paths: []util.FullPath{"/x"},
+ },
+ p: "/x",
+ want: true,
+ count: 0,
+ },
+ {
+ name: "first",
+ entry: InodeEntry{
+ paths: []util.FullPath{"/x", "/y", "/z"},
+ },
+ p: "/x",
+ want: true,
+ count: 2,
+ },
+ {
+ name: "middle",
+ entry: InodeEntry{
+ paths: []util.FullPath{"/x", "/y", "/z"},
+ },
+ p: "/y",
+ want: true,
+ count: 2,
+ },
+ {
+ name: "last",
+ entry: InodeEntry{
+ paths: []util.FullPath{"/x", "/y", "/z"},
+ },
+ p: "/z",
+ want: true,
+ count: 2,
+ },
+ {
+ name: "not found",
+ entry: InodeEntry{
+ paths: []util.FullPath{"/x", "/y", "/z"},
+ },
+ p: "/t",
+ want: false,
+ count: 3,
+ },
+ }
+ for _, tt := range tests {
+ t.Run(tt.name, func(t *testing.T) {
+ if got := tt.entry.removeOnePath(tt.p); got != tt.want {
+ t.Errorf("removeOnePath() = %v, want %v", got, tt.want)
+ }
+ if tt.count != len(tt.entry.paths) {
+ t.Errorf("removeOnePath path count = %v, want %v", len(tt.entry.paths), tt.count)
+ }
+ })
+ }
+}