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"
|
2018-01-29 08:41:22 -05:00
|
|
|
|
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2018-01-11 04:57:53 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestStepCreateServerInstanceShouldFailIfOperationCreateFails(t *testing.T) {
|
|
|
|
var testSubject = &StepCreateServerInstance{
|
2018-01-29 04:35:43 -05:00
|
|
|
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{
|
2018-01-29 04:35:43 -05:00
|
|
|
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
|
|
|
|
}
|