packer-cn/builder/ncloud/step_create_server_instance...

61 lines
1.7 KiB
Go
Raw Normal View History

2018-01-11 04:57:53 -05:00
package ncloud
import (
2018-01-29 20:20:02 -05:00
"context"
2018-01-11 04:57:53 -05:00
"fmt"
"testing"
"github.com/hashicorp/packer/helper/multistep"
2018-01-11 04:57:53 -05:00
)
func TestStepCreateServerInstanceShouldFailIfOperationCreateFails(t *testing.T) {
var testSubject = &StepCreateServerInstance{
CreateServerInstance: func(loginKeyName string, zoneNo string, feeSystemTypeCode string) (string, error) {
2018-01-11 04:57:53 -05:00
return "", fmt.Errorf("!! Unit Test FAIL !!")
},
Say: func(message string) {},
Error: func(e error) {},
}
stateBag := createTestStateBagStepCreateServerInstance()
2018-01-29 20:20:02 -05:00
var result = testSubject.Run(context.Background(), stateBag)
2018-01-11 04:57:53 -05:00
if result != multistep.ActionHalt {
t.Fatalf("Expected the step to return 'ActionHalt', but got '%d'.", result)
}
if _, ok := stateBag.GetOk("Error"); ok == false {
t.Fatal("Expected the step to set stateBag['Error'], but it was not.")
}
}
func TestStepCreateServerInstanceShouldPassIfOperationCreatePasses(t *testing.T) {
var testSubject = &StepCreateServerInstance{
CreateServerInstance: func(loginKeyName string, zoneNo string, feeSystemTypeCode string) (string, error) { return "", nil },
2018-01-11 04:57:53 -05:00
Say: func(message string) {},
Error: func(e error) {},
}
stateBag := createTestStateBagStepCreateServerInstance()
2018-01-29 20:20:02 -05:00
var result = testSubject.Run(context.Background(), stateBag)
2018-01-11 04:57:53 -05:00
if result != multistep.ActionContinue {
t.Fatalf("Expected the step to return 'ActionContinue', but got '%d'.", result)
}
if _, ok := stateBag.GetOk("Error"); ok == true {
t.Fatalf("Expected the step to not set stateBag['Error'], but it was.")
}
}
func createTestStateBagStepCreateServerInstance() multistep.StateBag {
stateBag := new(multistep.BasicStateBag)
stateBag.Put("LoginKey", &LoginKey{"a", "b"})
stateBag.Put("ZoneNo", "1")
return stateBag
}