2016-03-04 05:14:55 -05:00
|
|
|
package arm
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
|
2017-04-04 16:39:01 -04:00
|
|
|
"github.com/hashicorp/packer/builder/azure/common/constants"
|
2018-01-19 19:18:44 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2016-03-04 05:14:55 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestStepGetIPAddressShouldFailIfGetFails(t *testing.T) {
|
2017-08-06 18:32:44 -04:00
|
|
|
endpoints := []EndpointType{PublicEndpoint, PublicEndpointInPrivateNetwork}
|
|
|
|
|
|
|
|
for _, endpoint := range endpoints {
|
|
|
|
var testSubject = &StepGetIPAddress{
|
|
|
|
get: func(string, string, string) (string, error) { return "", fmt.Errorf("!! Unit Test FAIL !!") },
|
|
|
|
endpoint: endpoint,
|
|
|
|
say: func(message string) {},
|
|
|
|
error: func(e error) {},
|
|
|
|
}
|
|
|
|
|
|
|
|
stateBag := createTestStateBagStepGetIPAddress()
|
|
|
|
|
|
|
|
var result = testSubject.Run(stateBag)
|
|
|
|
if result != multistep.ActionHalt {
|
|
|
|
t.Fatalf("Expected the step to return 'ActionHalt', but got '%d'.", result)
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, ok := stateBag.GetOk(constants.Error); ok == false {
|
|
|
|
t.Fatalf("Expected the step to set stateBag['%s'], but it was not.", constants.Error)
|
|
|
|
}
|
2016-03-04 05:14:55 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStepGetIPAddressShouldPassIfGetPasses(t *testing.T) {
|
2017-08-06 18:32:44 -04:00
|
|
|
endpoints := []EndpointType{PublicEndpoint, PublicEndpointInPrivateNetwork}
|
|
|
|
|
|
|
|
for _, endpoint := range endpoints {
|
|
|
|
var testSubject = &StepGetIPAddress{
|
|
|
|
get: func(string, string, string) (string, error) { return "", nil },
|
|
|
|
endpoint: endpoint,
|
|
|
|
say: func(message string) {},
|
|
|
|
error: func(e error) {},
|
|
|
|
}
|
|
|
|
|
|
|
|
stateBag := createTestStateBagStepGetIPAddress()
|
|
|
|
|
|
|
|
var result = testSubject.Run(stateBag)
|
|
|
|
if result != multistep.ActionContinue {
|
|
|
|
t.Fatalf("Expected the step to return 'ActionContinue', but got '%d'.", result)
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, ok := stateBag.GetOk(constants.Error); ok == true {
|
|
|
|
t.Fatalf("Expected the step to not set stateBag['%s'], but it was.", constants.Error)
|
|
|
|
}
|
2016-03-04 05:14:55 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStepGetIPAddressShouldTakeStepArgumentsFromStateBag(t *testing.T) {
|
|
|
|
var actualResourceGroupName string
|
|
|
|
var actualIPAddressName string
|
2016-06-30 19:51:52 -04:00
|
|
|
var actualNicName string
|
2017-08-06 18:32:44 -04:00
|
|
|
endpoints := []EndpointType{PublicEndpoint, PublicEndpointInPrivateNetwork}
|
|
|
|
|
|
|
|
for _, endpoint := range endpoints {
|
|
|
|
var testSubject = &StepGetIPAddress{
|
|
|
|
get: func(resourceGroupName string, ipAddressName string, nicName string) (string, error) {
|
|
|
|
actualResourceGroupName = resourceGroupName
|
|
|
|
actualIPAddressName = ipAddressName
|
|
|
|
actualNicName = nicName
|
|
|
|
|
|
|
|
return "127.0.0.1", nil
|
|
|
|
},
|
|
|
|
endpoint: endpoint,
|
|
|
|
say: func(message string) {},
|
|
|
|
error: func(e error) {},
|
|
|
|
}
|
|
|
|
|
|
|
|
stateBag := createTestStateBagStepGetIPAddress()
|
|
|
|
var result = testSubject.Run(stateBag)
|
|
|
|
|
|
|
|
if result != multistep.ActionContinue {
|
|
|
|
t.Fatalf("Expected the step to return 'ActionContinue', but got '%d'.", result)
|
|
|
|
}
|
|
|
|
|
|
|
|
var expectedResourceGroupName = stateBag.Get(constants.ArmResourceGroupName).(string)
|
|
|
|
var expectedIPAddressName = stateBag.Get(constants.ArmPublicIPAddressName).(string)
|
|
|
|
var expectedNicName = stateBag.Get(constants.ArmNicName).(string)
|
|
|
|
|
|
|
|
if actualIPAddressName != expectedIPAddressName {
|
|
|
|
t.Fatal("Expected StepGetIPAddress to source 'constants.ArmIPAddressName' from the state bag, but it did not.")
|
|
|
|
}
|
|
|
|
|
|
|
|
if actualResourceGroupName != expectedResourceGroupName {
|
|
|
|
t.Fatal("Expected StepGetIPAddress to source 'constants.ArmResourceGroupName' from the state bag, but it did not.")
|
|
|
|
}
|
|
|
|
|
|
|
|
if actualNicName != expectedNicName {
|
|
|
|
t.Fatalf("Expected StepGetIPAddress to source 'constants.ArmNetworkInterfaceName' from the state bag, but it did not.")
|
|
|
|
}
|
|
|
|
|
|
|
|
expectedIPAddress, ok := stateBag.GetOk(constants.SSHHost)
|
|
|
|
if !ok {
|
|
|
|
t.Fatalf("Expected the state bag to have a value for '%s', but it did not.", constants.SSHHost)
|
|
|
|
}
|
|
|
|
|
|
|
|
if expectedIPAddress != "127.0.0.1" {
|
|
|
|
t.Fatalf("Expected the value of stateBag[%s] to be '127.0.0.1', but got '%s'.", constants.SSHHost, expectedIPAddress)
|
|
|
|
}
|
2016-03-04 05:14:55 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func createTestStateBagStepGetIPAddress() multistep.StateBag {
|
|
|
|
stateBag := new(multistep.BasicStateBag)
|
|
|
|
|
|
|
|
stateBag.Put(constants.ArmPublicIPAddressName, "Unit Test: PublicIPAddressName")
|
2016-06-30 19:51:52 -04:00
|
|
|
stateBag.Put(constants.ArmNicName, "Unit Test: NicName")
|
2016-03-04 05:14:55 -05:00
|
|
|
stateBag.Put(constants.ArmResourceGroupName, "Unit Test: ResourceGroupName")
|
|
|
|
|
|
|
|
return stateBag
|
|
|
|
}
|