packer-cn/builder/docker/config_test.go

97 lines
1.7 KiB
Go
Raw Normal View History

2013-11-09 14:47:32 -05:00
package docker
import (
"testing"
)
2013-11-09 20:07:14 -05:00
func testConfig() map[string]interface{} {
return map[string]interface{}{
"export_path": "foo",
"image": "bar",
2013-11-09 14:47:32 -05:00
}
2013-11-09 20:07:14 -05:00
}
2013-11-09 14:47:32 -05:00
2013-11-09 20:07:14 -05:00
func testConfigStruct(t *testing.T) *Config {
c, warns, errs := NewConfig(testConfig())
if len(warns) > 0 {
t.Fatalf("bad: %#v", len(warns))
}
if errs != nil {
t.Fatalf("bad: %#v", errs)
2013-11-09 14:47:32 -05:00
}
2013-11-09 20:07:14 -05:00
return c
2013-11-09 14:47:32 -05:00
}
func testConfigErr(t *testing.T, warns []string, err error) {
2013-11-09 14:47:32 -05:00
if len(warns) > 0 {
t.Fatalf("bad: %#v", warns)
}
if err == nil {
2013-11-09 20:07:14 -05:00
t.Fatal("should error")
2013-11-09 14:47:32 -05:00
}
}
2013-11-09 14:47:32 -05:00
func testConfigOk(t *testing.T, warns []string, err error) {
2013-11-09 14:47:32 -05:00
if len(warns) > 0 {
t.Fatalf("bad: %#v", warns)
}
if err != nil {
t.Fatalf("bad: %s", err)
2013-11-09 14:47:32 -05:00
}
}
func TestConfigPrepare_exportPath(t *testing.T) {
raw := testConfig()
// No export path
delete(raw, "export_path")
c, warns, errs := NewConfig(raw)
testConfigOk(t, warns, errs)
if c.Export {
t.Fatal("should not export")
}
// Good export path
raw["export_path"] = "good"
c, warns, errs = NewConfig(raw)
testConfigOk(t, warns, errs)
if !c.Export {
t.Fatal("should export")
}
}
2013-11-09 14:47:32 -05:00
func TestConfigPrepare_image(t *testing.T) {
2013-11-09 20:07:14 -05:00
raw := testConfig()
2013-11-09 14:47:32 -05:00
// No image
2013-11-09 20:07:14 -05:00
delete(raw, "image")
_, warns, errs := NewConfig(raw)
testConfigErr(t, warns, errs)
2013-11-09 14:47:32 -05:00
// Good image
2013-11-09 20:07:14 -05:00
raw["image"] = "path"
_, warns, errs = NewConfig(raw)
testConfigOk(t, warns, errs)
}
func TestConfigPrepare_pull(t *testing.T) {
raw := testConfig()
// No pull set
delete(raw, "pull")
c, warns, errs := NewConfig(raw)
testConfigOk(t, warns, errs)
if !c.Pull {
t.Fatal("should pull by default")
2013-11-09 14:47:32 -05:00
}
// Pull set
raw["pull"] = false
c, warns, errs = NewConfig(raw)
testConfigOk(t, warns, errs)
if c.Pull {
t.Fatal("should not pull")
2013-11-09 14:47:32 -05:00
}
}