2020-12-15 10:07:03 +00:00
|
|
|
package aws
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
|
2021-01-20 13:01:57 +00:00
|
|
|
remoteerror "github.com/cloudskiff/driftctl/pkg/remote/error"
|
|
|
|
|
|
|
|
"github.com/aws/aws-sdk-go/aws/awserr"
|
|
|
|
resourceaws "github.com/cloudskiff/driftctl/pkg/resource/aws"
|
|
|
|
|
2021-01-15 11:44:13 +00:00
|
|
|
"github.com/cloudskiff/driftctl/pkg/parallel"
|
2021-01-20 13:01:57 +00:00
|
|
|
|
2020-12-15 10:07:03 +00:00
|
|
|
"github.com/cloudskiff/driftctl/pkg/remote/deserializer"
|
|
|
|
awsdeserializer "github.com/cloudskiff/driftctl/pkg/resource/aws/deserializer"
|
|
|
|
|
|
|
|
"github.com/aws/aws-sdk-go/service/ec2"
|
|
|
|
|
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
|
|
|
|
|
|
"github.com/cloudskiff/driftctl/test/goldenfile"
|
|
|
|
mocks2 "github.com/cloudskiff/driftctl/test/mocks"
|
2021-01-20 13:01:57 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2020-12-15 10:07:03 +00:00
|
|
|
"github.com/stretchr/testify/mock"
|
|
|
|
|
|
|
|
"github.com/cloudskiff/driftctl/mocks"
|
|
|
|
|
|
|
|
"github.com/cloudskiff/driftctl/pkg/resource"
|
|
|
|
"github.com/cloudskiff/driftctl/pkg/terraform"
|
|
|
|
"github.com/cloudskiff/driftctl/test"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestVPCSupplier_Resources(t *testing.T) {
|
|
|
|
cases := []struct {
|
|
|
|
test string
|
|
|
|
dirName string
|
|
|
|
mocks func(client *mocks.FakeEC2)
|
|
|
|
err error
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
test: "no VPC",
|
|
|
|
dirName: "vpc_empty",
|
|
|
|
mocks: func(client *mocks.FakeEC2) {
|
|
|
|
client.On("DescribeVpcsPages",
|
|
|
|
&ec2.DescribeVpcsInput{},
|
|
|
|
mock.MatchedBy(func(callback func(res *ec2.DescribeVpcsOutput, lastPage bool) bool) bool {
|
|
|
|
callback(&ec2.DescribeVpcsOutput{}, true)
|
|
|
|
return true
|
|
|
|
})).Return(nil)
|
|
|
|
},
|
|
|
|
err: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: "mixed default VPC and VPC",
|
|
|
|
dirName: "vpc",
|
|
|
|
mocks: func(client *mocks.FakeEC2) {
|
|
|
|
client.On("DescribeVpcsPages",
|
|
|
|
&ec2.DescribeVpcsInput{},
|
|
|
|
mock.MatchedBy(func(callback func(res *ec2.DescribeVpcsOutput, lastPage bool) bool) bool {
|
|
|
|
callback(&ec2.DescribeVpcsOutput{
|
|
|
|
Vpcs: []*ec2.Vpc{
|
|
|
|
{
|
|
|
|
VpcId: aws.String("vpc-a8c5d4c1"),
|
|
|
|
IsDefault: aws.Bool(true),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
VpcId: aws.String("vpc-0768e1fd0029e3fc3"),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
VpcId: aws.String("vpc-020b072316a95b97f"),
|
|
|
|
IsDefault: aws.Bool(false),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, false)
|
|
|
|
callback(&ec2.DescribeVpcsOutput{
|
|
|
|
Vpcs: []*ec2.Vpc{
|
|
|
|
{
|
|
|
|
VpcId: aws.String("vpc-02c50896b59598761"),
|
|
|
|
IsDefault: aws.Bool(false),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, true)
|
|
|
|
return true
|
|
|
|
})).Return(nil)
|
|
|
|
},
|
|
|
|
err: nil,
|
|
|
|
},
|
2021-01-20 13:01:57 +00:00
|
|
|
{
|
|
|
|
test: "cannot list VPC",
|
|
|
|
dirName: "vpc_empty",
|
|
|
|
mocks: func(client *mocks.FakeEC2) {
|
|
|
|
client.On("DescribeVpcsPages",
|
|
|
|
&ec2.DescribeVpcsInput{},
|
|
|
|
mock.MatchedBy(func(callback func(res *ec2.DescribeVpcsOutput, lastPage bool) bool) bool {
|
|
|
|
return true
|
|
|
|
})).Return(awserr.NewRequestFailure(nil, 403, ""))
|
|
|
|
},
|
|
|
|
err: remoteerror.NewResourceEnumerationError(awserr.NewRequestFailure(nil, 403, ""), resourceaws.AwsVpcResourceType),
|
|
|
|
},
|
2020-12-15 10:07:03 +00:00
|
|
|
}
|
|
|
|
for _, c := range cases {
|
|
|
|
shouldUpdate := c.dirName == *goldenfile.Update
|
2021-01-22 17:06:17 +00:00
|
|
|
|
|
|
|
providerLibrary := terraform.NewProviderLibrary()
|
|
|
|
supplierLibrary := resource.NewSupplierLibrary()
|
|
|
|
|
2020-12-15 10:07:03 +00:00
|
|
|
if shouldUpdate {
|
2021-02-09 13:56:11 +00:00
|
|
|
provider, err := InitTestAwsProvider(providerLibrary)
|
2020-12-15 10:07:03 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2021-01-22 17:06:17 +00:00
|
|
|
supplierLibrary.AddSupplier(NewVPCSupplier(provider))
|
2020-12-15 10:07:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
t.Run(c.test, func(tt *testing.T) {
|
|
|
|
fakeEC2 := mocks.FakeEC2{}
|
|
|
|
c.mocks(&fakeEC2)
|
2021-01-22 17:06:17 +00:00
|
|
|
provider := mocks2.NewMockedGoldenTFProvider(c.dirName, providerLibrary.Provider(terraform.AWS), shouldUpdate)
|
2020-12-15 10:07:03 +00:00
|
|
|
VPCDeserializer := awsdeserializer.NewVPCDeserializer()
|
|
|
|
defaultVPCDeserializer := awsdeserializer.NewDefaultVPCDeserializer()
|
|
|
|
s := &VPCSupplier{
|
|
|
|
provider,
|
|
|
|
defaultVPCDeserializer,
|
|
|
|
VPCDeserializer,
|
|
|
|
&fakeEC2,
|
2021-01-15 11:44:13 +00:00
|
|
|
terraform.NewParallelResourceReader(parallel.NewParallelRunner(context.TODO(), 10)),
|
|
|
|
terraform.NewParallelResourceReader(parallel.NewParallelRunner(context.TODO(), 10)),
|
2020-12-15 10:07:03 +00:00
|
|
|
}
|
|
|
|
got, err := s.Resources()
|
2021-01-20 13:01:57 +00:00
|
|
|
assert.Equal(tt, c.err, err)
|
2020-12-15 10:07:03 +00:00
|
|
|
|
|
|
|
mock.AssertExpectationsForObjects(tt)
|
|
|
|
deserializers := []deserializer.CTYDeserializer{VPCDeserializer, defaultVPCDeserializer}
|
|
|
|
test.CtyTestDiffMixed(got, c.dirName, provider, deserializers, shouldUpdate, tt)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|