package pvm import ( "fmt" "io/ioutil" "os" "testing" "github.com/hashicorp/packer/packer" ) func testConfig(t *testing.T) map[string]interface{} { return map[string]interface{}{ "ssh_username": "foo", "shutdown_command": "foo", "parallels_tools_flavor": "lin", "source_path": "config_test.go", } } func getTempFile(t *testing.T) *os.File { tf, err := ioutil.TempFile("", "packer") if err != nil { t.Fatalf("err: %s", err) } tf.Close() // don't forget to cleanup the file downstream: // defer os.Remove(tf.Name()) return tf } 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") } } 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 TestNewConfig_sourcePath(t *testing.T) { // Bad c := testConfig(t) delete(c, "source_path") _, warns, errs := NewConfig(c) testConfigErr(t, warns, errs) // Bad c = testConfig(t) c["source_path"] = "/i/dont/exist" _, warns, errs = NewConfig(c) testConfigErr(t, warns, errs) // Good tf := getTempFile(t) defer os.Remove(tf.Name()) c = testConfig(t) c["source_path"] = tf.Name() _, warns, errs = NewConfig(c) testConfigOk(t, warns, errs) } func TestNewConfig_FloppyFiles(t *testing.T) { c := testConfig(t) floppies_path := "../../../common/test-fixtures/floppies" c["floppy_files"] = []string{fmt.Sprintf("%s/bar.bat", floppies_path), fmt.Sprintf("%s/foo.ps1", floppies_path)} _, _, err := NewConfig(c) if err != nil { t.Fatalf("should not have error: %s", err) } } func TestNewConfig_InvalidFloppies(t *testing.T) { c := testConfig(t) c["floppy_files"] = []string{"nonexistant.bat", "nonexistant.ps1"} _, _, errs := NewConfig(c) if errs == nil { t.Fatalf("Nonexistent floppies should trigger multierror") } if len(errs.(*packer.MultiError).Errors) != 2 { t.Fatalf("Multierror should work and report 2 errors") } } func TestNewConfig_shutdown_timeout(t *testing.T) { c := testConfig(t) tf := getTempFile(t) defer os.Remove(tf.Name()) // Expect this to fail c["source_path"] = tf.Name() c["shutdown_timeout"] = "NaN" _, warns, errs := NewConfig(c) testConfigErr(t, warns, errs) // Passes when given a valid time duration c["shutdown_timeout"] = "10s" _, warns, errs = NewConfig(c) testConfigOk(t, warns, errs) }