1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- package main
- import "testing"
- func TestPlugToProfile(t *testing.T) {
- // Setup the root node / test data
- // Already have parser tests so manually make them instead
- root := &Node{
- Tag: "root",
- Line: "testing",
- Depth: -1,
- } // This data is from Test Dummy.txt
- n := root.NewChild()
- n.Set("pilot", "Test Dummy")
- n = root.NewChild()
- n.Set("date", "16 11 3013")
- n = root.NewChild()
- n.Set("system", "Rutilicus")
- n = root.NewChild()
- n.Set("planet", "New Boston")
- n = root.NewChild()
- n.Set("playtime", 19.816336)
- // Begin testing
- var plug Plugin = &Profile{}
- if plug.Type() != "Profile" {
- t.Fail()
- t.Logf("Expected Plugin type of 'Profile', got '%s'", plug.Type())
- }
- err := plug.Parse(root)
- if err != nil {
- t.Errorf("Plugin.Parse, %v", err)
- }
- p := PlugToProfile(plug)
- if p == nil {
- t.Errorf("Unexpected, checked for plugin type of Profile failed conversion")
- }
- // Check the Profile
- if p.Name != "Test Dummy" {
- if !t.Failed() {
- t.Fail()
- }
- t.Logf("Expected Profile.Name 'Test Dummy', got '%s'", p.Name)
- }
- if p.Date != "16 11 3013" {
- if !t.Failed() {
- t.Fail()
- }
- t.Logf("Expected Profile.Date '16 11 3013', got '%s'", p.Date)
- }
- if p.Location != "Rutilicus, New Boston" {
- if !t.Failed() {
- t.Fail()
- }
- t.Logf("Expected Profile.Location 'Rutilicus, New Boston', got '%s'", p.Location)
- }
- if p.Playtime != 19.816336 {
- if !t.Failed() {
- t.Fail()
- }
- t.Logf("Expected Profile.Playtime 19.816336, got %f", p.Playtime)
- }
- }
|