460 lines
9.0 KiB
Go
460 lines
9.0 KiB
Go
package vmware
|
|
|
|
import (
|
|
"github.com/mitchellh/packer/packer"
|
|
"io/ioutil"
|
|
"os"
|
|
"reflect"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func testConfig() map[string]interface{} {
|
|
return map[string]interface{}{
|
|
"iso_checksum": "foo",
|
|
"iso_checksum_type": "md5",
|
|
"iso_url": "http://www.packer.io",
|
|
"ssh_username": "foo",
|
|
|
|
packer.BuildNameConfigKey: "foo",
|
|
}
|
|
}
|
|
|
|
func TestBuilder_ImplementsBuilder(t *testing.T) {
|
|
var raw interface{}
|
|
raw = &Builder{}
|
|
if _, ok := raw.(packer.Builder); !ok {
|
|
t.Error("Builder must implement builder.")
|
|
}
|
|
}
|
|
|
|
func TestBuilderPrepare_BootWait(t *testing.T) {
|
|
var b Builder
|
|
config := testConfig()
|
|
|
|
// Test a default boot_wait
|
|
delete(config, "boot_wait")
|
|
err := b.Prepare(config)
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
if b.config.RawBootWait != "10s" {
|
|
t.Fatalf("bad value: %s", b.config.RawBootWait)
|
|
}
|
|
|
|
// Test with a bad boot_wait
|
|
config["boot_wait"] = "this is not good"
|
|
err = b.Prepare(config)
|
|
if err == nil {
|
|
t.Fatal("should have error")
|
|
}
|
|
|
|
// Test with a good one
|
|
config["boot_wait"] = "5s"
|
|
err = b.Prepare(config)
|
|
if err != nil {
|
|
t.Fatalf("should not have error: %s", err)
|
|
}
|
|
}
|
|
|
|
func TestBuilderPrepare_ISOChecksum(t *testing.T) {
|
|
var b Builder
|
|
config := testConfig()
|
|
|
|
// Test bad
|
|
config["iso_checksum"] = ""
|
|
err := b.Prepare(config)
|
|
if err == nil {
|
|
t.Fatal("should have error")
|
|
}
|
|
|
|
// Test good
|
|
config["iso_checksum"] = "FOo"
|
|
err = b.Prepare(config)
|
|
if err != nil {
|
|
t.Fatalf("should not have error: %s", err)
|
|
}
|
|
|
|
if b.config.ISOChecksum != "foo" {
|
|
t.Fatalf("should've lowercased: %s", b.config.ISOChecksum)
|
|
}
|
|
}
|
|
|
|
func TestBuilderPrepare_ISOChecksumType(t *testing.T) {
|
|
var b Builder
|
|
config := testConfig()
|
|
|
|
// Test bad
|
|
config["iso_checksum_type"] = ""
|
|
err := b.Prepare(config)
|
|
if err == nil {
|
|
t.Fatal("should have error")
|
|
}
|
|
|
|
// Test good
|
|
config["iso_checksum_type"] = "mD5"
|
|
err = b.Prepare(config)
|
|
if err != nil {
|
|
t.Fatalf("should not have error: %s", err)
|
|
}
|
|
|
|
if b.config.ISOChecksumType != "md5" {
|
|
t.Fatalf("should've lowercased: %s", b.config.ISOChecksumType)
|
|
}
|
|
|
|
// Test unknown
|
|
config["iso_checksum_type"] = "fake"
|
|
err = b.Prepare(config)
|
|
if err == nil {
|
|
t.Fatal("should have error")
|
|
}
|
|
}
|
|
func TestBuilderPrepare_Defaults(t *testing.T) {
|
|
var b Builder
|
|
config := testConfig()
|
|
err := b.Prepare(config)
|
|
if err != nil {
|
|
t.Fatalf("should not have error: %s", err)
|
|
}
|
|
|
|
if b.config.DiskName != "disk" {
|
|
t.Errorf("bad disk name: %s", b.config.DiskName)
|
|
}
|
|
|
|
if b.config.OutputDir != "output-foo" {
|
|
t.Errorf("bad output dir: %s", b.config.OutputDir)
|
|
}
|
|
|
|
if b.config.SSHWaitTimeout != (20 * time.Minute) {
|
|
t.Errorf("bad wait timeout: %s", b.config.SSHWaitTimeout)
|
|
}
|
|
|
|
if b.config.VMName != "packer-foo" {
|
|
t.Errorf("bad vm name: %s", b.config.VMName)
|
|
}
|
|
}
|
|
|
|
func TestBuilderPrepare_DiskSize(t *testing.T) {
|
|
var b Builder
|
|
config := testConfig()
|
|
|
|
delete(config, "disk_size")
|
|
err := b.Prepare(config)
|
|
if err != nil {
|
|
t.Fatalf("bad err: %s", err)
|
|
}
|
|
|
|
if b.config.DiskSize != 40000 {
|
|
t.Fatalf("bad size: %d", b.config.DiskSize)
|
|
}
|
|
|
|
config["disk_size"] = 60000
|
|
b = Builder{}
|
|
err = b.Prepare(config)
|
|
if err != nil {
|
|
t.Fatalf("should not have error: %s", err)
|
|
}
|
|
|
|
if b.config.DiskSize != 60000 {
|
|
t.Fatalf("bad size: %s", b.config.DiskSize)
|
|
}
|
|
}
|
|
|
|
func TestBuilderPrepare_FloppyFiles(t *testing.T) {
|
|
var b Builder
|
|
config := testConfig()
|
|
|
|
delete(config, "floppy_files")
|
|
err := b.Prepare(config)
|
|
if err != nil {
|
|
t.Fatalf("bad err: %s", err)
|
|
}
|
|
|
|
if len(b.config.FloppyFiles) != 0 {
|
|
t.Fatalf("bad: %#v", b.config.FloppyFiles)
|
|
}
|
|
|
|
config["floppy_files"] = []string{"foo", "bar"}
|
|
b = Builder{}
|
|
err = b.Prepare(config)
|
|
if err != nil {
|
|
t.Fatalf("should not have error: %s", err)
|
|
}
|
|
|
|
expected := []string{"foo", "bar"}
|
|
if !reflect.DeepEqual(b.config.FloppyFiles, expected) {
|
|
t.Fatalf("bad: %#v", b.config.FloppyFiles)
|
|
}
|
|
}
|
|
|
|
func TestBuilderPrepare_HTTPPort(t *testing.T) {
|
|
var b Builder
|
|
config := testConfig()
|
|
|
|
// Bad
|
|
config["http_port_min"] = 1000
|
|
config["http_port_max"] = 500
|
|
err := b.Prepare(config)
|
|
if err == nil {
|
|
t.Fatal("should have error")
|
|
}
|
|
|
|
// Bad
|
|
config["http_port_min"] = -500
|
|
err = b.Prepare(config)
|
|
if err == nil {
|
|
t.Fatal("should have error")
|
|
}
|
|
|
|
// Good
|
|
config["http_port_min"] = 500
|
|
config["http_port_max"] = 1000
|
|
err = b.Prepare(config)
|
|
if err != nil {
|
|
t.Fatalf("should not have error: %s", err)
|
|
}
|
|
}
|
|
|
|
func TestBuilderPrepare_InvalidKey(t *testing.T) {
|
|
var b Builder
|
|
config := testConfig()
|
|
|
|
// Add a random key
|
|
config["i_should_not_be_valid"] = true
|
|
err := b.Prepare(config)
|
|
if err == nil {
|
|
t.Fatal("should have error")
|
|
}
|
|
}
|
|
|
|
func TestBuilderPrepare_ISOUrl(t *testing.T) {
|
|
var b Builder
|
|
config := testConfig()
|
|
|
|
config["iso_url"] = ""
|
|
err := b.Prepare(config)
|
|
if err == nil {
|
|
t.Fatal("should have error")
|
|
}
|
|
|
|
config["iso_url"] = "i/am/a/file/that/doesnt/exist"
|
|
err = b.Prepare(config)
|
|
if err == nil {
|
|
t.Error("should have error")
|
|
}
|
|
|
|
config["iso_url"] = "file:i/am/a/file/that/doesnt/exist"
|
|
err = b.Prepare(config)
|
|
if err == nil {
|
|
t.Error("should have error")
|
|
}
|
|
|
|
config["iso_url"] = "http://www.packer.io"
|
|
err = b.Prepare(config)
|
|
if err != nil {
|
|
t.Errorf("should not have error: %s", err)
|
|
}
|
|
|
|
tf, err := ioutil.TempFile("", "packer")
|
|
if err != nil {
|
|
t.Fatalf("error tempfile: %s", err)
|
|
}
|
|
defer os.Remove(tf.Name())
|
|
|
|
config["iso_url"] = tf.Name()
|
|
err = b.Prepare(config)
|
|
if err != nil {
|
|
t.Fatalf("should not have error: %s", err)
|
|
}
|
|
|
|
if b.config.ISOUrl != "file://"+tf.Name() {
|
|
t.Fatalf("iso_url should be modified: %s", b.config.ISOUrl)
|
|
}
|
|
}
|
|
|
|
func TestBuilderPrepare_OutputDir(t *testing.T) {
|
|
var b Builder
|
|
config := testConfig()
|
|
|
|
// Test with existing dir
|
|
dir, err := ioutil.TempDir("", "packer")
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
defer os.RemoveAll(dir)
|
|
|
|
config["output_directory"] = dir
|
|
err = b.Prepare(config)
|
|
if err == nil {
|
|
t.Fatal("should have error")
|
|
}
|
|
|
|
// Test with a good one
|
|
config["output_directory"] = "i-hope-i-dont-exist"
|
|
err = b.Prepare(config)
|
|
if err != nil {
|
|
t.Fatalf("should not have error: %s", err)
|
|
}
|
|
}
|
|
|
|
func TestBuilderPrepare_ShutdownTimeout(t *testing.T) {
|
|
var b Builder
|
|
config := testConfig()
|
|
|
|
// Test with a bad value
|
|
config["shutdown_timeout"] = "this is not good"
|
|
err := b.Prepare(config)
|
|
if err == nil {
|
|
t.Fatal("should have error")
|
|
}
|
|
|
|
// Test with a good one
|
|
config["shutdown_timeout"] = "5s"
|
|
err = b.Prepare(config)
|
|
if err != nil {
|
|
t.Fatalf("should not have error: %s", err)
|
|
}
|
|
}
|
|
|
|
func TestBuilderPrepare_SSHUser(t *testing.T) {
|
|
var b Builder
|
|
config := testConfig()
|
|
|
|
config["ssh_username"] = ""
|
|
err := b.Prepare(config)
|
|
if err == nil {
|
|
t.Fatal("should have error")
|
|
}
|
|
|
|
config["ssh_username"] = "exists"
|
|
err = b.Prepare(config)
|
|
if err != nil {
|
|
t.Fatalf("should not have error: %s", err)
|
|
}
|
|
}
|
|
|
|
func TestBuilderPrepare_SSHPort(t *testing.T) {
|
|
var b Builder
|
|
config := testConfig()
|
|
|
|
// Test with a bad value
|
|
delete(config, "ssh_port")
|
|
err := b.Prepare(config)
|
|
if err != nil {
|
|
t.Fatalf("bad err: %s", err)
|
|
}
|
|
|
|
if b.config.SSHPort != 22 {
|
|
t.Fatalf("bad ssh port: %d", b.config.SSHPort)
|
|
}
|
|
|
|
// Test with a good one
|
|
config["ssh_port"] = 44
|
|
b = Builder{}
|
|
err = b.Prepare(config)
|
|
if err != nil {
|
|
t.Fatalf("should not have error: %s", err)
|
|
}
|
|
|
|
if b.config.SSHPort != 44 {
|
|
t.Fatalf("bad ssh port: %d", b.config.SSHPort)
|
|
}
|
|
}
|
|
|
|
func TestBuilderPrepare_SSHWaitTimeout(t *testing.T) {
|
|
var b Builder
|
|
config := testConfig()
|
|
|
|
// Test with a bad value
|
|
config["ssh_wait_timeout"] = "this is not good"
|
|
err := b.Prepare(config)
|
|
if err == nil {
|
|
t.Fatal("should have error")
|
|
}
|
|
|
|
// Test with a good one
|
|
config["ssh_wait_timeout"] = "5s"
|
|
err = b.Prepare(config)
|
|
if err != nil {
|
|
t.Fatalf("should not have error: %s", err)
|
|
}
|
|
}
|
|
|
|
func TestBuilderPrepare_ToolsUploadPath(t *testing.T) {
|
|
var b Builder
|
|
config := testConfig()
|
|
|
|
// Test a default
|
|
delete(config, "tools_upload_path")
|
|
err := b.Prepare(config)
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
if b.config.ToolsUploadPath == "" {
|
|
t.Fatalf("bad value: %s", b.config.ToolsUploadPath)
|
|
}
|
|
|
|
// Test with a bad value
|
|
config["tools_upload_path"] = "{{{nope}"
|
|
err = b.Prepare(config)
|
|
if err == nil {
|
|
t.Fatal("should have error")
|
|
}
|
|
|
|
// Test with a good one
|
|
config["tools_upload_path"] = "hey"
|
|
err = b.Prepare(config)
|
|
if err != nil {
|
|
t.Fatalf("should not have error: %s", err)
|
|
}
|
|
}
|
|
|
|
func TestBuilderPrepare_VNCPort(t *testing.T) {
|
|
var b Builder
|
|
config := testConfig()
|
|
|
|
// Bad
|
|
config["vnc_port_min"] = 1000
|
|
config["vnc_port_max"] = 500
|
|
err := b.Prepare(config)
|
|
if err == nil {
|
|
t.Fatal("should have error")
|
|
}
|
|
|
|
// Bad
|
|
config["vnc_port_min"] = -500
|
|
err = b.Prepare(config)
|
|
if err == nil {
|
|
t.Fatal("should have error")
|
|
}
|
|
|
|
// Good
|
|
config["vnc_port_min"] = 500
|
|
config["vnc_port_max"] = 1000
|
|
err = b.Prepare(config)
|
|
if err != nil {
|
|
t.Fatalf("should not have error: %s", err)
|
|
}
|
|
}
|
|
|
|
func TestBuilderPrepare_VMXData(t *testing.T) {
|
|
var b Builder
|
|
config := testConfig()
|
|
|
|
config["vmx_data"] = map[interface{}]interface{}{
|
|
"one": "foo",
|
|
"two": "bar",
|
|
}
|
|
|
|
err := b.Prepare(config)
|
|
if err != nil {
|
|
t.Fatalf("should not have error: %s", err)
|
|
}
|
|
|
|
if len(b.config.VMXData) != 2 {
|
|
t.Fatal("should have two items in VMXData")
|
|
}
|
|
}
|