post-processor/vagrant-cloud: tests for configuration

This commit is contained in:
Jack Pearkes 2014-06-25 10:56:09 -04:00
parent f384806821
commit a0c153824f
1 changed files with 23 additions and 5 deletions

View File

@ -6,17 +6,35 @@ import (
"testing"
)
func testConfig() map[string]interface{} {
return map[string]interface{}{}
func testGoodConfig() map[string]interface{} {
return map[string]interface{}{
"access_token": "foo",
"version_description": "bar",
"box_tag": "hashicorp/precise64",
"version": "0.5",
}
}
func testPP(t *testing.T) *PostProcessor {
func testBadConfig() map[string]interface{} {
return map[string]interface{}{
"access_token": "foo",
"box_tag": "baz",
"version_description": "bar",
}
}
func TestPostProcessor_Configure_Good(t *testing.T) {
var p PostProcessor
if err := p.Configure(testConfig()); err != nil {
if err := p.Configure(testGoodConfig()); err != nil {
t.Fatalf("err: %s", err)
}
}
return &p
func TestPostProcessor_Configure_Bad(t *testing.T) {
var p PostProcessor
if err := p.Configure(testBadConfig()); err == nil {
t.Fatalf("should have err")
}
}
func testUi() *packer.BasicUi {