-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimport_openstack_containerinfra_nodegroup_v1_test.go
94 lines (86 loc) · 3.07 KB
/
import_openstack_containerinfra_nodegroup_v1_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
package openstack
import (
"testing"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/acctest"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
)
func TestAccContainerInfraV1NodeGroupImport_basic(t *testing.T) {
resourceName := "openstack_containerinfra_nodegroup_v1.nodegroup_1"
clusterName := acctest.RandomWithPrefix("tf-acc-cluster")
keypairName := acctest.RandomWithPrefix("tf-acc-keypair")
clusterTemplateName := acctest.RandomWithPrefix("tf-acc-clustertemplate")
nodeGroupName := acctest.RandomWithPrefix("tf-acc-cluster")
resource.Test(t, resource.TestCase{
PreCheck: func() {
testAccPreCheck(t)
testAccPreCheckNonAdminOnly(t)
testAccPreCheckContainerInfra(t)
},
ProviderFactories: testAccProviders,
CheckDestroy: testAccCheckContainerInfraV1NodeGroupDestroy,
Steps: []resource.TestStep{
{
Config: testAccContainerInfraV1NodeGroupBasic(keypairName, clusterTemplateName, clusterName, nodeGroupName, 1),
},
{
ResourceName: resourceName,
ImportState: true,
ImportStateVerify: true,
},
},
})
}
func TestAccContainerInfraV1NodeGroupImport_mergeLabels(t *testing.T) {
resourceName := "openstack_containerinfra_nodegroup_v1.nodegroup_1"
clusterName := acctest.RandomWithPrefix("tf-acc-cluster")
keypairName := acctest.RandomWithPrefix("tf-acc-keypair")
clusterTemplateName := acctest.RandomWithPrefix("tf-acc-clustertemplate")
nodeGroupName := acctest.RandomWithPrefix("tf-acc-cluster")
resource.Test(t, resource.TestCase{
PreCheck: func() {
testAccPreCheck(t)
testAccPreCheckNonAdminOnly(t)
testAccPreCheckContainerInfra(t)
},
ProviderFactories: testAccProviders,
CheckDestroy: testAccCheckContainerInfraV1NodeGroupDestroy,
Steps: []resource.TestStep{
{
Config: testAccContainerInfraV1NodeGroupMergeLabels(keypairName, clusterTemplateName, clusterName, nodeGroupName, 1),
},
{
ResourceName: resourceName,
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{"merge_labels", "labels"},
},
},
})
}
func TestAccContainerInfraV1NodeGroupImport_overrideLabels(t *testing.T) {
resourceName := "openstack_containerinfra_nodegroup_v1.nodegroup_1"
clusterName := acctest.RandomWithPrefix("tf-acc-cluster")
keypairName := acctest.RandomWithPrefix("tf-acc-keypair")
clusterTemplateName := acctest.RandomWithPrefix("tf-acc-clustertemplate")
nodeGroupName := acctest.RandomWithPrefix("tf-acc-cluster")
resource.Test(t, resource.TestCase{
PreCheck: func() {
testAccPreCheck(t)
testAccPreCheckNonAdminOnly(t)
testAccPreCheckContainerInfra(t)
},
ProviderFactories: testAccProviders,
CheckDestroy: testAccCheckContainerInfraV1NodeGroupDestroy,
Steps: []resource.TestStep{
{
Config: testAccContainerInfraV1NodeGroupOverrideLabels(keypairName, clusterTemplateName, clusterName, nodeGroupName, 1),
},
{
ResourceName: resourceName,
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{"merge_labels", "labels"},
},
},
})
}