-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtree_test.go
125 lines (99 loc) · 2.92 KB
/
tree_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
package structs
import (
"testing"
"github.com/stretchr/testify/assert"
)
func makeTree(name string) *Node {
root := NewNode(name, 0)
root.AddChild(NewNode("A", 1))
root.AddChild(NewNode("B", 2))
c := NewNode("C", 3)
root.AddChild(c)
return root
}
func makeDeepTree(name string) *Node {
root := NewNode(name, 0)
root.AddChild(NewNode("A", 1))
root.AddChild(NewNode("B", 2))
c := NewNode("C", 3)
root.AddChild(c)
c.AddChild(NewNode("C1", 31))
c.AddChild(NewNode("C2", 32))
c3 := NewNode("C3", 33)
c.AddChild(c3)
c3.AddChild(NewNode("C31", 331))
c3.AddChild(NewNode("C32", 332))
c3.AddChild(NewNode("C33", 333))
return root
}
func TestTreeSimple(t *testing.T) {
assert := assert.New(t)
t0 := NewNode("t0", 0)
assert.Equal(0, t0.NoChildren())
assert.Equal("t0", t0.Name())
t1 := makeTree("t1")
assert.Equal(3, t1.NoChildren())
assert.Equal("t1", t1.Name())
}
func TestTreeDeep(t *testing.T) {
assert := assert.New(t)
root := makeDeepTree("deep1")
found := root.GetChild([]string{"C", "C3", "C33"})
assert.Equal("C3", found.Parent().name)
assert.Equal("C", found.Parent().Parent().name)
assert.Equal("deep1", found.Parent().Parent().Parent().name)
assert.Equal("deep1", found.Root().name)
assert.Equal("deep1", found.Parent().Root().name)
assert.Equal("deep1", found.Parent().Parent().Root().name)
found = root.GetChild([]string{"C"})
assert.Equal("deep1", found.Root().name)
}
func TestTreeChildParent(t *testing.T) {
assert := assert.New(t)
root := makeDeepTree("t1")
assert.Equal(3, root.NoChildren())
found := root.GetChild([]string{"xyz"})
assert.Equal("", found.name)
assert.Nil(found.data)
found = root.GetChild([]string{"C"})
assert.Equal("C", found.name)
assert.Equal(3, found.data)
parent := found.Parent()
assert.Equal(root.name, parent.name)
assert.Equal(root.data, parent.data)
found = root.GetChild([]string{"C", "C3"})
assert.Equal("C3", found.name)
assert.Equal(33, found.data)
parent = found.Parent().Parent()
assert.Equal(root.name, parent.name)
assert.Equal(root.data, parent.data)
}
func TestTreeDelele(t *testing.T) {
assert := assert.New(t)
root := makeDeepTree("deep1")
assert.False(root.AddChild(root))
assert.False(root.AddChild(NewNode("A", 1)))
assert.False(root.AddChild(NewNode("B", 2)))
b := root.GetChild([]string{"B"})
assert.True(root.DelChild(b))
assert.Equal(2, root.NoChildren())
a := root.GetChild([]string{"A"})
assert.True(root.DelChild(a))
assert.Equal(1, root.NoChildren())
c := root.GetChild([]string{"C"})
assert.True(root.DelChild(c))
assert.Equal(3, root.NoChildren())
c3 := root.GetChild([]string{"C3"})
assert.Equal("C3", c3.name)
assert.Equal(33, c3.data)
assert.True(root.DelChild(c3))
assert.Equal(5, root.NoChildren())
}
func TestTreeFlatten(t *testing.T) {
assert := assert.New(t)
root := makeDeepTree("deep2")
flat := root.Flatten()
assert.Equal(9, len(flat))
assert.Equal("A", flat[0].Name())
assert.Equal("C33", flat[8].Name())
}