36 lines
821 B
Go
36 lines
821 B
Go
package aws_test
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/cloudskiff/driftctl/test"
|
|
"github.com/cloudskiff/driftctl/test/acceptance"
|
|
)
|
|
|
|
func TestAcc_AwsRouteTableAssociation(t *testing.T) {
|
|
acceptance.Run(t, acceptance.AccTestCase{
|
|
TerraformVersion: "0.15.5",
|
|
Paths: []string{"./testdata/acc/aws_route_table_association"},
|
|
Args: []string{"scan", "--deep"},
|
|
RetryDestroy: acceptance.RetryConfig{
|
|
Attempts: 3,
|
|
Delay: 5 * time.Second,
|
|
},
|
|
Checks: []acceptance.AccCheck{
|
|
{
|
|
Env: map[string]string{
|
|
"AWS_REGION": "us-east-1",
|
|
},
|
|
Check: func(result *test.ScanResult, stdout string, err error) {
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
result.AssertInfrastructureIsInSync()
|
|
result.Equal(4, result.Summary().TotalManaged)
|
|
},
|
|
},
|
|
},
|
|
})
|
|
}
|