profile_test.go 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. package main
  2. import "testing"
  3. func TestProfileParse(t *testing.T) {
  4. // Setup the root node / test data
  5. // Already have parser tests so manually make them instead
  6. root := &Node{
  7. Tag: "root",
  8. Line: "testing",
  9. Depth: -1,
  10. } // This data is from Test Dummy.txt
  11. n := root.NewChild()
  12. n.Set("pilot", "Test Dummy")
  13. n = root.NewChild()
  14. n.Set("date", "16 11 3013")
  15. n = root.NewChild()
  16. n.Set("system", "Rutilicus")
  17. n = root.NewChild()
  18. n.Set("planet", "New Boston")
  19. n = root.NewChild()
  20. n.Set("playtime", 19.816336)
  21. // Begin testing
  22. p := Profile{}
  23. err := p.Parse(root)
  24. if err != nil {
  25. t.Errorf("Failed parsing data, %v", err)
  26. }
  27. if p.Name != "Test Dummy" {
  28. t.Fail()
  29. t.Logf("Profile.Name should be 'Test Dummy', got '%s'", p.Name)
  30. }
  31. if p.Date != "16 11 3013" {
  32. if !t.Failed() {
  33. t.Fail()
  34. }
  35. t.Logf("Profile.Date should be '16 11 3013', got '%s'", p.Date)
  36. }
  37. if p.Location != "Rutilicus, New Boston" {
  38. if !t.Failed() {
  39. t.Fail()
  40. }
  41. t.Logf("Profile.Location should be 'Rutilicus, New Boston', got '%s'", p.Location)
  42. }
  43. if p.Playtime != 19.816336 {
  44. if !t.Failed() {
  45. t.Fail()
  46. }
  47. t.Logf("Profile.Playtime should be 19.816336, got %f", p.Playtime)
  48. }
  49. }
  50. func TestProfile(t *testing.T) {
  51. p := Profile{}
  52. if p.Type() != "Profile" {
  53. t.Errorf("Profile didn't return correct type 'Profile', got '%s'", p.Type())
  54. }
  55. }
  56. func TestProfileUpdate(t *testing.T) {
  57. // Setup the root node / test data
  58. // Already have parser tests so manually make them instead
  59. root := &Node{
  60. Tag: "root",
  61. Line: "testing",
  62. Depth: -1,
  63. } // This data is from Test Dummy.txt
  64. n := root.NewChild()
  65. n.Set("pilot", "Test Dummy")
  66. n = root.NewChild()
  67. n.Set("date", "16 11 3013")
  68. n = root.NewChild()
  69. n.Set("system", "Rutilicus")
  70. n = root.NewChild()
  71. n.Set("planet", "New Boston")
  72. n = root.NewChild()
  73. n.Set("playtime", 19.816336)
  74. // Begin testing
  75. p := Profile{}
  76. err := p.Parse(root)
  77. if err != nil {
  78. t.Fail()
  79. t.Logf("Profile.Parse failed, %v", err)
  80. }
  81. p.Playtime = 9.81
  82. err = p.Update(root)
  83. if err != nil {
  84. if !t.Failed() {
  85. t.Fail()
  86. }
  87. t.Logf("Profile.Update failed, %v", err)
  88. }
  89. n1, err := root.Child(4)
  90. if err != nil {
  91. t.Errorf("Root.Child, %v", err)
  92. }
  93. if n1.Value() != "9.81" {
  94. t.Errorf("Profile.Update didn't chance as expected, expected '9.81' as value, got '%s'", n1.Value())
  95. }
  96. }
  97. func TestProfileNonRoots(t *testing.T) {
  98. n := &Node{
  99. Tag: "Test",
  100. Line: "Hello World",
  101. Depth: 0,
  102. }
  103. p := Profile{}
  104. err := p.Parse(n)
  105. if err == nil {
  106. t.Fail()
  107. t.Logf("Expected error (non-root node), got none.")
  108. }
  109. err = p.Update(n)
  110. if err == nil {
  111. if !t.Failed() {
  112. t.Fail()
  113. }
  114. t.Logf("Expected error (non-root node), got none.")
  115. }
  116. }