forked from vmware/terraform-provider-nsxt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_source_nsxt_policy_context_profile_test.go
110 lines (98 loc) · 3.1 KB
/
data_source_nsxt_policy_context_profile_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
105
106
107
108
109
110
/* Copyright © 2019 VMware, Inc. All Rights Reserved.
SPDX-License-Identifier: MPL-2.0 */
package nsxt
import (
"fmt"
"testing"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
)
func TestAccDataSourceNsxtPolicyContextProfile_basic(t *testing.T) {
// Use existing system defined profile
name := "AMQP"
testResourceName := "data.nsxt_policy_context_profile.test"
resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
Steps: []resource.TestStep{
{
Config: testAccNsxtPolicyContextProfileReadTemplate(name),
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr(testResourceName, "display_name", name),
resource.TestCheckResourceAttrSet(testResourceName, "description"),
resource.TestCheckResourceAttrSet(testResourceName, "path"),
),
},
},
})
}
func TestAccDataSourceNsxtPolicyContextProfile_prefix(t *testing.T) {
// Use existing system defined profile
name := "DIAMETER"
namePrefix := name[0:5]
testResourceName := "data.nsxt_policy_context_profile.test"
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
Steps: []resource.TestStep{
{
Config: testAccNsxtPolicyContextProfileReadTemplate(namePrefix),
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr(testResourceName, "display_name", name),
resource.TestCheckResourceAttrSet(testResourceName, "description"),
resource.TestCheckResourceAttrSet(testResourceName, "path"),
),
},
},
})
}
func TestAccDataSourceNsxtPolicyContextProfile_multitenancy(t *testing.T) {
name := getAccTestResourceName()
testResourceName := "data.nsxt_policy_context_profile.test"
resource.ParallelTest(t, resource.TestCase{
PreCheck: func() {
testAccPreCheck(t)
testAccOnlyMultitenancy(t)
},
Providers: testAccProviders,
Steps: []resource.TestStep{
{
Config: testAccNsxtPolicyContextProfileMultitenancyTemplate(name),
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr(testResourceName, "display_name", name),
resource.TestCheckResourceAttrSet(testResourceName, "description"),
resource.TestCheckResourceAttrSet(testResourceName, "path"),
),
},
},
})
}
func testAccNsxtPolicyContextProfileReadTemplate(name string) string {
return fmt.Sprintf(`
data "nsxt_policy_context_profile" "test" {
display_name = "%s"
}`, name)
}
func testAccNsxtPolicyContextProfileMultitenancyTemplate(name string) string {
context := testAccNsxtPolicyMultitenancyContext()
return fmt.Sprintf(`
resource "nsxt_policy_context_profile" "test" {
%s
display_name = "%s"
description = "Terraform provisioned ContextProfile"
domain_name {
description = "test-domain-name-attribute"
value = ["*-myfiles.sharepoint.com"]
}
app_id {
description = "test-app-id-attribute"
value = ["SSL"]
sub_attribute {
tls_version = ["SSL_V3"]
}
}
}
data "nsxt_policy_context_profile" "test" {
%s
display_name = nsxt_policy_context_profile.test.display_name
}`, context, name, context)
}