mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
2d8fcd9bf4
Co-authored-by: Malte Poll <mp@edgeless.systems> Co-authored-by: katexochen <katexochen@users.noreply.github.com> Co-authored-by: Daniel Weiße <dw@edgeless.systems> Co-authored-by: Thomas Tendyck <tt@edgeless.systems> Co-authored-by: Benedict Schlueter <bs@edgeless.systems> Co-authored-by: leongross <leon.gross@rub.de> Co-authored-by: Moritz Eckert <m1gh7ym0@gmail.com>
215 lines
6.2 KiB
Go
215 lines
6.2 KiB
Go
package azure
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute"
|
|
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/network/armnetwork"
|
|
"github.com/Azure/go-autorest/autorest/to"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestGetVMInterfaces(t *testing.T) {
|
|
expectedConfigs := []*armnetwork.InterfaceIPConfiguration{
|
|
{
|
|
Properties: &armnetwork.InterfaceIPConfigurationPropertiesFormat{
|
|
PrivateIPAddress: to.StringPtr("192.0.2.0"),
|
|
},
|
|
},
|
|
}
|
|
vm := armcompute.VirtualMachine{
|
|
Properties: &armcompute.VirtualMachineProperties{
|
|
NetworkProfile: &armcompute.NetworkProfile{
|
|
NetworkInterfaces: []*armcompute.NetworkInterfaceReference{
|
|
{
|
|
ID: to.StringPtr("/subscriptions/subscription-id/resourceGroups/resource-group/providers/Microsoft.Network/networkInterfaces/interface-name"),
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
testCases := map[string]struct {
|
|
vm armcompute.VirtualMachine
|
|
networkInterfacesAPI networkInterfacesAPI
|
|
expectErr bool
|
|
expectedConfigs []*armnetwork.InterfaceIPConfiguration
|
|
}{
|
|
"retrieval works": {
|
|
vm: vm,
|
|
networkInterfacesAPI: newNetworkInterfacesStub(),
|
|
expectedConfigs: expectedConfigs,
|
|
},
|
|
"vm can have 0 interfaces": {
|
|
vm: armcompute.VirtualMachine{},
|
|
networkInterfacesAPI: newNetworkInterfacesStub(),
|
|
expectedConfigs: []*armnetwork.InterfaceIPConfiguration{},
|
|
},
|
|
"interface retrieval fails": {
|
|
vm: vm,
|
|
networkInterfacesAPI: newFailingNetworkInterfacesStub(),
|
|
expectErr: true,
|
|
},
|
|
}
|
|
|
|
for name, tc := range testCases {
|
|
t.Run(name, func(t *testing.T) {
|
|
assert := assert.New(t)
|
|
require := require.New(t)
|
|
|
|
metadata := Metadata{
|
|
networkInterfacesAPI: tc.networkInterfacesAPI,
|
|
}
|
|
configs, err := metadata.getVMInterfaces(context.Background(), tc.vm, "resource-group")
|
|
|
|
if tc.expectErr {
|
|
assert.Error(err)
|
|
return
|
|
}
|
|
require.NoError(err)
|
|
assert.Equal(tc.expectedConfigs, configs)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestGetScaleSetVMInterfaces(t *testing.T) {
|
|
expectedConfigs := []*armnetwork.InterfaceIPConfiguration{
|
|
{
|
|
Properties: &armnetwork.InterfaceIPConfigurationPropertiesFormat{
|
|
PrivateIPAddress: to.StringPtr("192.0.2.0"),
|
|
},
|
|
},
|
|
}
|
|
vm := armcompute.VirtualMachineScaleSetVM{
|
|
Properties: &armcompute.VirtualMachineScaleSetVMProperties{
|
|
NetworkProfile: &armcompute.NetworkProfile{
|
|
NetworkInterfaces: []*armcompute.NetworkInterfaceReference{
|
|
{
|
|
ID: to.StringPtr("/subscriptions/subscription-id/resourceGroups/resource-group/providers/Microsoft.Compute/virtualMachineScaleSets/scale-set-name/virtualMachines/instance-id/networkInterfaces/interface-name"),
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
testCases := map[string]struct {
|
|
vm armcompute.VirtualMachineScaleSetVM
|
|
networkInterfacesAPI networkInterfacesAPI
|
|
expectErr bool
|
|
expectedConfigs []*armnetwork.InterfaceIPConfiguration
|
|
}{
|
|
"retrieval works": {
|
|
vm: vm,
|
|
networkInterfacesAPI: newNetworkInterfacesStub(),
|
|
expectedConfigs: expectedConfigs,
|
|
},
|
|
"vm can have 0 interfaces": {
|
|
vm: armcompute.VirtualMachineScaleSetVM{},
|
|
networkInterfacesAPI: newNetworkInterfacesStub(),
|
|
expectedConfigs: []*armnetwork.InterfaceIPConfiguration{},
|
|
},
|
|
"interface retrieval fails": {
|
|
vm: vm,
|
|
networkInterfacesAPI: newFailingNetworkInterfacesStub(),
|
|
expectErr: true,
|
|
},
|
|
}
|
|
|
|
for name, tc := range testCases {
|
|
t.Run(name, func(t *testing.T) {
|
|
assert := assert.New(t)
|
|
require := require.New(t)
|
|
|
|
metadata := Metadata{
|
|
networkInterfacesAPI: tc.networkInterfacesAPI,
|
|
}
|
|
configs, err := metadata.getScaleSetVMInterfaces(context.Background(), tc.vm, "resource-group", "scale-set-name", "instance-id")
|
|
|
|
if tc.expectErr {
|
|
assert.Error(err)
|
|
return
|
|
}
|
|
require.NoError(err)
|
|
assert.Equal(tc.expectedConfigs, configs)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestExtractPrivateIPs(t *testing.T) {
|
|
testCases := map[string]struct {
|
|
interfaceIPConfigs []*armnetwork.InterfaceIPConfiguration
|
|
expectedIPs []string
|
|
}{
|
|
"extraction works": {
|
|
interfaceIPConfigs: []*armnetwork.InterfaceIPConfiguration{
|
|
{
|
|
Properties: &armnetwork.InterfaceIPConfigurationPropertiesFormat{
|
|
PrivateIPAddress: to.StringPtr("192.0.2.0"),
|
|
},
|
|
},
|
|
},
|
|
expectedIPs: []string{"192.0.2.0"},
|
|
},
|
|
"can be empty": {
|
|
interfaceIPConfigs: []*armnetwork.InterfaceIPConfiguration{},
|
|
},
|
|
"invalid interface is skipped": {
|
|
interfaceIPConfigs: []*armnetwork.InterfaceIPConfiguration{
|
|
{},
|
|
},
|
|
},
|
|
}
|
|
|
|
for name, tc := range testCases {
|
|
t.Run(name, func(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
ips := extractPrivateIPs(tc.interfaceIPConfigs)
|
|
|
|
assert.ElementsMatch(tc.expectedIPs, ips)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestExtractInterfaceNamesFromInterfaceReferences(t *testing.T) {
|
|
testCases := map[string]struct {
|
|
references []*armcompute.NetworkInterfaceReference
|
|
expectedNames []string
|
|
}{
|
|
"extraction with individual interface reference works": {
|
|
references: []*armcompute.NetworkInterfaceReference{
|
|
{
|
|
ID: to.StringPtr("/subscriptions/subscription-id/resourceGroups/resource-group/providers/Microsoft.Network/networkInterfaces/interface-name"),
|
|
},
|
|
},
|
|
expectedNames: []string{"interface-name"},
|
|
},
|
|
"extraction with scale set interface reference works": {
|
|
references: []*armcompute.NetworkInterfaceReference{
|
|
{
|
|
ID: to.StringPtr("/subscriptions/subscription-id/resourceGroups/resource-group/providers/Microsoft.Compute/virtualMachineScaleSets/scale-set-name/virtualMachines/instance-id/networkInterfaces/interface-name"),
|
|
},
|
|
},
|
|
expectedNames: []string{"interface-name"},
|
|
},
|
|
"can be empty": {
|
|
references: []*armcompute.NetworkInterfaceReference{},
|
|
},
|
|
"interface reference containing nil fields is skipped": {
|
|
references: []*armcompute.NetworkInterfaceReference{
|
|
{},
|
|
},
|
|
},
|
|
}
|
|
|
|
for name, tc := range testCases {
|
|
t.Run(name, func(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
names := extractInterfaceNamesFromInterfaceReferences(tc.references)
|
|
|
|
assert.ElementsMatch(tc.expectedNames, names)
|
|
})
|
|
}
|
|
}
|