Issue 165: Add security_group_rule_supplier to ec2_repository
parent
18e3a76d90
commit
2329c840d2
|
@ -1,6 +1,7 @@
|
|||
package aws
|
||||
|
||||
import (
|
||||
"github.com/cloudskiff/driftctl/pkg/remote/aws/repository"
|
||||
remoteerror "github.com/cloudskiff/driftctl/pkg/remote/error"
|
||||
|
||||
"github.com/cloudskiff/driftctl/pkg/resource"
|
||||
|
@ -10,7 +11,6 @@ import (
|
|||
|
||||
"github.com/aws/aws-sdk-go/aws"
|
||||
"github.com/aws/aws-sdk-go/service/ec2"
|
||||
"github.com/aws/aws-sdk-go/service/ec2/ec2iface"
|
||||
"github.com/hashicorp/terraform/flatmap"
|
||||
"github.com/sirupsen/logrus"
|
||||
"github.com/zclconf/go-cty/cty"
|
||||
|
@ -24,7 +24,7 @@ const (
|
|||
type VPCSecurityGroupRuleSupplier struct {
|
||||
reader terraform.ResourceReader
|
||||
deserializer *resource.Deserializer
|
||||
client ec2iface.EC2API
|
||||
client repository.EC2Repository
|
||||
runner *terraform.ParallelResourceReader
|
||||
}
|
||||
|
||||
|
@ -70,13 +70,13 @@ func NewVPCSecurityGroupRuleSupplier(provider *AWSTerraformProvider, deserialize
|
|||
return &VPCSecurityGroupRuleSupplier{
|
||||
provider,
|
||||
deserializer,
|
||||
ec2.New(provider.session),
|
||||
repository.NewEC2Repository(provider.session),
|
||||
terraform.NewParallelResourceReader(provider.Runner().SubRunner()),
|
||||
}
|
||||
}
|
||||
|
||||
func (s *VPCSecurityGroupRuleSupplier) Resources() ([]resource.Resource, error) {
|
||||
securityGroups, defaultSecurityGroups, err := listSecurityGroups(s.client)
|
||||
securityGroups, defaultSecurityGroups, err := s.client.ListAllSecurityGroups()
|
||||
if err != nil {
|
||||
return nil, remoteerror.NewResourceEnumerationError(err, resourceaws.AwsSecurityGroupRuleResourceType)
|
||||
}
|
||||
|
|
|
@ -4,6 +4,7 @@ import (
|
|||
"context"
|
||||
"testing"
|
||||
|
||||
"github.com/cloudskiff/driftctl/pkg/remote/aws/repository"
|
||||
remoteerror "github.com/cloudskiff/driftctl/pkg/remote/error"
|
||||
awstest "github.com/cloudskiff/driftctl/test/aws"
|
||||
testresource "github.com/cloudskiff/driftctl/test/resource"
|
||||
|
@ -31,39 +32,28 @@ func TestVPCSecurityGroupRuleSupplier_Resources(t *testing.T) {
|
|||
cases := []struct {
|
||||
test string
|
||||
dirName string
|
||||
mocks func(client *awstest.MockFakeEC2)
|
||||
mocks func(client *repository.MockEC2Repository)
|
||||
err error
|
||||
}{
|
||||
{
|
||||
test: "no security group rules",
|
||||
dirName: "vpc_security_group_rule_empty",
|
||||
mocks: func(client *awstest.MockFakeEC2) {
|
||||
client.On("DescribeSecurityGroupsPages",
|
||||
&ec2.DescribeSecurityGroupsInput{},
|
||||
mock.MatchedBy(func(callback func(res *ec2.DescribeSecurityGroupsOutput, lastPage bool) bool) bool {
|
||||
callback(&ec2.DescribeSecurityGroupsOutput{
|
||||
SecurityGroups: []*ec2.SecurityGroup{
|
||||
mocks: func(client *repository.MockEC2Repository) {
|
||||
client.On("ListAllSecurityGroups").Once().Return([]*ec2.SecurityGroup{
|
||||
{
|
||||
GroupId: aws.String("sg-0254c038e32f25530"),
|
||||
IpPermissions: []*ec2.IpPermission{},
|
||||
IpPermissionsEgress: []*ec2.IpPermission{},
|
||||
},
|
||||
},
|
||||
}, true)
|
||||
return true
|
||||
})).Return(nil)
|
||||
}, nil, nil)
|
||||
},
|
||||
err: nil,
|
||||
},
|
||||
{
|
||||
test: "with security group rules",
|
||||
dirName: "vpc_security_group_rule_multiple",
|
||||
mocks: func(client *awstest.MockFakeEC2) {
|
||||
client.On("DescribeSecurityGroupsPages",
|
||||
&ec2.DescribeSecurityGroupsInput{},
|
||||
mock.MatchedBy(func(callback func(res *ec2.DescribeSecurityGroupsOutput, lastPage bool) bool) bool {
|
||||
callback(&ec2.DescribeSecurityGroupsOutput{
|
||||
SecurityGroups: []*ec2.SecurityGroup{
|
||||
mocks: func(client *repository.MockEC2Repository) {
|
||||
client.On("ListAllSecurityGroups").Once().Return([]*ec2.SecurityGroup{
|
||||
{
|
||||
GroupId: aws.String("sg-0254c038e32f25530"),
|
||||
IpPermissions: []*ec2.IpPermission{
|
||||
|
@ -113,10 +103,6 @@ func TestVPCSecurityGroupRuleSupplier_Resources(t *testing.T) {
|
|||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}, false)
|
||||
callback(&ec2.DescribeSecurityGroupsOutput{
|
||||
SecurityGroups: []*ec2.SecurityGroup{
|
||||
{
|
||||
GroupId: aws.String("sg-0cc8b3c3c2851705a"),
|
||||
IpPermissions: []*ec2.IpPermission{
|
||||
|
@ -155,22 +141,15 @@ func TestVPCSecurityGroupRuleSupplier_Resources(t *testing.T) {
|
|||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}, true)
|
||||
return true
|
||||
})).Return(nil)
|
||||
}, nil, nil)
|
||||
},
|
||||
err: nil,
|
||||
},
|
||||
{
|
||||
test: "should ignore default security group default rules",
|
||||
dirName: "vpc_security_group_default_rules",
|
||||
mocks: func(client *awstest.MockFakeEC2) {
|
||||
client.On("DescribeSecurityGroupsPages",
|
||||
&ec2.DescribeSecurityGroupsInput{},
|
||||
mock.MatchedBy(func(callback func(res *ec2.DescribeSecurityGroupsOutput, lastPage bool) bool) bool {
|
||||
callback(&ec2.DescribeSecurityGroupsOutput{
|
||||
SecurityGroups: []*ec2.SecurityGroup{
|
||||
mocks: func(client *repository.MockEC2Repository) {
|
||||
client.On("ListAllSecurityGroups").Once().Return([]*ec2.SecurityGroup{
|
||||
{
|
||||
GroupId: aws.String("sg-a74815c8"),
|
||||
GroupName: aws.String("default"),
|
||||
|
@ -211,22 +190,15 @@ func TestVPCSecurityGroupRuleSupplier_Resources(t *testing.T) {
|
|||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}, true)
|
||||
return true
|
||||
})).Return(nil)
|
||||
}, nil, nil)
|
||||
},
|
||||
err: nil,
|
||||
},
|
||||
{
|
||||
test: "cannot list security group rules",
|
||||
dirName: "vpc_security_group_rule_empty",
|
||||
mocks: func(client *awstest.MockFakeEC2) {
|
||||
client.On("DescribeSecurityGroupsPages",
|
||||
&ec2.DescribeSecurityGroupsInput{},
|
||||
mock.MatchedBy(func(callback func(res *ec2.DescribeSecurityGroupsOutput, lastPage bool) bool) bool {
|
||||
return true
|
||||
})).Return(awserr.NewRequestFailure(nil, 403, ""))
|
||||
mocks: func(client *repository.MockEC2Repository) {
|
||||
client.On("ListAllSecurityGroups").Once().Return(nil, nil, awserr.NewRequestFailure(nil, 403, ""))
|
||||
},
|
||||
err: remoteerror.NewResourceEnumerationError(awserr.NewRequestFailure(nil, 403, ""), resourceaws.AwsSecurityGroupRuleResourceType),
|
||||
},
|
||||
|
@ -251,7 +223,7 @@ func TestVPCSecurityGroupRuleSupplier_Resources(t *testing.T) {
|
|||
}
|
||||
|
||||
t.Run(c.test, func(tt *testing.T) {
|
||||
fakeEC2 := awstest.MockFakeEC2{}
|
||||
fakeEC2 := repository.MockEC2Repository{}
|
||||
c.mocks(&fakeEC2)
|
||||
provider := mocks2.NewMockedGoldenTFProvider(c.dirName, providerLibrary.Provider(terraform.AWS), shouldUpdate)
|
||||
s := &VPCSecurityGroupRuleSupplier{
|
||||
|
|
Loading…
Reference in New Issue