2021-01-14 17:11:02 +00:00
|
|
|
package aws_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2021-07-26 17:49:46 +00:00
|
|
|
"time"
|
2021-01-14 17:11:02 +00:00
|
|
|
|
2021-03-31 14:33:25 +00:00
|
|
|
"github.com/cloudskiff/driftctl/test"
|
2021-01-14 17:11:02 +00:00
|
|
|
"github.com/cloudskiff/driftctl/test/acceptance"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestAcc_AwsRoute(t *testing.T) {
|
|
|
|
acceptance.Run(t, acceptance.AccTestCase{
|
2021-08-26 12:04:23 +00:00
|
|
|
TerraformVersion: "0.15.5",
|
2021-04-09 16:37:27 +00:00
|
|
|
Paths: []string{"./testdata/acc/aws_route"},
|
2021-07-20 12:42:52 +00:00
|
|
|
Args: []string{"scan", "--filter", "Type=='aws_route'", "--tf-provider-version", "3.44.0", "--deep"},
|
2021-07-26 17:49:46 +00:00
|
|
|
RetryDestroy: acceptance.RetryConfig{
|
|
|
|
Attempts: 3,
|
|
|
|
Delay: 5 * time.Second,
|
|
|
|
},
|
2021-01-14 17:11:02 +00:00
|
|
|
Checks: []acceptance.AccCheck{
|
|
|
|
{
|
|
|
|
Env: map[string]string{
|
|
|
|
"AWS_REGION": "us-east-1",
|
|
|
|
},
|
2021-03-31 14:33:25 +00:00
|
|
|
Check: func(result *test.ScanResult, stdout string, err error) {
|
2021-01-14 17:11:02 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
result.AssertInfrastructureIsInSync()
|
|
|
|
result.Equal(6, result.Summary().TotalManaged)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|