driftctl/pkg/remote/aws/s3_bucket_inventory_supplie...

93 lines
2.5 KiB
Go

package aws
import (
"context"
"testing"
awsdeserializer "github.com/cloudskiff/driftctl/pkg/resource/aws/deserializer"
"github.com/cloudskiff/driftctl/test/goldenfile"
"github.com/cloudskiff/driftctl/pkg"
"github.com/cloudskiff/driftctl/pkg/resource"
"github.com/cloudskiff/driftctl/pkg/terraform"
"github.com/cloudskiff/driftctl/test"
"github.com/cloudskiff/driftctl/test/mocks"
)
func TestS3BucketInventorySupplier_Resources(t *testing.T) {
tests := []struct {
test string
dirName string
bucketsIDs []string
bucketLocation map[string]string
inventoriesIDs map[string][]string
wantErr bool
}{
{
test: "multiple bucket with multiple inventories", dirName: "s3_bucket_inventories_multiple",
bucketsIDs: []string{
"bucket-martin-test-drift",
"bucket-martin-test-drift2",
"bucket-martin-test-drift3",
},
bucketLocation: map[string]string{
"bucket-martin-test-drift": "eu-west-1",
"bucket-martin-test-drift2": "eu-west-3",
"bucket-martin-test-drift3": "ap-northeast-1",
},
inventoriesIDs: map[string][]string{
"bucket-martin-test-drift": {
"Inventory_Bucket1",
"Inventory2_Bucket1",
},
"bucket-martin-test-drift2": {
"Inventory_Bucket2",
"Inventory2_Bucket2",
},
"bucket-martin-test-drift3": {
"Inventory_Bucket3",
"Inventory2_Bucket3",
},
},
wantErr: false,
},
}
for _, tt := range tests {
shouldUpdate := tt.dirName == *goldenfile.Update
if shouldUpdate {
provider, err := NewTerraFormProvider()
if err != nil {
t.Fatal(err)
}
factory := AwsClientFactory{config: provider.session}
terraform.AddProvider(terraform.AWS, provider)
resource.AddSupplier(NewS3BucketInventorySupplier(provider.Runner().SubRunner(), factory))
}
t.Run(tt.test, func(t *testing.T) {
mock := mocks.NewMockAWSS3Client(tt.bucketsIDs, nil, tt.inventoriesIDs, nil, tt.bucketLocation)
factory := mocks.NewMockAwsClientFactory(mock)
provider := mocks.NewMockedGoldenTFProvider(tt.dirName, terraform.Provider(terraform.AWS), shouldUpdate)
deserializer := awsdeserializer.NewS3BucketInventoryDeserializer()
s := &S3BucketInventorySupplier{
provider,
deserializer,
factory,
terraform.NewParallelResourceReader(pkg.NewParallelRunner(context.TODO(), 10)),
}
got, err := s.Resources()
if (err != nil) != tt.wantErr {
t.Errorf("Resources() error = %v, wantErr %v", err, tt.wantErr)
return
}
test.CtyTestDiff(got, tt.dirName, provider, deserializer, shouldUpdate, t)
})
}
}