53 lines
1.4 KiB
Go
53 lines
1.4 KiB
Go
package aws_test
|
|
|
|
import (
|
|
"github.com/snyk/driftctl/enumeration/remote/aws/repository"
|
|
"github.com/snyk/driftctl/enumeration/remote/cache"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
"github.com/snyk/driftctl/test"
|
|
"github.com/snyk/driftctl/test/acceptance"
|
|
"github.com/snyk/driftctl/test/acceptance/awsutils"
|
|
)
|
|
|
|
func TestAcc_Aws_SNSTopicSubscription(t *testing.T) {
|
|
acceptance.Run(t, acceptance.AccTestCase{
|
|
TerraformVersion: "0.15.5",
|
|
Paths: []string{"./testdata/acc/aws_sns_topic_subscription"},
|
|
Args: []string{"scan", "--deep"},
|
|
Checks: []acceptance.AccCheck{
|
|
{
|
|
Env: map[string]string{
|
|
"AWS_REGION": "us-east-1",
|
|
},
|
|
PreExec: func() {
|
|
err := acceptance.RetryFor(60*time.Second, func(doneCh chan struct{}) error {
|
|
client := repository.NewSNSRepository(awsutils.Session(), cache.New(0))
|
|
topics, err := client.ListAllSubscriptions()
|
|
if err != nil {
|
|
logrus.Warnf("Cannot list Subscriptions: %+v", err)
|
|
return err
|
|
}
|
|
if len(topics) == 2 {
|
|
doneCh <- struct{}{}
|
|
}
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
t.Fatal("Timeout while fetching SNS Subscriptions")
|
|
}
|
|
},
|
|
Check: func(result *test.ScanResult, stdout string, err error) {
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
result.AssertInfrastructureIsInSync()
|
|
result.AssertManagedCount(2)
|
|
},
|
|
},
|
|
},
|
|
})
|
|
}
|