|
@@ -1,65 +1,63 @@
|
|
package main
|
|
package main
|
|
|
|
|
|
-import "testing"
|
|
|
|
|
|
+import (
|
|
|
|
+ "testing"
|
|
|
|
+
|
|
|
|
+ "golang.org/x/exp/slices"
|
|
|
|
+)
|
|
|
|
|
|
func TestNodeString(t *testing.T) {
|
|
func TestNodeString(t *testing.T) {
|
|
n := Node{
|
|
n := Node{
|
|
- Tag: "1",
|
|
|
|
- Line: "Test",
|
|
|
|
- Depth: 1,
|
|
|
|
|
|
+ Line: "Test",
|
|
}
|
|
}
|
|
- if n.String() != "\tTest" {
|
|
|
|
|
|
+ n.AddTag("1")
|
|
|
|
+ if n.String() != "Test" {
|
|
t.Errorf("Expected 1 tab for depth=1, got '%s'", n.String())
|
|
t.Errorf("Expected 1 tab for depth=1, got '%s'", n.String())
|
|
}
|
|
}
|
|
n1 := n.NewChild()
|
|
n1 := n.NewChild()
|
|
n1.Line = "Hello World"
|
|
n1.Line = "Hello World"
|
|
- n1.Depth = 2
|
|
|
|
- if n.StringAll() != "\tTest\n\t\tHello World\n" {
|
|
|
|
- t.Errorf("Expected '\tTest\n\t\tHello World\n' got '%s'", n.StringAll())
|
|
|
|
|
|
+ if n.StringAll() != "Test\n\tHello World\n" {
|
|
|
|
+ t.Errorf("Expected 'Test\n\tHello World\n' got '%s'", n.StringAll())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
func TestNodeAddChild(t *testing.T) {
|
|
func TestNodeAddChild(t *testing.T) {
|
|
n := Node{
|
|
n := Node{
|
|
- Tag: "1",
|
|
|
|
- Line: "Test",
|
|
|
|
- Depth: 1,
|
|
|
|
|
|
+ Line: "Test",
|
|
}
|
|
}
|
|
|
|
+ n.AddTag("1")
|
|
n1 := Node{
|
|
n1 := Node{
|
|
- Tag: "2",
|
|
|
|
- Line: "Test 2",
|
|
|
|
- Depth: 2,
|
|
|
|
|
|
+ Line: "Test 2",
|
|
}
|
|
}
|
|
|
|
+ n1.AddTag("2")
|
|
n.AddChild(&n1)
|
|
n.AddChild(&n1)
|
|
if len(n.Children) != 1 {
|
|
if len(n.Children) != 1 {
|
|
t.Errorf("Expected to add the child, but didn't (Children Count: %d)", len(n.Children))
|
|
t.Errorf("Expected to add the child, but didn't (Children Count: %d)", len(n.Children))
|
|
}
|
|
}
|
|
- if n1.Parent.Tag != n.Tag {
|
|
|
|
- t.Errorf("Expected child's parent to have the same tag, expected '1', got '%s'", n1.Parent.Tag)
|
|
|
|
|
|
+ if !slices.Equal(n1.Parent.Tags, n.Tags) {
|
|
|
|
+ t.Errorf("Expected child's parent to have the same tag, expected '1', got '%s'", n1.Parent.Tags)
|
|
}
|
|
}
|
|
- if n.Children[0].Tag != n1.Tag {
|
|
|
|
- t.Errorf("Expected child's tag to be the same as other node's tag, expected '2', got '%s'", n.Children[0].Tag)
|
|
|
|
|
|
+ if !slices.Equal(n.Children[0].Tags, n1.Tags) {
|
|
|
|
+ t.Errorf("Expected child's tag to be the same as other node's tag, expected '2', got '%s'", n.Children[0].Tags)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
func TestNodeNewChild(t *testing.T) {
|
|
func TestNodeNewChild(t *testing.T) {
|
|
n := Node{
|
|
n := Node{
|
|
- Tag: "1",
|
|
|
|
- Line: "Test",
|
|
|
|
- Depth: 1,
|
|
|
|
|
|
+ Line: "Test",
|
|
}
|
|
}
|
|
|
|
+ n.AddTag("1")
|
|
n1 := n.NewChild()
|
|
n1 := n.NewChild()
|
|
- n1.Tag = "2"
|
|
|
|
|
|
+ n1.AddTag("2")
|
|
n1.Line = "Test 2"
|
|
n1.Line = "Test 2"
|
|
- n1.Depth = 2
|
|
|
|
if len(n.Children) != 1 {
|
|
if len(n.Children) != 1 {
|
|
t.Errorf("Expected to add the child, but didn't (Children Count: %d)", len(n.Children))
|
|
t.Errorf("Expected to add the child, but didn't (Children Count: %d)", len(n.Children))
|
|
}
|
|
}
|
|
if n.Children[0].Line != n1.Line {
|
|
if n.Children[0].Line != n1.Line {
|
|
t.Errorf("Expected 'Test 2', got '%s' ('%s')", n.Children[0].Line, n1.Line)
|
|
t.Errorf("Expected 'Test 2', got '%s' ('%s')", n.Children[0].Line, n1.Line)
|
|
}
|
|
}
|
|
- if n1.Depth != n.Children[0].Depth {
|
|
|
|
- t.Errorf("Expected depth=2, got %d (%d)", n1.Depth, n.Children[0].Depth)
|
|
|
|
|
|
+ if n1.Depth() != 1 {
|
|
|
|
+ t.Errorf("Expected depth=1, got %d (%d)", n1.Depth(), n.Children[0].Depth())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -162,18 +160,14 @@ func TestNodeSetters(t *testing.T) {
|
|
}
|
|
}
|
|
|
|
|
|
func TestNodeChildActions(t *testing.T) {
|
|
func TestNodeChildActions(t *testing.T) {
|
|
- n := Node{
|
|
|
|
- Tag: "Root",
|
|
|
|
- }
|
|
|
|
|
|
+ n := Node{}
|
|
|
|
+ n.AddTag("root")
|
|
n.Set("I am root", nil)
|
|
n.Set("I am root", nil)
|
|
n1 := n.NewChild()
|
|
n1 := n.NewChild()
|
|
n1.Set("I am a child", 1)
|
|
n1.Set("I am a child", 1)
|
|
- n1.Depth = 1
|
|
|
|
n2 := n.NewChild()
|
|
n2 := n.NewChild()
|
|
n2.Set("I am a child", 2)
|
|
n2.Set("I am a child", 2)
|
|
- n2.Depth = 1
|
|
|
|
n2_1 := n2.NewChild()
|
|
n2_1 := n2.NewChild()
|
|
- n2_1.Depth = 2
|
|
|
|
n2_1.Set("I am a child", 3)
|
|
n2_1.Set("I am a child", 3)
|
|
if n.Len() != 2 {
|
|
if n.Len() != 2 {
|
|
t.Errorf("Expected 2 children, got %d", len(n.Children))
|
|
t.Errorf("Expected 2 children, got %d", len(n.Children))
|
|
@@ -213,17 +207,14 @@ func TestNodeChildActions(t *testing.T) {
|
|
// Add it back in
|
|
// Add it back in
|
|
n.AddChild(n3)
|
|
n.AddChild(n3)
|
|
// Now replace the first child with a new one
|
|
// Now replace the first child with a new one
|
|
- n3 = &Node{
|
|
|
|
- Tag: "Kid 1",
|
|
|
|
- Depth: 1,
|
|
|
|
- }
|
|
|
|
|
|
+ n3 = &Node{}
|
|
|
|
+ n3.AddTag("Kid 1")
|
|
n3.Set("I am a child", 1.1)
|
|
n3.Set("I am a child", 1.1)
|
|
err = n.ReplaceChild(0, n3)
|
|
err = n.ReplaceChild(0, n3)
|
|
if err != nil {
|
|
if err != nil {
|
|
t.Errorf("Unexpected error: %v", err)
|
|
t.Errorf("Unexpected error: %v", err)
|
|
}
|
|
}
|
|
n3_1 := n3.NewChild()
|
|
n3_1 := n3.NewChild()
|
|
- n3_1.Depth = 2
|
|
|
|
n3_1.Set("I am a child", 1.2)
|
|
n3_1.Set("I am a child", 1.2)
|
|
if n.Len() != 2 {
|
|
if n.Len() != 2 {
|
|
t.Errorf("Expected 2 children, got %d", n.Len())
|
|
t.Errorf("Expected 2 children, got %d", n.Len())
|