66 lines
1.3 KiB
Go
66 lines
1.3 KiB
Go
package bootcommand
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hashicorp/packer/template/interpolate"
|
|
)
|
|
|
|
func TestConfigPrepare(t *testing.T) {
|
|
var c *BootConfig
|
|
|
|
// Test a default boot_wait
|
|
c = new(BootConfig)
|
|
c.RawBootWait = ""
|
|
errs := c.Prepare(&interpolate.Context{})
|
|
if len(errs) > 0 {
|
|
t.Fatalf("bad: %#v", errs)
|
|
}
|
|
if c.RawBootWait != "10s" {
|
|
t.Fatalf("bad value: %s", c.RawBootWait)
|
|
}
|
|
|
|
// Test with a bad boot_wait
|
|
c = new(BootConfig)
|
|
c.RawBootWait = "this is not good"
|
|
errs = c.Prepare(&interpolate.Context{})
|
|
if len(errs) == 0 {
|
|
t.Fatal("should error")
|
|
}
|
|
|
|
// Test with a good one
|
|
c = new(BootConfig)
|
|
c.RawBootWait = "5s"
|
|
errs = c.Prepare(&interpolate.Context{})
|
|
if len(errs) > 0 {
|
|
t.Fatalf("bad: %#v", errs)
|
|
}
|
|
}
|
|
|
|
func TestVNCConfigPrepare(t *testing.T) {
|
|
var c *VNCConfig
|
|
|
|
// Test with a boot command
|
|
c = new(VNCConfig)
|
|
c.BootCommand = []string{"a", "b"}
|
|
errs := c.Prepare(&interpolate.Context{})
|
|
if len(errs) > 0 {
|
|
t.Fatalf("bad: %#v", errs)
|
|
}
|
|
|
|
// Test with disabled vnc
|
|
c.DisableVNC = true
|
|
errs = c.Prepare(&interpolate.Context{})
|
|
if len(errs) == 0 {
|
|
t.Fatal("should error")
|
|
}
|
|
|
|
// Test no boot command with no vnc
|
|
c = new(VNCConfig)
|
|
c.DisableVNC = true
|
|
errs = c.Prepare(&interpolate.Context{})
|
|
if len(errs) > 0 {
|
|
t.Fatalf("bad: %#v", errs)
|
|
}
|
|
}
|