2013-07-19 14:59:04 -04:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
2013-07-29 02:51:21 -04:00
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2014-04-22 00:28:47 -04:00
|
|
|
"runtime"
|
|
|
|
"strings"
|
2013-07-19 14:59:04 -04:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2014-04-22 00:30:49 -04:00
|
|
|
func TestChooseString(t *testing.T) {
|
|
|
|
cases := []struct {
|
2014-04-26 14:12:43 -04:00
|
|
|
Input []string
|
2014-04-22 00:30:49 -04:00
|
|
|
Output string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
[]string{"", "foo", ""},
|
|
|
|
"foo",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
[]string{"", "foo", "bar"},
|
|
|
|
"foo",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
[]string{"", "", ""},
|
|
|
|
"",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range cases {
|
|
|
|
result := ChooseString(tc.Input...)
|
|
|
|
if result != tc.Output {
|
|
|
|
t.Fatalf("bad: %#v", tc.Input)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-29 02:51:21 -04:00
|
|
|
func TestDownloadableURL(t *testing.T) {
|
|
|
|
// Invalid URL: has hex code in host
|
|
|
|
_, err := DownloadableURL("http://what%20.com")
|
|
|
|
if err == nil {
|
|
|
|
t.Fatal("expected err")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Invalid: unsupported scheme
|
|
|
|
_, err = DownloadableURL("ftp://host.com/path")
|
|
|
|
if err == nil {
|
|
|
|
t.Fatal("expected err")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Valid: http
|
|
|
|
u, err := DownloadableURL("HTTP://packer.io/path")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if u != "http://packer.io/path" {
|
|
|
|
t.Fatalf("bad: %s", u)
|
|
|
|
}
|
2013-07-29 03:09:48 -04:00
|
|
|
|
|
|
|
// No path
|
|
|
|
u, err = DownloadableURL("HTTP://packer.io")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if u != "http://packer.io" {
|
|
|
|
t.Fatalf("bad: %s", u)
|
|
|
|
}
|
2013-07-29 02:51:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestDownloadableURL_FilePaths(t *testing.T) {
|
|
|
|
tf, err := ioutil.TempFile("", "packer")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("tempfile err: %s", err)
|
|
|
|
}
|
|
|
|
defer os.Remove(tf.Name())
|
|
|
|
tf.Close()
|
|
|
|
|
2013-07-29 03:06:21 -04:00
|
|
|
tfPath, err := filepath.EvalSymlinks(tf.Name())
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("tempfile err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
tfPath = filepath.Clean(tfPath)
|
|
|
|
|
2014-04-22 00:28:47 -04:00
|
|
|
filePrefix := "file://"
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
filePrefix += "/"
|
|
|
|
}
|
|
|
|
|
2013-07-29 02:51:21 -04:00
|
|
|
// Relative filepath. We run this test in a func so that
|
|
|
|
// the defers run right away.
|
|
|
|
func() {
|
|
|
|
wd, err := os.Getwd()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("getwd err: %s", err)
|
|
|
|
}
|
|
|
|
|
2013-07-29 03:06:21 -04:00
|
|
|
err = os.Chdir(filepath.Dir(tfPath))
|
2013-07-29 02:51:21 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("chdir err: %s", err)
|
|
|
|
}
|
|
|
|
defer os.Chdir(wd)
|
|
|
|
|
2013-07-29 03:06:21 -04:00
|
|
|
filename := filepath.Base(tfPath)
|
2013-07-29 02:51:21 -04:00
|
|
|
u, err := DownloadableURL(filename)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
2014-04-22 00:28:47 -04:00
|
|
|
expected := fmt.Sprintf("%s%s",
|
|
|
|
filePrefix,
|
|
|
|
strings.Replace(tfPath, `\`, `/`, -1))
|
|
|
|
if u != expected {
|
|
|
|
t.Fatalf("unexpected: %#v != %#v", u, expected)
|
2013-07-29 02:51:21 -04:00
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
// Test some cases with and without a schema prefix
|
2016-04-01 05:55:02 -04:00
|
|
|
for _, prefix := range []string{"", filePrefix} {
|
2013-07-29 02:51:21 -04:00
|
|
|
// Nonexistent file
|
|
|
|
_, err = DownloadableURL(prefix + "i/dont/exist")
|
2013-12-06 21:36:16 -05:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
2013-07-29 02:51:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Good file
|
2013-07-29 03:06:21 -04:00
|
|
|
u, err := DownloadableURL(prefix + tfPath)
|
2013-07-29 02:51:21 -04:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
2014-04-22 00:28:47 -04:00
|
|
|
expected := fmt.Sprintf("%s%s",
|
|
|
|
filePrefix,
|
|
|
|
strings.Replace(tfPath, `\`, `/`, -1))
|
|
|
|
if u != expected {
|
|
|
|
t.Fatalf("unexpected: %s != %s", u, expected)
|
2013-07-29 02:51:21 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-10-11 06:50:08 -04:00
|
|
|
|
|
|
|
func TestScrubConfig(t *testing.T) {
|
|
|
|
type Inner struct {
|
|
|
|
Baz string
|
|
|
|
}
|
|
|
|
type Local struct {
|
|
|
|
Foo string
|
|
|
|
Bar string
|
|
|
|
Inner
|
|
|
|
}
|
|
|
|
c := Local{"foo", "bar", Inner{"bar"}}
|
|
|
|
expect := "Config: {Foo:foo Bar:<Filtered> Inner:{Baz:<Filtered>}}"
|
|
|
|
conf := ScrubConfig(c, c.Bar)
|
|
|
|
if conf != expect {
|
|
|
|
t.Fatalf("got %s, expected %s", conf, expect)
|
|
|
|
}
|
|
|
|
}
|