35 lines
603 B
Go
35 lines
603 B
Go
package common
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestExportConfigPrepare_BootWait(t *testing.T) {
|
|
var c *ExportConfig
|
|
var errs []error
|
|
|
|
// Bad
|
|
c = new(ExportConfig)
|
|
c.Format = "illega"
|
|
errs = c.Prepare(testConfigTemplate(t))
|
|
if len(errs) == 0 {
|
|
t.Fatalf("bad: %#v", errs)
|
|
}
|
|
|
|
// Good
|
|
c = new(ExportConfig)
|
|
c.Format = "ova"
|
|
errs = c.Prepare(testConfigTemplate(t))
|
|
if len(errs) > 0 {
|
|
t.Fatalf("should not have error: %s", errs)
|
|
}
|
|
|
|
// Good
|
|
c = new(ExportConfig)
|
|
c.Format = "ovf"
|
|
errs = c.Prepare(testConfigTemplate(t))
|
|
if len(errs) > 0 {
|
|
t.Fatalf("should not have error: %s", errs)
|
|
}
|
|
}
|