forked from nutanix/terraform-provider-nutanix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata_source_nutanix_user_group_test.go
104 lines (94 loc) · 3.26 KB
/
data_source_nutanix_user_group_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
104
package nutanix
import (
"fmt"
"testing"
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
)
func TestAccNutanixUserGroupDataSource_basic(t *testing.T) {
distinguishedName := "cn=dou-group-1,cn=users,dc=ntnxlab,dc=local"
displayName := "dou-group-1"
uuid := "d12fa0a3-13f1-4f5d-b773-c8e2f8144f0e"
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
Steps: []resource.TestStep{
{
Config: testAccUserGroupDataSourceConfig(uuid),
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr(
"data.nutanix_user_group.test", "display_name", displayName),
resource.TestCheckResourceAttrSet("data.nutanix_user_group.test", "directory_service_user_group.#"),
resource.TestCheckResourceAttr(
"data.nutanix_user_group.test", "directory_service_user_group.0.distinguished_name", distinguishedName),
),
},
},
})
}
func testAccUserGroupDataSourceConfig(uuid string) string {
return fmt.Sprintf(`
data "nutanix_user_group" "test" {
user_group_id = "%s"
}
`, uuid)
}
func TestAccNutanixUserGroupDataSource_ByName(t *testing.T) {
distinguishedName := "cn=dou-group-1,cn=users,dc=ntnxlab,dc=local"
displayName := "dou-group-1"
uuid := "d12fa0a3-13f1-4f5d-b773-c8e2f8144f0e"
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
Steps: []resource.TestStep{
{
Config: testAccUserGroupDataSourceConfigByName(displayName),
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr(
"data.nutanix_user_group.test", "display_name", displayName),
resource.TestCheckResourceAttr(
"data.nutanix_user_group.test", "id", uuid),
resource.TestCheckResourceAttrSet("data.nutanix_user_group.test", "directory_service_user_group.#"),
resource.TestCheckResourceAttr(
"data.nutanix_user_group.test", "directory_service_user_group.0.distinguished_name", distinguishedName),
),
},
},
})
}
func testAccUserGroupDataSourceConfigByName(dn string) string {
return fmt.Sprintf(`
data "nutanix_user_group" "test" {
user_group_name = "%s"
}
`, dn)
}
func TestAccNutanixUserGroupDataSource_ByDistinguishedName(t *testing.T) {
distinguishedName := "cn=dou-group-1,cn=users,dc=ntnxlab,dc=local"
displayName := "dou-group-1"
uuid := "d12fa0a3-13f1-4f5d-b773-c8e2f8144f0e"
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
Steps: []resource.TestStep{
{
Config: testAccUserGroupDataSourceConfigByDistinguishedName(distinguishedName),
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr(
"data.nutanix_user_group.test", "display_name", displayName),
resource.TestCheckResourceAttr(
"data.nutanix_user_group.test", "id", uuid),
resource.TestCheckResourceAttrSet("data.nutanix_user_group.test", "directory_service_user_group.#"),
resource.TestCheckResourceAttr(
"data.nutanix_user_group.test", "directory_service_user_group.0.distinguished_name", distinguishedName),
),
},
},
})
}
func testAccUserGroupDataSourceConfigByDistinguishedName(dn string) string {
return fmt.Sprintf(`
data "nutanix_user_group" "test" {
user_group_distinguished_name = "%s"
}
`, dn)
}