driftctl/pkg/middlewares/azurerm_route_expander_test.go

194 lines
4.4 KiB
Go
Raw Normal View History

2021-10-04 13:26:21 +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-04 13:26:21 +00:00
)
func TestAzurermRouteExpander_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-04 13:26:21 +00:00
}{
{
name: "test with nil route attribute",
input: []*resource.Resource{
{
Id: "table1",
Type: azurerm.AzureRouteTableResourceType,
Attrs: &resource.Attributes{
"route": nil,
},
},
},
expected: []*resource.Resource{
{
Id: "table1",
Type: azurerm.AzureRouteTableResourceType,
Attrs: &resource.Attributes{
"route": nil,
},
},
},
},
{
name: "test with empty route attributes",
input: []*resource.Resource{
{
Id: "table1",
Type: azurerm.AzureRouteTableResourceType,
Attrs: &resource.Attributes{
"route": []interface{}{},
},
},
},
expected: []*resource.Resource{
{
Id: "table1",
Type: azurerm.AzureRouteTableResourceType,
Attrs: &resource.Attributes{},
},
},
},
{
name: "test that resource will not be expanded if it already exist",
input: []*resource.Resource{
{
Id: "table1/routes/exist",
Type: azurerm.AzureRouteResourceType,
Attrs: &resource.Attributes{},
},
{
Id: "table1",
Type: azurerm.AzureRouteTableResourceType,
Attrs: &resource.Attributes{
"route": []interface{}{
map[string]interface{}{
"name": "exist",
},
},
},
},
},
expected: []*resource.Resource{
{
Id: "table1/routes/exist",
Type: azurerm.AzureRouteResourceType,
Attrs: &resource.Attributes{},
},
{
Id: "table1",
Type: azurerm.AzureRouteTableResourceType,
Attrs: &resource.Attributes{},
},
},
},
{
name: "test routes are expanded",
input: []*resource.Resource{
{
Id: "fake_resource",
},
{
Id: "table1",
Type: azurerm.AzureRouteTableResourceType,
Attrs: &resource.Attributes{
"name": "table1",
"route": []interface{}{
map[string]interface{}{
"name": "route1",
},
map[string]interface{}{
"name": "route2",
},
},
},
},
},
expected: []*resource.Resource{
{
Id: "fake_resource",
},
{
Id: "table1",
Type: azurerm.AzureRouteTableResourceType,
Attrs: &resource.Attributes{
"name": "table1",
},
},
{
Id: "table1/routes/route1",
Type: azurerm.AzureRouteResourceType,
Attrs: &resource.Attributes{},
},
{
Id: "table1/routes/route2",
Type: azurerm.AzureRouteResourceType,
Attrs: &resource.Attributes{},
},
},
2022-07-21 08:37:03 +00:00
mock: func(factory *dctlresource.MockResourceFactory) {
2021-10-04 13:26:21 +00:00
factory.On(
"CreateAbstractResource",
azurerm.AzureRouteResourceType,
"table1/routes/route1",
map[string]interface{}{
"name": "route1",
"route_table_name": "table1",
},
).Times(1).Return(&resource.Resource{
Id: "table1/routes/route1",
Type: azurerm.AzureRouteResourceType,
Attrs: &resource.Attributes{},
}, nil)
factory.On(
"CreateAbstractResource",
azurerm.AzureRouteResourceType,
"table1/routes/route2",
map[string]interface{}{
"name": "route2",
"route_table_name": "table1",
},
).Times(1).Return(&resource.Resource{
Id: "table1/routes/route2",
Type: azurerm.AzureRouteResourceType,
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-04 13:26:21 +00:00
if tt.mock != nil {
tt.mock(factory)
}
m := NewAzurermRouteExpander(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))
}
}
})
}
}