2018-08-02 02:10:17 -07:00
|
|
|
// Copyright 2015 The Prometheus Authors
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package azure
|
|
|
|
|
|
|
|
import (
|
|
|
|
"reflect"
|
|
|
|
"testing"
|
|
|
|
|
2019-01-28 10:30:29 -08:00
|
|
|
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2018-10-01/compute"
|
2018-08-02 02:10:17 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMapFromVMWithEmptyTags(t *testing.T) {
|
|
|
|
id := "test"
|
|
|
|
name := "name"
|
|
|
|
vmType := "type"
|
|
|
|
location := "westeurope"
|
|
|
|
networkProfile := compute.NetworkProfile{}
|
|
|
|
properties := &compute.VirtualMachineProperties{
|
|
|
|
StorageProfile: &compute.StorageProfile{
|
|
|
|
OsDisk: &compute.OSDisk{
|
|
|
|
OsType: "Linux",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
NetworkProfile: &networkProfile,
|
|
|
|
}
|
|
|
|
|
|
|
|
testVM := compute.VirtualMachine{
|
2019-01-28 10:30:29 -08:00
|
|
|
ID: &id,
|
|
|
|
Name: &name,
|
|
|
|
Type: &vmType,
|
|
|
|
Location: &location,
|
|
|
|
Tags: nil,
|
|
|
|
VirtualMachineProperties: properties,
|
2018-08-02 02:10:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
expectedVM := virtualMachine{
|
|
|
|
ID: id,
|
|
|
|
Name: name,
|
|
|
|
Type: vmType,
|
|
|
|
Location: location,
|
|
|
|
OsType: "Linux",
|
|
|
|
Tags: map[string]*string{},
|
|
|
|
NetworkProfile: networkProfile,
|
|
|
|
}
|
|
|
|
|
|
|
|
actualVM := mapFromVM(testVM)
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(expectedVM, actualVM) {
|
|
|
|
t.Errorf("Expected %v got %v", expectedVM, actualVM)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMapFromVMWithTags(t *testing.T) {
|
|
|
|
id := "test"
|
|
|
|
name := "name"
|
|
|
|
vmType := "type"
|
|
|
|
location := "westeurope"
|
|
|
|
tags := map[string]*string{
|
|
|
|
"prometheus": new(string),
|
|
|
|
}
|
|
|
|
networkProfile := compute.NetworkProfile{}
|
|
|
|
properties := &compute.VirtualMachineProperties{
|
|
|
|
StorageProfile: &compute.StorageProfile{
|
|
|
|
OsDisk: &compute.OSDisk{
|
|
|
|
OsType: "Linux",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
NetworkProfile: &networkProfile,
|
|
|
|
}
|
|
|
|
|
|
|
|
testVM := compute.VirtualMachine{
|
2019-01-28 10:30:29 -08:00
|
|
|
ID: &id,
|
|
|
|
Name: &name,
|
|
|
|
Type: &vmType,
|
|
|
|
Location: &location,
|
|
|
|
Tags: tags,
|
|
|
|
VirtualMachineProperties: properties,
|
2018-08-02 02:10:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
expectedVM := virtualMachine{
|
|
|
|
ID: id,
|
|
|
|
Name: name,
|
|
|
|
Type: vmType,
|
|
|
|
Location: location,
|
|
|
|
OsType: "Linux",
|
|
|
|
Tags: tags,
|
|
|
|
NetworkProfile: networkProfile,
|
|
|
|
}
|
|
|
|
|
|
|
|
actualVM := mapFromVM(testVM)
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(expectedVM, actualVM) {
|
|
|
|
t.Errorf("Expected %v got %v", expectedVM, actualVM)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMapFromVMScaleSetVMWithEmptyTags(t *testing.T) {
|
|
|
|
id := "test"
|
|
|
|
name := "name"
|
|
|
|
vmType := "type"
|
|
|
|
location := "westeurope"
|
|
|
|
networkProfile := compute.NetworkProfile{}
|
|
|
|
properties := &compute.VirtualMachineScaleSetVMProperties{
|
|
|
|
StorageProfile: &compute.StorageProfile{
|
|
|
|
OsDisk: &compute.OSDisk{
|
|
|
|
OsType: "Linux",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
NetworkProfile: &networkProfile,
|
|
|
|
}
|
|
|
|
|
|
|
|
testVM := compute.VirtualMachineScaleSetVM{
|
2019-01-28 10:30:29 -08:00
|
|
|
ID: &id,
|
|
|
|
Name: &name,
|
|
|
|
Type: &vmType,
|
|
|
|
Location: &location,
|
|
|
|
Tags: nil,
|
|
|
|
VirtualMachineScaleSetVMProperties: properties,
|
2018-08-02 02:10:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
scaleSet := "testSet"
|
|
|
|
expectedVM := virtualMachine{
|
|
|
|
ID: id,
|
|
|
|
Name: name,
|
|
|
|
Type: vmType,
|
|
|
|
Location: location,
|
|
|
|
OsType: "Linux",
|
|
|
|
Tags: map[string]*string{},
|
|
|
|
NetworkProfile: networkProfile,
|
|
|
|
ScaleSet: scaleSet,
|
|
|
|
}
|
|
|
|
|
|
|
|
actualVM := mapFromVMScaleSetVM(testVM, scaleSet)
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(expectedVM, actualVM) {
|
|
|
|
t.Errorf("Expected %v got %v", expectedVM, actualVM)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMapFromVMScaleSetVMWithTags(t *testing.T) {
|
|
|
|
id := "test"
|
|
|
|
name := "name"
|
|
|
|
vmType := "type"
|
|
|
|
location := "westeurope"
|
|
|
|
tags := map[string]*string{
|
|
|
|
"prometheus": new(string),
|
|
|
|
}
|
|
|
|
networkProfile := compute.NetworkProfile{}
|
|
|
|
properties := &compute.VirtualMachineScaleSetVMProperties{
|
|
|
|
StorageProfile: &compute.StorageProfile{
|
|
|
|
OsDisk: &compute.OSDisk{
|
|
|
|
OsType: "Linux",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
NetworkProfile: &networkProfile,
|
|
|
|
}
|
|
|
|
|
|
|
|
testVM := compute.VirtualMachineScaleSetVM{
|
2019-01-28 10:30:29 -08:00
|
|
|
ID: &id,
|
|
|
|
Name: &name,
|
|
|
|
Type: &vmType,
|
|
|
|
Location: &location,
|
|
|
|
Tags: tags,
|
|
|
|
VirtualMachineScaleSetVMProperties: properties,
|
2018-08-02 02:10:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
scaleSet := "testSet"
|
|
|
|
expectedVM := virtualMachine{
|
|
|
|
ID: id,
|
|
|
|
Name: name,
|
|
|
|
Type: vmType,
|
|
|
|
Location: location,
|
|
|
|
OsType: "Linux",
|
|
|
|
Tags: tags,
|
|
|
|
NetworkProfile: networkProfile,
|
|
|
|
ScaleSet: scaleSet,
|
|
|
|
}
|
|
|
|
|
|
|
|
actualVM := mapFromVMScaleSetVM(testVM, scaleSet)
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(expectedVM, actualVM) {
|
|
|
|
t.Errorf("Expected %v got %v", expectedVM, actualVM)
|
|
|
|
}
|
|
|
|
}
|