54 lines
1.1 KiB
Go
54 lines
1.1 KiB
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestMinimalConfig(t *testing.T) {
|
|
_, warns, errs := NewConfig(minimalConfig())
|
|
|
|
testConfigOk(t, warns, errs)
|
|
}
|
|
|
|
func TestTimeout(t *testing.T) {
|
|
raw := minimalConfig()
|
|
raw["shutdown_timeout"] = "3m"
|
|
conf, warns, err := NewConfig(raw)
|
|
testConfigOk(t, warns, err)
|
|
if conf.ShutdownTimeout != 3 * time.Minute {
|
|
t.Fatalf("shutdown_timeout sould be equal 3 minutes")
|
|
}
|
|
}
|
|
|
|
func minimalConfig() map[string]interface{} {
|
|
return map[string]interface{}{
|
|
"vcenter_server": "vcenter.domain.local",
|
|
"username": "root",
|
|
"password": "vmware",
|
|
"template": "ubuntu",
|
|
"vm_name": "vm1",
|
|
"host": "esxi1.domain.local",
|
|
"ssh_username": "root",
|
|
"ssh_password": "secret",
|
|
}
|
|
}
|
|
|
|
func testConfigOk(t *testing.T, warns []string, err error) {
|
|
if len(warns) > 0 {
|
|
t.Fatalf("bad: %#v", warns)
|
|
}
|
|
if err != nil {
|
|
t.Fatalf("bad: %s", err)
|
|
}
|
|
}
|
|
|
|
func testConfigErr(t *testing.T, warns []string, err error) {
|
|
if len(warns) > 0 {
|
|
t.Fatalf("bad: %#v", warns)
|
|
}
|
|
if err == nil {
|
|
t.Fatal("should error")
|
|
}
|
|
}
|