node_test.go 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. package main
  2. import "testing"
  3. func TestNodeString(t *testing.T) {
  4. n := Node{
  5. Tag: "1",
  6. Line: "Test",
  7. Depth: 1,
  8. }
  9. if n.String() != "\tTest" {
  10. t.Errorf("Expected 1 tab for depth=1, got '%s'", n.String())
  11. }
  12. n1 := n.NewChild()
  13. n1.Line = "Hello World"
  14. n1.Depth = 2
  15. if n.StringAll() != "\tTest\n\t\tHello World\n" {
  16. t.Errorf("Expected '\tTest\n\t\tHello World\n' got '%s'", n.StringAll())
  17. }
  18. }
  19. func TestNodeAddChild(t *testing.T) {
  20. n := Node{
  21. Tag: "1",
  22. Line: "Test",
  23. Depth: 1,
  24. }
  25. n1 := Node{
  26. Tag: "2",
  27. Line: "Test 2",
  28. Depth: 2,
  29. }
  30. n.AddChild(&n1)
  31. if len(n.Children) != 1 {
  32. t.Errorf("Expected to add the child, but didn't (Children Count: %d)", len(n.Children))
  33. }
  34. if n1.Parent.Tag != n.Tag {
  35. t.Errorf("Expected child's parent to have the same tag, expected '1', got '%s'", n1.Parent.Tag)
  36. }
  37. if n.Children[0].Tag != n1.Tag {
  38. t.Errorf("Expected child's tag to be the same as other node's tag, expected '2', got '%s'", n.Children[0].Tag)
  39. }
  40. }
  41. func TestNodeNewChild(t *testing.T) {
  42. n := Node{
  43. Tag: "1",
  44. Line: "Test",
  45. Depth: 1,
  46. }
  47. n1 := n.NewChild()
  48. n1.Tag = "2"
  49. n1.Line = "Test 2"
  50. n1.Depth = 2
  51. if len(n.Children) != 1 {
  52. t.Errorf("Expected to add the child, but didn't (Children Count: %d)", len(n.Children))
  53. }
  54. if n.Children[0].Line != n1.Line {
  55. t.Errorf("Expected 'Test 2', got '%s' ('%s')", n.Children[0].Line, n1.Line)
  56. }
  57. if n1.Depth != n.Children[0].Depth {
  58. t.Errorf("Expected depth=2, got %d (%d)", n1.Depth, n.Children[0].Depth)
  59. }
  60. }
  61. func TestNodeKey(t *testing.T) {
  62. n := Node{
  63. Line: "Test Value",
  64. }
  65. if n.Key() != "Test" {
  66. t.Errorf("Expected 'Test', got '%s' (%s)", n.Key(), n.Line)
  67. }
  68. n.Line = "\"Some Test\" Value"
  69. if n.Key() != "Some Test" {
  70. t.Errorf("Expected 'Some Test', got '%s' (%s)", n.Key(), n.Line)
  71. }
  72. n.Line = "Test \"Some Value\""
  73. if n.Key() != "Test" {
  74. t.Errorf("Expected 'Test', got '%s' (%s)", n.Key(), n.Line)
  75. }
  76. n.Line = "\"Some Test\" \"Some Value\""
  77. if n.Key() != "Some Test" {
  78. t.Errorf("Expected 'Some Test', got '%s', (%s)", n.Key(), n.Line)
  79. }
  80. }
  81. func TestNodeValue(t *testing.T) {
  82. n := Node{
  83. Line: "Test Value",
  84. }
  85. if n.Value() != "Value" {
  86. t.Errorf("Expected 'Value', got '%s', (%s)", n.Value(), n.Line)
  87. }
  88. n.Line = "\"Some Test\" Value"
  89. if n.Value() != "Value" {
  90. t.Errorf("Expected 'Value', got '%s', (%s)", n.Value(), n.Line)
  91. }
  92. n.Line = "Test \"Some Value\""
  93. if n.Value() != "Some Value" {
  94. t.Errorf("Expected 'Some Value', got '%s', (%s)", n.Value(), n.Line)
  95. }
  96. n.Line = "\"Some Test\" \"Some Value\""
  97. if n.Value() != "Some Value" {
  98. t.Errorf("Expected 'Some Value', got '%s', (%s)", n.Value(), n.Line)
  99. }
  100. }
  101. func TestNodeValueTypes(t *testing.T) {
  102. n := Node{
  103. Line: "\"Some Super Test\" 13",
  104. }
  105. if n.Key() != "Some Super Test" {
  106. t.Errorf("Expected 'Some Super Test', got '%s' (%s)", n.Key(), n.Line)
  107. }
  108. if n.Value() != "13" {
  109. t.Errorf("Expected '13', got '%s' (%s)", n.Value(), n.Line)
  110. }
  111. if n.ValueInt() != 13 {
  112. t.Errorf("Expected 13, got %d (%s)", n.ValueInt(), n.Line)
  113. }
  114. n.Line = "\"Some Super Duper Test\" 9.81"
  115. if n.Key() != "Some Super Duper Test" {
  116. t.Errorf("Expected 'Some Super Duper Test', got '%s' (%s)", n.Key(), n.Line)
  117. }
  118. if n.Value() != "9.81" {
  119. t.Errorf("Expected '9.81', got '%s', (%s)", n.Value(), n.Line)
  120. }
  121. if n.ValueFloat32() != 9.81 {
  122. t.Errorf("Expected 9.81, got %f, (%s)", n.ValueFloat32(), n.Line)
  123. }
  124. if n.ValueFloat64() != 9.81 {
  125. t.Errorf("Expected 'Value', got %f, (%s)", n.ValueFloat64(), n.Line)
  126. }
  127. }
  128. func TestNodeSetters(t *testing.T) {
  129. n := Node{}
  130. n.SetKey("Hello World")
  131. if n.Line != "\"Hello World\"" {
  132. t.Errorf("Expected '\"Hello World\"', got '%s'", n.Line)
  133. }
  134. n.SetValue("Meow")
  135. if n.Line != "\"Hello World\" Meow" {
  136. t.Errorf("Expected '\"Hello World\" Meow', got '%s'", n.Line)
  137. }
  138. n.SetValue(9.81)
  139. if n.Line != "\"Hello World\" 9.81" {
  140. t.Errorf("Expected '\"Hello World\" 9.81', got '%s'", n.Line)
  141. }
  142. n.Set("Taco", "Cat")
  143. if n.Line != "Taco Cat" {
  144. t.Errorf("Expected 'Taco Cat', got '%s'", n.Line)
  145. }
  146. n.Set("Meow", nil)
  147. if n.Line != "Meow" {
  148. t.Errorf("Expected 'Meow', got '%s'", n.Line)
  149. }
  150. n.Set("I am super man", 42)
  151. if n.Line != "\"I am super man\" 42" {
  152. t.Errorf("Expected '\"I am super man\" 42', got '%s'", n.Line)
  153. }
  154. }
  155. func TestNodeChildActions(t *testing.T) {
  156. n := Node{
  157. Tag: "Root",
  158. }
  159. n.Set("I am root", nil)
  160. n1 := n.NewChild()
  161. n1.Set("I am a child", 1)
  162. n1.Depth = 1
  163. n2 := n.NewChild()
  164. n2.Set("I am a child", 2)
  165. n2.Depth = 1
  166. n2_1 := n2.NewChild()
  167. n2_1.Depth = 2
  168. n2_1.Set("I am a child", 3)
  169. if n.Len() != 2 {
  170. t.Errorf("Expected 2 children, got %d", len(n.Children))
  171. }
  172. t1, err := n.Child(0)
  173. if err != nil {
  174. t.Errorf("Unexpected error: %v", err)
  175. }
  176. if t1.Line != "\"I am a child\" 1" {
  177. t.Errorf("Expected '\"I am a child\" 1', got '%s'", t1.Line)
  178. }
  179. t1, err = n.Child(1)
  180. if err != nil {
  181. t.Errorf("Unexpected error: %v", err)
  182. }
  183. if t1.Len() != 1 {
  184. t.Errorf("Expected 1 child, got %d", t1.Len())
  185. }
  186. t2, err := t1.Child(0)
  187. if err != nil {
  188. t.Errorf("Unexpected error: %v", err)
  189. }
  190. if t2.Line != "\"I am a child\" 3" {
  191. t.Errorf("Expected '\"I am a child\" 3', got '%s'", t2.Line)
  192. }
  193. // Split the child off
  194. n3, err := n.SplitChild(1)
  195. if err != nil {
  196. t.Errorf("Unexpected error: %v", err)
  197. }
  198. if n3.Line != "\"I am a child\" 2" {
  199. t.Errorf("Expected '\"I am a child\" 2', got '%s'", n3.Line)
  200. }
  201. if n3.Len() != 1 {
  202. t.Errorf("Expected 1 child, got %d", n3.Len())
  203. }
  204. // Add it back in
  205. n.AddChild(n3)
  206. // Now replace the first child with a new one
  207. n3 = &Node{
  208. Tag: "Kid 1",
  209. Depth: 1,
  210. }
  211. n3.Set("I am a child", 1.1)
  212. err = n.ReplaceChild(0, n3)
  213. if err != nil {
  214. t.Errorf("Unexpected error: %v", err)
  215. }
  216. n3_1 := n3.NewChild()
  217. n3_1.Depth = 2
  218. n3_1.Set("I am a child", 1.2)
  219. if n.Len() != 2 {
  220. t.Errorf("Expected 2 children, got %d", n.Len())
  221. }
  222. t1, err = n.Child(0)
  223. if err != nil {
  224. t.Errorf("Unexpected error: %v", err)
  225. }
  226. if t1.Len() != 1 {
  227. t.Errorf("Expected 1 child, got %d", t1.Len())
  228. }
  229. t1, err = t1.DetachFromParent()
  230. if err != nil {
  231. t.Errorf("Unexpected error: %v", err)
  232. }
  233. if t1.Parent != nil {
  234. t.Errorf("Expected to detach from parent, should be root then")
  235. }
  236. n.RmAllChildren()
  237. if n.Len() != 0 {
  238. t.Errorf("Expected no children, got %d", n.Len())
  239. }
  240. }