250 lines
6.7 KiB
Go
250 lines
6.7 KiB
Go
package aws
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
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"
|
|
"github.com/stretchr/testify/mock"
|
|
|
|
"github.com/cloudskiff/driftctl/mocks"
|
|
|
|
"github.com/cloudskiff/driftctl/pkg"
|
|
"github.com/cloudskiff/driftctl/pkg/resource"
|
|
"github.com/cloudskiff/driftctl/pkg/terraform"
|
|
"github.com/cloudskiff/driftctl/test"
|
|
)
|
|
|
|
func TestVPCSecurityGroupRuleSupplier_Resources(t *testing.T) {
|
|
cases := []struct {
|
|
test string
|
|
dirName string
|
|
mocks func(client *mocks.FakeEC2)
|
|
err error
|
|
}{
|
|
{
|
|
test: "no security group rules",
|
|
dirName: "vpc_security_group_rule_empty",
|
|
mocks: func(client *mocks.FakeEC2) {
|
|
client.On("DescribeSecurityGroupsPages",
|
|
&ec2.DescribeSecurityGroupsInput{},
|
|
mock.MatchedBy(func(callback func(res *ec2.DescribeSecurityGroupsOutput, lastPage bool) bool) bool {
|
|
callback(&ec2.DescribeSecurityGroupsOutput{
|
|
SecurityGroups: []*ec2.SecurityGroup{
|
|
{
|
|
GroupId: aws.String("sg-0254c038e32f25530"),
|
|
IpPermissions: []*ec2.IpPermission{},
|
|
IpPermissionsEgress: []*ec2.IpPermission{},
|
|
},
|
|
},
|
|
}, true)
|
|
return true
|
|
})).Return(nil)
|
|
},
|
|
err: nil,
|
|
},
|
|
{
|
|
test: "with security group rules",
|
|
dirName: "vpc_security_group_rule_multiple",
|
|
mocks: func(client *mocks.FakeEC2) {
|
|
client.On("DescribeSecurityGroupsPages",
|
|
&ec2.DescribeSecurityGroupsInput{},
|
|
mock.MatchedBy(func(callback func(res *ec2.DescribeSecurityGroupsOutput, lastPage bool) bool) bool {
|
|
callback(&ec2.DescribeSecurityGroupsOutput{
|
|
SecurityGroups: []*ec2.SecurityGroup{
|
|
{
|
|
GroupId: aws.String("sg-0254c038e32f25530"),
|
|
IpPermissions: []*ec2.IpPermission{
|
|
{
|
|
FromPort: aws.Int64(0),
|
|
ToPort: aws.Int64(65535),
|
|
IpProtocol: aws.String("tcp"),
|
|
UserIdGroupPairs: []*ec2.UserIdGroupPair{
|
|
{
|
|
GroupId: aws.String("sg-0254c038e32f25530"),
|
|
},
|
|
{
|
|
GroupId: aws.String("sg-9e0204ff"),
|
|
},
|
|
},
|
|
},
|
|
{
|
|
IpProtocol: aws.String("-1"),
|
|
IpRanges: []*ec2.IpRange{
|
|
{
|
|
CidrIp: aws.String("1.2.0.0/16"),
|
|
},
|
|
{
|
|
CidrIp: aws.String("5.6.7.0/24"),
|
|
},
|
|
},
|
|
Ipv6Ranges: []*ec2.Ipv6Range{
|
|
{
|
|
CidrIpv6: aws.String("::/0"),
|
|
},
|
|
},
|
|
},
|
|
},
|
|
IpPermissionsEgress: []*ec2.IpPermission{
|
|
{
|
|
IpProtocol: aws.String("-1"),
|
|
IpRanges: []*ec2.IpRange{
|
|
{
|
|
CidrIp: aws.String("0.0.0.0/0"),
|
|
},
|
|
},
|
|
Ipv6Ranges: []*ec2.Ipv6Range{
|
|
{
|
|
CidrIpv6: aws.String("::/0"),
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}, false)
|
|
callback(&ec2.DescribeSecurityGroupsOutput{
|
|
SecurityGroups: []*ec2.SecurityGroup{
|
|
{
|
|
GroupId: aws.String("sg-0cc8b3c3c2851705a"),
|
|
IpPermissions: []*ec2.IpPermission{
|
|
{
|
|
FromPort: aws.Int64(443),
|
|
ToPort: aws.Int64(443),
|
|
IpProtocol: aws.String("tcp"),
|
|
IpRanges: []*ec2.IpRange{
|
|
{
|
|
CidrIp: aws.String("0.0.0.0/0"),
|
|
},
|
|
},
|
|
},
|
|
},
|
|
IpPermissionsEgress: []*ec2.IpPermission{
|
|
{
|
|
IpProtocol: aws.String("-1"),
|
|
IpRanges: []*ec2.IpRange{
|
|
{
|
|
CidrIp: aws.String("0.0.0.0/0"),
|
|
},
|
|
},
|
|
Ipv6Ranges: []*ec2.Ipv6Range{
|
|
{
|
|
CidrIpv6: aws.String("::/0"),
|
|
},
|
|
},
|
|
},
|
|
{
|
|
IpProtocol: aws.String("5"),
|
|
IpRanges: []*ec2.IpRange{
|
|
{
|
|
CidrIp: aws.String("0.0.0.0/0"),
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}, true)
|
|
return true
|
|
})).Return(nil)
|
|
},
|
|
err: nil,
|
|
},
|
|
{
|
|
test: "should ignore default security group default rules",
|
|
dirName: "vpc_security_group_default_rules",
|
|
mocks: func(client *mocks.FakeEC2) {
|
|
client.On("DescribeSecurityGroupsPages",
|
|
&ec2.DescribeSecurityGroupsInput{},
|
|
mock.MatchedBy(func(callback func(res *ec2.DescribeSecurityGroupsOutput, lastPage bool) bool) bool {
|
|
callback(&ec2.DescribeSecurityGroupsOutput{
|
|
SecurityGroups: []*ec2.SecurityGroup{
|
|
{
|
|
GroupId: aws.String("sg-a74815c8"),
|
|
GroupName: aws.String("default"),
|
|
IpPermissions: []*ec2.IpPermission{
|
|
{
|
|
IpProtocol: aws.String("-1"),
|
|
UserIdGroupPairs: []*ec2.UserIdGroupPair{
|
|
{
|
|
GroupId: aws.String("sg-a74815c8"),
|
|
},
|
|
},
|
|
},
|
|
{
|
|
IpProtocol: aws.String("-1"),
|
|
IpRanges: []*ec2.IpRange{
|
|
{
|
|
CidrIp: aws.String("1.2.0.0/16"),
|
|
},
|
|
},
|
|
},
|
|
},
|
|
IpPermissionsEgress: []*ec2.IpPermission{
|
|
{
|
|
IpProtocol: aws.String("-1"),
|
|
IpRanges: []*ec2.IpRange{
|
|
{
|
|
CidrIp: aws.String("0.0.0.0/0"),
|
|
},
|
|
},
|
|
},
|
|
{
|
|
IpProtocol: aws.String("-1"),
|
|
IpRanges: []*ec2.IpRange{
|
|
{
|
|
CidrIp: aws.String("1.2.3.4/32"),
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}, true)
|
|
return true
|
|
})).Return(nil)
|
|
},
|
|
err: nil,
|
|
},
|
|
}
|
|
for _, c := range cases {
|
|
shouldUpdate := c.dirName == *goldenfile.Update
|
|
if shouldUpdate {
|
|
provider, err := NewTerraFormProvider()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
terraform.AddProvider(terraform.AWS, provider)
|
|
resource.AddSupplier(NewVPCSecurityGroupRuleSupplier(provider.Runner(), ec2.New(provider.session)))
|
|
}
|
|
|
|
t.Run(c.test, func(tt *testing.T) {
|
|
fakeEC2 := mocks.FakeEC2{}
|
|
c.mocks(&fakeEC2)
|
|
provider := mocks2.NewMockedGoldenTFProvider(c.dirName, terraform.Provider(terraform.AWS), shouldUpdate)
|
|
deserializer := awsdeserializer.NewVPCSecurityGroupRuleDeserializer()
|
|
s := &VPCSecurityGroupRuleSupplier{
|
|
provider,
|
|
deserializer,
|
|
&fakeEC2,
|
|
terraform.NewParallelResourceReader(pkg.NewParallelRunner(context.TODO(), 10)),
|
|
}
|
|
got, err := s.Resources()
|
|
if c.err != err {
|
|
tt.Errorf("Expected error %+v got %+v", c.err, err)
|
|
}
|
|
|
|
mock.AssertExpectationsForObjects(tt)
|
|
test.CtyTestDiff(got, c.dirName, provider, deserializer, shouldUpdate, tt)
|
|
})
|
|
}
|
|
}
|