51 lines
1.3 KiB
Go
51 lines
1.3 KiB
Go
package aws_test
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/cloudskiff/driftctl/pkg/remote/aws/repository"
|
|
"github.com/cloudskiff/driftctl/test/acceptance"
|
|
"github.com/cloudskiff/driftctl/test/acceptance/awsutils"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func TestAcc_AwsSNSTopicSubscription(t *testing.T) {
|
|
acceptance.Run(t, acceptance.AccTestCase{
|
|
Paths: []string{"./testdata/acc/aws_sns_topic_subscription"},
|
|
Args: []string{"scan", "--filter", "Type=='aws_sns_topic_subscription'"},
|
|
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.NewSNSClient(awsutils.Session())
|
|
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 *acceptance.ScanResult, stdout string, err error) {
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
result.AssertDriftCountTotal(0)
|
|
result.AssertDeletedCount(0)
|
|
result.AssertManagedCount(2)
|
|
},
|
|
},
|
|
},
|
|
})
|
|
}
|