forked from ovh/terraform-provider-ovh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_cloud_project_database_certificates_test.go
63 lines (56 loc) · 1.62 KB
/
data_cloud_project_database_certificates_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package ovh
import (
"fmt"
"os"
"testing"
"github.com/hashicorp/terraform-plugin-testing/helper/acctest"
"github.com/hashicorp/terraform-plugin-testing/helper/resource"
)
const testAccCloudProjectDatabaseCertificatesDatasourceConfig_Basic = `
resource "ovh_cloud_project_database" "db" {
service_name = "%s"
description = "%s"
engine = "%s"
version = "%s"
plan = "essential"
nodes {
region = "%s"
}
flavor = "%s"
}
data "ovh_cloud_project_database_certificates" "certificates" {
service_name = ovh_cloud_project_database.db.service_name
engine = ovh_cloud_project_database.db.engine
cluster_id = ovh_cloud_project_database.db.id
}
`
func TestAccCloudProjectDatabaseCertificatesDataSource_basic(t *testing.T) {
serviceName := os.Getenv("OVH_CLOUD_PROJECT_SERVICE_TEST")
engine := os.Getenv("OVH_CLOUD_PROJECT_DATABASE_ENGINE_TEST")
version := os.Getenv("OVH_CLOUD_PROJECT_DATABASE_VERSION_TEST")
region := os.Getenv("OVH_CLOUD_PROJECT_DATABASE_REGION_TEST")
flavor := os.Getenv("OVH_CLOUD_PROJECT_DATABASE_FLAVOR_TEST")
description := acctest.RandomWithPrefix(test_prefix)
config := fmt.Sprintf(
testAccCloudProjectDatabaseCertificatesDatasourceConfig_Basic,
serviceName,
description,
engine,
version,
region,
flavor,
)
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheckCloudDatabase(t) },
Providers: testAccProviders,
Steps: []resource.TestStep{
{
Config: config,
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttrSet(
"data.ovh_cloud_project_database_certificates.certificates", "ca"),
),
},
},
})
}