21 lines
341 B
Go
21 lines
341 B
Go
|
package common
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestHWConfigPrepare(t *testing.T) {
|
||
|
c := new(HWConfig)
|
||
|
if errs := c.Prepare(testConfigTemplate(t)); len(errs) > 0 {
|
||
|
t.Fatalf("err: %#v", errs)
|
||
|
}
|
||
|
|
||
|
if c.CpuCount < 1 {
|
||
|
t.Errorf("bad cpu count: %d", c.CpuCount)
|
||
|
}
|
||
|
|
||
|
if c.MemorySize < 64 {
|
||
|
t.Errorf("bad memory size: %d", c.MemorySize)
|
||
|
}
|
||
|
}
|