packer-cn/builder/profitbricks/builder_test.go

58 lines
1.1 KiB
Go
Raw Normal View History

2016-06-28 22:35:41 -04:00
package profitbricks
import (
"fmt"
"testing"
2018-01-22 20:21:10 -05:00
"github.com/hashicorp/packer/packer"
2016-06-28 22:35:41 -04:00
)
func testConfig() map[string]interface{} {
return map[string]interface{}{
2016-11-01 17:08:04 -04:00
"image": "Ubuntu-16.04",
"password": "password",
"username": "username",
2016-08-31 08:11:10 -04:00
"snapshot_name": "packer",
2016-11-01 17:08:04 -04:00
"type": "profitbricks",
2016-06-28 22:35:41 -04:00
}
}
func TestImplementsBuilder(t *testing.T) {
2016-06-28 22:35:41 -04:00
var raw interface{}
raw = &Builder{}
if _, ok := raw.(packer.Builder); !ok {
t.Fatalf("Builder should be a builder")
}
}
func TestBuilder_Prepare_BadType(t *testing.T) {
b := &Builder{}
c := map[string]interface{}{
"api_key": []string{},
}
warns, err := b.Prepare(c)
if len(warns) > 0 {
t.Fatalf("bad: %#v", warns)
}
if err == nil {
fmt.Println(err)
fmt.Println(warns)
t.Fatalf("prepare should fail")
}
}
func TestBuilderPrepare_InvalidKey(t *testing.T) {
var b Builder
config := testConfig()
config["i_should_not_be_valid"] = true
warnings, err := b.Prepare(config)
if len(warnings) > 0 {
t.Fatalf("bad: %#v", warnings)
}
if err == nil {
t.Fatal("should have error")
}
2016-11-01 17:08:04 -04:00
}