31 lines
668 B
Go
31 lines
668 B
Go
package aws_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/snyk/driftctl/test"
|
|
"github.com/snyk/driftctl/test/acceptance"
|
|
)
|
|
|
|
func TestAcc_Aws_EbsVolume(t *testing.T) {
|
|
acceptance.Run(t, acceptance.AccTestCase{
|
|
TerraformVersion: "0.15.5",
|
|
Paths: []string{"./testdata/acc/aws_ebs_volume"},
|
|
Args: []string{"scan", "--deep"},
|
|
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.AssertManagedCount(1)
|
|
},
|
|
},
|
|
},
|
|
})
|
|
}
|