65 lines
1.3 KiB
Go
65 lines
1.3 KiB
Go
package common
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestVBoxVersionConfigPrepare_BootWait(t *testing.T) {
|
|
var c *VBoxVersionConfig
|
|
var errs []error
|
|
|
|
// Test empty
|
|
c = new(VBoxVersionConfig)
|
|
errs = c.Prepare(testConfigTemplate(t))
|
|
if len(errs) > 0 {
|
|
t.Fatalf("should not have error: %s", errs)
|
|
}
|
|
|
|
if *c.VBoxVersionFile != ".vbox_version" {
|
|
t.Fatalf("bad value: %s", *c.VBoxVersionFile)
|
|
}
|
|
|
|
// Test with a good one
|
|
c = new(VBoxVersionConfig)
|
|
filename := "foo"
|
|
c.VBoxVersionFile = &filename
|
|
errs = c.Prepare(testConfigTemplate(t))
|
|
if len(errs) > 0 {
|
|
t.Fatalf("should not have error: %s", errs)
|
|
}
|
|
|
|
if *c.VBoxVersionFile != "foo" {
|
|
t.Fatalf("bad value: %s", *c.VBoxVersionFile)
|
|
}
|
|
}
|
|
|
|
func TestVBoxVersionConfigPrepare_empty(t *testing.T) {
|
|
var c *VBoxVersionConfig
|
|
var errs []error
|
|
|
|
// Test with nil value
|
|
c = new(VBoxVersionConfig)
|
|
c.VBoxVersionFile = nil
|
|
errs = c.Prepare(testConfigTemplate(t))
|
|
if len(errs) > 0 {
|
|
t.Fatalf("should not have error: %s", errs)
|
|
}
|
|
|
|
if *c.VBoxVersionFile != ".vbox_version" {
|
|
t.Fatalf("bad value: %s", *c.VBoxVersionFile)
|
|
}
|
|
|
|
// Test with empty name
|
|
c = new(VBoxVersionConfig)
|
|
filename := ""
|
|
c.VBoxVersionFile = &filename
|
|
errs = c.Prepare(testConfigTemplate(t))
|
|
if len(errs) > 0 {
|
|
t.Fatalf("should not have error: %s", errs)
|
|
}
|
|
|
|
if *c.VBoxVersionFile != "" {
|
|
t.Fatalf("bad value: %s", *c.VBoxVersionFile)
|
|
}
|
|
}
|