forked from nutanix/terraform-provider-nutanix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata_source_nutanix_cluster_test.go
103 lines (85 loc) · 2.57 KB
/
data_source_nutanix_cluster_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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package nutanix
import (
"regexp"
"testing"
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
)
func TestAccNutanixClusterDataSource_basic(t *testing.T) {
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
Steps: []resource.TestStep{
{
Config: testAccClusterDataSourceConfig,
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttrSet(
"data.nutanix_cluster.cluster", "id"),
),
},
},
})
}
func TestAccNutanixClusterDataSource_ByName(t *testing.T) {
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
Steps: []resource.TestStep{
{
Config: testAccClusterDataSourceConfigByName,
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttrSet(
"data.nutanix_cluster.cluster", "id"),
resource.TestCheckResourceAttrSet(
"data.nutanix_cluster.cluster", "name"),
resource.TestCheckResourceAttrSet(
"data.nutanix_cluster.cluster", "cluster_id"),
),
},
},
})
}
func TestAccNutanixClusterDataSource_ByNameNotExisting(t *testing.T) {
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
Steps: []resource.TestStep{
{
Config: testAccClusterDataSourceConfigByNameNotExisting,
ExpectError: regexp.MustCompile("did not find cluster with name *"),
},
},
})
}
func TestAccNutanixClusterDataSource_NameUuidConflict(t *testing.T) {
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
Steps: []resource.TestStep{
{
Config: testAccClusterDataSourceConfigNameUUIDConflict,
ExpectError: regexp.MustCompile(" * conflicts with *"),
},
},
})
}
const testAccClusterDataSourceConfig = `
data "nutanix_clusters" "clusters" {}
data "nutanix_cluster" "cluster" {
cluster_id = data.nutanix_clusters.clusters.entities.0.metadata.uuid
}`
const testAccClusterDataSourceConfigByName = `
data "nutanix_clusters" "clusters" {}
data "nutanix_cluster" "cluster" {
name = data.nutanix_clusters.clusters.entities.0.name
}`
const testAccClusterDataSourceConfigByNameNotExisting = `
data "nutanix_clusters" "clusters" {}
data "nutanix_cluster" "cluster" {
name = "ThisDoesNotExist"
}`
const testAccClusterDataSourceConfigNameUUIDConflict = `
data "nutanix_clusters" "clusters" {}
data "nutanix_cluster" "cluster" {
cluster_id = data.nutanix_clusters.clusters.entities.0.metadata.uuid
name = data.nutanix_clusters.clusters.entities.0.name
}`