driftctl/pkg/remote/aws/iam_role_policy_supplier_te...

183 lines
5.1 KiB
Go

package aws
import (
"context"
"testing"
remoteerror "github.com/cloudskiff/driftctl/pkg/remote/error"
resourceaws "github.com/cloudskiff/driftctl/pkg/resource/aws"
"github.com/aws/aws-sdk-go/aws/awserr"
"github.com/cloudskiff/driftctl/pkg/parallel"
awsdeserializer "github.com/cloudskiff/driftctl/pkg/resource/aws/deserializer"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/iam"
"github.com/cloudskiff/driftctl/test/goldenfile"
mocks2 "github.com/cloudskiff/driftctl/test/mocks"
"github.com/stretchr/testify/assert"
"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 TestIamRolePolicySupplier_Resources(t *testing.T) {
cases := []struct {
test string
dirName string
mocks func(client *mocks.FakeIAM)
err error
}{
{
test: "multiples roles without any inline policies",
dirName: "iam_role_policy_empty",
mocks: func(client *mocks.FakeIAM) {
client.On("ListRolesPages",
&iam.ListRolesInput{},
mock.MatchedBy(func(callback func(res *iam.ListRolesOutput, lastPage bool) bool) bool {
callback(&iam.ListRolesOutput{Roles: []*iam.Role{
{
RoleName: aws.String("test_role_0"),
},
{
RoleName: aws.String("test_role_1"),
},
}}, true)
return true
})).Return(nil)
client.On("ListRolePoliciesPages",
&iam.ListRolePoliciesInput{
RoleName: aws.String("test_role_0"),
},
mock.Anything,
).Return(nil)
client.On("ListRolePoliciesPages",
&iam.ListRolePoliciesInput{
RoleName: aws.String("test_role_1"),
},
mock.Anything,
).Return(nil)
},
err: nil,
},
{
test: "iam multiples roles with inline policies",
dirName: "iam_role_policy_multiple",
mocks: func(client *mocks.FakeIAM) {
client.On("ListRolesPages",
&iam.ListRolesInput{},
mock.MatchedBy(func(callback func(res *iam.ListRolesOutput, lastPage bool) bool) bool {
callback(&iam.ListRolesOutput{Roles: []*iam.Role{
{
RoleName: aws.String("test_role_0"),
},
{
RoleName: aws.String("test_role_1"),
},
}}, true)
return true
})).Once().Return(nil)
firstMockCalled := false
client.On("ListRolePoliciesPages",
&iam.ListRolePoliciesInput{
RoleName: aws.String("test_role_0"),
},
mock.MatchedBy(func(callback func(res *iam.ListRolePoliciesOutput, lastPage bool) bool) bool {
if firstMockCalled {
return false
}
callback(&iam.ListRolePoliciesOutput{
PolicyNames: []*string{
aws.String("policy-role0-0"),
aws.String("policy-role0-1"),
},
}, false)
callback(&iam.ListRolePoliciesOutput{
PolicyNames: []*string{
aws.String("policy-role0-2"),
},
}, true)
firstMockCalled = true
return true
})).Once().Return(nil)
client.On("ListRolePoliciesPages",
&iam.ListRolePoliciesInput{
RoleName: aws.String("test_role_1"),
},
mock.MatchedBy(func(callback func(res *iam.ListRolePoliciesOutput, lastPage bool) bool) bool {
callback(&iam.ListRolePoliciesOutput{
PolicyNames: []*string{
aws.String("policy-role1-0"),
aws.String("policy-role1-1"),
},
}, false)
callback(&iam.ListRolePoliciesOutput{
PolicyNames: []*string{
aws.String("policy-role1-2"),
},
}, true)
return true
})).Once().Return(nil)
},
err: nil,
},
{
test: "Cannot list roles",
dirName: "iam_role_policy_empty",
mocks: func(client *mocks.FakeIAM) {
client.On("ListRolesPages",
&iam.ListRolesInput{},
mock.MatchedBy(func(callback func(res *iam.ListRolesOutput, lastPage bool) bool) bool {
return true
})).Return(awserr.NewRequestFailure(nil, 403, ""))
},
err: remoteerror.NewResourceEnumerationErrorWithType(awserr.NewRequestFailure(nil, 403, ""), resourceaws.AwsIamRolePolicyResourceType, resourceaws.AwsIamRoleResourceType),
},
}
for _, c := range cases {
shouldUpdate := c.dirName == *goldenfile.Update
providerLibrary := terraform.NewProviderLibrary()
supplierLibrary := resource.NewSupplierLibrary()
if shouldUpdate {
provider, err := NewTerraFormProvider()
if err != nil {
t.Fatal(err)
}
providerLibrary.AddProvider(terraform.AWS, provider)
supplierLibrary.AddSupplier(NewIamRolePolicySupplier(provider))
}
t.Run(c.test, func(tt *testing.T) {
fakeIam := mocks.FakeIAM{}
c.mocks(&fakeIam)
provider := mocks2.NewMockedGoldenTFProvider(c.dirName, providerLibrary.Provider(terraform.AWS), shouldUpdate)
deserializer := awsdeserializer.NewIamRolePolicyDeserializer()
s := &IamRolePolicySupplier{
provider,
deserializer,
&fakeIam,
terraform.NewParallelResourceReader(parallel.NewParallelRunner(context.TODO(), 10)),
}
got, err := s.Resources()
assert.Equal(tt, c.err, err)
mock.AssertExpectationsForObjects(tt)
test.CtyTestDiff(got, c.dirName, provider, deserializer, shouldUpdate, t)
})
}
}