2021-02-11 11:21:49 +00:00
|
|
|
package aws_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-12-06 13:29:39 +00:00
|
|
|
"github.com/snyk/driftctl/test"
|
|
|
|
"github.com/snyk/driftctl/test/acceptance"
|
2021-02-11 11:21:49 +00:00
|
|
|
)
|
|
|
|
|
2022-01-25 14:29:57 +00:00
|
|
|
func TestAcc_Aws_DynamoDBTable(t *testing.T) {
|
2021-02-11 11:21:49 +00:00
|
|
|
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_dynamodb_table"},
|
2021-10-08 15:28:28 +00:00
|
|
|
Args: []string{"scan", "--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)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|