driftctl/pkg/middlewares/azurerm_subnet_expander_tes...

175 lines
4.1 KiB
Go
Raw Normal View History

2021-10-01 08:28:16 +00:00
package middlewares
import (
"strings"
"testing"
"github.com/aws/aws-sdk-go/aws/awsutil"
"github.com/r3labs/diff/v2"
"github.com/snyk/driftctl/enumeration/resource"
"github.com/snyk/driftctl/enumeration/resource/azurerm"
2022-07-21 08:37:03 +00:00
dctlresource "github.com/snyk/driftctl/pkg/resource"
2021-10-01 08:28:16 +00:00
)
func TestAzurermSubnetExpander_Execute(t *testing.T) {
tests := []struct {
name string
input []*resource.Resource
expected []*resource.Resource
2022-07-21 08:37:03 +00:00
mock func(factory *dctlresource.MockResourceFactory)
2021-10-01 08:28:16 +00:00
}{
{
name: "test with nil subnet attribute",
input: []*resource.Resource{
{
Id: "network1",
Type: azurerm.AzureVirtualNetworkResourceType,
Attrs: &resource.Attributes{
"subnet": nil,
},
},
},
expected: []*resource.Resource{
{
Id: "network1",
Type: azurerm.AzureVirtualNetworkResourceType,
Attrs: &resource.Attributes{
"subnet": nil,
},
},
},
},
{
name: "test with empty subnet attributes",
input: []*resource.Resource{
{
Id: "network1",
Type: azurerm.AzureVirtualNetworkResourceType,
Attrs: &resource.Attributes{
"subnet": []interface{}{},
},
},
},
expected: []*resource.Resource{
{
Id: "network1",
Type: azurerm.AzureVirtualNetworkResourceType,
Attrs: &resource.Attributes{},
},
},
},
{
name: "test that resource will not be expanded if it already exist",
input: []*resource.Resource{
{
Id: "exist",
Type: azurerm.AzureSubnetResourceType,
Attrs: &resource.Attributes{},
},
{
Id: "network1",
Type: azurerm.AzureVirtualNetworkResourceType,
Attrs: &resource.Attributes{
"subnet": []interface{}{
map[string]interface{}{
"id": "exist",
},
},
},
},
},
expected: []*resource.Resource{
{
Id: "exist",
Type: azurerm.AzureSubnetResourceType,
Attrs: &resource.Attributes{},
},
{
Id: "network1",
Type: azurerm.AzureVirtualNetworkResourceType,
Attrs: &resource.Attributes{},
},
},
},
{
name: "test subnet are expanded",
input: []*resource.Resource{
{
Id: "fake_resource",
},
{
Id: "network1",
Type: azurerm.AzureVirtualNetworkResourceType,
Attrs: &resource.Attributes{
"subnet": []interface{}{
map[string]interface{}{
"id": "subnet1",
},
map[string]interface{}{
"id": "subnet2",
},
},
},
},
},
expected: []*resource.Resource{
{
Id: "fake_resource",
},
{
Id: "network1",
Type: azurerm.AzureVirtualNetworkResourceType,
Attrs: &resource.Attributes{},
},
{
Id: "subnet1",
Type: azurerm.AzureSubnetResourceType,
Attrs: &resource.Attributes{},
},
{
Id: "subnet2",
Type: azurerm.AzureSubnetResourceType,
Attrs: &resource.Attributes{},
},
},
2022-07-21 08:37:03 +00:00
mock: func(factory *dctlresource.MockResourceFactory) {
2021-10-01 08:28:16 +00:00
factory.On("CreateAbstractResource", azurerm.AzureSubnetResourceType, "subnet1", map[string]interface{}{}).Times(1).Return(&resource.Resource{
Id: "subnet1",
Type: azurerm.AzureSubnetResourceType,
Attrs: &resource.Attributes{},
}, nil)
factory.On("CreateAbstractResource", azurerm.AzureSubnetResourceType, "subnet2", map[string]interface{}{}).Times(1).Return(&resource.Resource{
Id: "subnet2",
Type: azurerm.AzureSubnetResourceType,
Attrs: &resource.Attributes{},
}, nil)
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
2022-07-21 08:37:03 +00:00
factory := &dctlresource.MockResourceFactory{}
2021-10-01 08:28:16 +00:00
if tt.mock != nil {
tt.mock(factory)
}
m := NewAzurermSubnetExpander(factory)
err := m.Execute(&[]*resource.Resource{}, &tt.input)
if err != nil {
t.Fatal(err)
}
changelog, err := diff.Diff(tt.expected, tt.input)
if err != nil {
t.Fatal(err)
}
if len(changelog) > 0 {
for _, change := range changelog {
t.Errorf("%s got = %v, want %v", strings.Join(change.Path, "."), awsutil.Prettify(change.From), awsutil.Prettify(change.To))
}
}
})
}
}