plugin_test.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package main
  2. import "testing"
  3. func TestPlugToProfile(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. var plug Plugin = &Profile{}
  23. if plug.Type() != "Profile" {
  24. t.Fail()
  25. t.Logf("Expected Plugin type of 'Profile', got '%s'", plug.Type())
  26. }
  27. err := plug.Parse(root)
  28. if err != nil {
  29. t.Errorf("Plugin.Parse, %v", err)
  30. }
  31. p := PlugToProfile(plug)
  32. if p == nil {
  33. t.Errorf("Unexpected, checked for plugin type of Profile failed conversion")
  34. }
  35. // Check the Profile
  36. if p.Name != "Test Dummy" {
  37. if !t.Failed() {
  38. t.Fail()
  39. }
  40. t.Logf("Expected Profile.Name 'Test Dummy', got '%s'", p.Name)
  41. }
  42. if p.Date != "16 11 3013" {
  43. if !t.Failed() {
  44. t.Fail()
  45. }
  46. t.Logf("Expected Profile.Date '16 11 3013', got '%s'", p.Date)
  47. }
  48. if p.Location != "Rutilicus, New Boston" {
  49. if !t.Failed() {
  50. t.Fail()
  51. }
  52. t.Logf("Expected Profile.Location 'Rutilicus, New Boston', got '%s'", p.Location)
  53. }
  54. if p.Playtime != 19.816336 {
  55. if !t.Failed() {
  56. t.Fail()
  57. }
  58. t.Logf("Expected Profile.Playtime 19.816336, got %f", p.Playtime)
  59. }
  60. }