53 lines
1.4 KiB
Go
53 lines
1.4 KiB
Go
package aws_test
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/cloudskiff/driftctl/pkg/remote/aws/repository"
|
|
"github.com/cloudskiff/driftctl/test"
|
|
"github.com/cloudskiff/driftctl/test/acceptance"
|
|
"github.com/cloudskiff/driftctl/test/acceptance/awsutils"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func TestAcc_AwsSNSTopicPolicy(t *testing.T) {
|
|
acceptance.Run(t, acceptance.AccTestCase{
|
|
TerraformVersion: "0.14.9",
|
|
Paths: []string{"./testdata/acc/aws_sns_topic_policy"},
|
|
Args: []string{"scan", "--filter", "Type=='aws_sns_topic' || Type=='aws_sns_topic_policy'"},
|
|
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.ListAllTopics()
|
|
if err != nil {
|
|
logrus.Warnf("Cannot list topics: %+v", err)
|
|
return err
|
|
}
|
|
if len(topics) == 3 {
|
|
doneCh <- struct{}{}
|
|
}
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
t.Fatal("Timeout while fetching SNS TOPIC")
|
|
}
|
|
},
|
|
Check: func(result *test.ScanResult, stdout string, err error) {
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
result.AssertDriftCountTotal(0)
|
|
result.AssertDeletedCount(0)
|
|
result.AssertManagedCount(6)
|
|
},
|
|
},
|
|
},
|
|
})
|
|
}
|