profile_test.go 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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.String() != "New Boston, Rutilicus" {
  38. if !t.Failed() {
  39. t.Fail()
  40. }
  41. t.Logf("Profile.Location should be 'New Boston, Rutilicus', got '%s'", p.Location.String())
  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. if p.PlayTime() != "19s" {
  50. if !t.Failed() {
  51. t.Fail()
  52. }
  53. t.Logf("Profile.PlayTime() should be '19s', got '%s'", p.PlayTime())
  54. }
  55. }
  56. func TestProfile(t *testing.T) {
  57. p := Profile{}
  58. if p.Type() != "Profile" {
  59. t.Errorf("Profile didn't return correct type 'Profile', got '%s'", p.Type())
  60. }
  61. }
  62. func TestProfileUpdate(t *testing.T) {
  63. // Setup the root node / test data
  64. // Already have parser tests so manually make them instead
  65. root := &Node{
  66. Tag: "root",
  67. Line: "testing",
  68. Depth: -1,
  69. } // This data is from Test Dummy.txt
  70. n := root.NewChild()
  71. n.Set("pilot", "Test Dummy")
  72. n = root.NewChild()
  73. n.Set("date", "16 11 3013")
  74. n = root.NewChild()
  75. n.Set("system", "Rutilicus")
  76. n = root.NewChild()
  77. n.Set("planet", "New Boston")
  78. n = root.NewChild()
  79. n.Set("playtime", 19.816336)
  80. // Begin testing
  81. p := Profile{}
  82. err := p.Parse(root)
  83. if err != nil {
  84. t.Fail()
  85. t.Logf("Profile.Parse failed, %v", err)
  86. }
  87. p.Playtime = 9.81
  88. err = p.Update(root)
  89. if err != nil {
  90. if !t.Failed() {
  91. t.Fail()
  92. }
  93. t.Logf("Profile.Update failed, %v", err)
  94. }
  95. n1, err := root.Child(4)
  96. if err != nil {
  97. t.Errorf("Root.Child, %v", err)
  98. }
  99. if n1.Value() != "9.81" {
  100. t.Errorf("Profile.Update didn't chance as expected, expected '9.81' as value, got '%s'", n1.Value())
  101. }
  102. }
  103. func TestProfileNonRoots(t *testing.T) {
  104. n := &Node{
  105. Tag: "Test",
  106. Line: "Hello World",
  107. Depth: 0,
  108. }
  109. p := Profile{}
  110. err := p.Parse(n)
  111. if err == nil {
  112. t.Fail()
  113. t.Logf("Expected error (non-root node), got none.")
  114. }
  115. err = p.Update(n)
  116. if err == nil {
  117. if !t.Failed() {
  118. t.Fail()
  119. }
  120. t.Logf("Expected error (non-root node), got none.")
  121. }
  122. }