-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathtests.go
16 lines (14 loc) · 870 Bytes
/
tests.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package functional
import "github.com/integr8ly/integreatly-operator/test/common"
var (
FUNCTIONAL_TESTS = []common.TestCase{
{Description: "F01 - Verify AWS rds resources exist and are in expected state", Test: AWSRDSResourcesExistTest},
{Description: "F03 - Verify AWS elasticache resources exist and are in expected state", Test: AWSElasticacheResourcesExistTest},
{Description: "A21 - Verify AWS maintenance and backup windows", Test: CROStrategyOverrideAWSResourceTest},
{Description: "A25 - Verify standalone RHMI VPC exists and is configured properly", Test: TestStandaloneVPCExists},
{Description: "F04 - Verify AWS s3 blob storage resources exist", Test: TestAWSs3BlobStorageResourcesExist},
}
MULTIAZ_TESTS = []common.TestCase{
{Description: "F09 - Verify correct pod distribution on Multi-AZ cluster", Test: TestMultiAZPodDistribution},
}
)