driftctl/pkg/middlewares/aws_nat_gateway_eip_assoc_t...

81 lines
2.0 KiB
Go

package middlewares
import (
"strings"
"testing"
awssdk "github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awsutil"
"github.com/cloudskiff/driftctl/pkg/resource"
"github.com/cloudskiff/driftctl/pkg/resource/aws"
"github.com/r3labs/diff/v2"
)
func TestAwsNatGatewayEipAssoc_Execute(t *testing.T) {
tests := []struct {
name string
input []resource.Resource
expected []resource.Resource
}{
{
name: "test nil values do not crash middleware",
input: []resource.Resource{
&aws.AwsNatGateway{
Id: "nat-0a5408508b19ef490",
},
&aws.AwsEipAssociation{
Id: "eipassoc-0d32af6acf31df913",
},
},
expected: []resource.Resource{
&aws.AwsNatGateway{
Id: "nat-0a5408508b19ef490",
},
&aws.AwsEipAssociation{
Id: "eipassoc-0d32af6acf31df913",
},
},
},
{
name: "test eip assoc ignored when associated to a nat gateway",
input: []resource.Resource{
&aws.AwsNatGateway{
AllocationId: awssdk.String("eipalloc-0f3e9fff457bb770b"),
},
&aws.AwsEipAssociation{
AllocationId: awssdk.String("eipalloc-0f3e9fff457bb770b"),
},
&aws.AwsEipAssociation{
AllocationId: awssdk.String("eipalloc-1234567890"),
},
},
expected: []resource.Resource{
&aws.AwsNatGateway{
AllocationId: awssdk.String("eipalloc-0f3e9fff457bb770b"),
},
&aws.AwsEipAssociation{
AllocationId: awssdk.String("eipalloc-1234567890"),
},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
middleware := NewAwsNatGatewayEipAssoc()
err := middleware.Execute(&tt.input, &[]resource.Resource{})
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))
}
}
})
}
}