2021-02-05 10:03:45 +00:00
|
|
|
package aws_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2021-02-09 15:54:50 +00:00
|
|
|
"time"
|
2021-02-05 10:03:45 +00:00
|
|
|
|
2021-02-09 15:54:50 +00:00
|
|
|
"github.com/cloudskiff/driftctl/pkg/remote/aws/repository"
|
2021-03-31 14:33:25 +00:00
|
|
|
"github.com/cloudskiff/driftctl/test"
|
2021-02-05 10:03:45 +00:00
|
|
|
"github.com/cloudskiff/driftctl/test/acceptance"
|
2021-02-09 15:54:50 +00:00
|
|
|
"github.com/cloudskiff/driftctl/test/acceptance/awsutils"
|
|
|
|
"github.com/sirupsen/logrus"
|
2021-02-05 10:03:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestAcc_AwsSNSTopicSubscription(t *testing.T) {
|
|
|
|
acceptance.Run(t, acceptance.AccTestCase{
|
2021-04-09 16:37:27 +00:00
|
|
|
TerraformVersion: "0.14.9",
|
|
|
|
Paths: []string{"./testdata/acc/aws_sns_topic_subscription"},
|
|
|
|
Args: []string{"scan", "--filter", "Type=='aws_sns_topic_subscription'"},
|
2021-02-05 10:03:45 +00:00
|
|
|
Checks: []acceptance.AccCheck{
|
|
|
|
{
|
|
|
|
Env: map[string]string{
|
|
|
|
"AWS_REGION": "us-east-1",
|
|
|
|
},
|
2021-02-09 15:54:50 +00:00
|
|
|
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")
|
|
|
|
}
|
|
|
|
},
|
2021-03-31 14:33:25 +00:00
|
|
|
Check: func(result *test.ScanResult, stdout string, err error) {
|
2021-02-05 10:03:45 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2021-05-18 15:06:11 +00:00
|
|
|
result.AssertInfrastructureIsInSync()
|
2021-02-05 10:03:45 +00:00
|
|
|
result.AssertManagedCount(2)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|