2021-02-11 11:21:49 +00:00
|
|
|
package aws_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-03-31 14:33:25 +00:00
|
|
|
"github.com/cloudskiff/driftctl/test"
|
2021-02-11 11:21:49 +00:00
|
|
|
"github.com/cloudskiff/driftctl/test/acceptance"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestAcc_AwsDynamoDBTable(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_dynamodb_table"},
|
2021-07-20 12:42:52 +00:00
|
|
|
Args: []string{"scan", "--filter", "Type=='aws_dynamodb_table'", "--deep"},
|
2021-02-11 11:21:49 +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-02-11 11:21:49 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
result.AssertInfrastructureIsInSync()
|
|
|
|
result.AssertManagedCount(2)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|