forked from oracle/terraform-provider-oci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathidentity_swift_password_test.go
140 lines (122 loc) · 3.66 KB
/
identity_swift_password_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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
// Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
package main
import (
"testing"
"time"
"github.com/hashicorp/terraform/helper/resource"
"github.com/hashicorp/terraform/helper/schema"
"github.com/hashicorp/terraform/terraform"
"github.com/stretchr/testify/suite"
"github.com/MustWin/baremetal-sdk-go"
"github.com/oracle/terraform-provider-baremetal/client/mocks"
)
type ResourceIdentitySwiftPasswordTestSuite struct {
suite.Suite
Client *mocks.BareMetalClient
Provider terraform.ResourceProvider
Providers map[string]terraform.ResourceProvider
TimeCreated time.Time
Config string
ResourceName string
Res *baremetal.SwiftPassword
}
func (s *ResourceIdentitySwiftPasswordTestSuite) SetupTest() {
s.Client = &mocks.BareMetalClient{}
s.Provider = Provider(
func(d *schema.ResourceData) (interface{}, error) {
return s.Client, nil
},
)
s.Providers = map[string]terraform.ResourceProvider{
"baremetal": s.Provider,
}
description := "blah blah blah"
s.Config = `
resource "baremetal_identity_swift_password" "t" {
user_id = "user_id"
description = "` + description + `"
}
`
s.Config += testProviderConfig
s.TimeCreated = time.Now()
s.ResourceName = "baremetal_identity_swift_password.t"
s.Res = &baremetal.SwiftPassword{
ID: "id",
Password: "password",
TimeCreated: s.TimeCreated,
State: baremetal.ResourceActive,
UserID: "user_id",
Description: description,
}
s.Res.ETag = "etag"
s.Res.RequestID = "opcrequestid"
s.Client.On("CreateSwiftPassword", "user_id", description, (*baremetal.RetryTokenOptions)(nil)).
Return(s.Res, nil).Once()
s.Client.On("ListSwiftPasswords", "user_id").
Return(
&baremetal.ListSwiftPasswords{
SwiftPasswords: []baremetal.SwiftPassword{
*s.Res,
},
}, nil).Twice()
s.Client.On("DeleteSwiftPassword", "id", "user_id", (*baremetal.IfMatchOptions)(nil)).Return(nil).Once()
}
func (s *ResourceIdentitySwiftPasswordTestSuite) TestCreateSwiftPassword() {
resource.UnitTest(s.T(), resource.TestCase{
Providers: s.Providers,
Steps: []resource.TestStep{
{
ImportState: true,
ImportStateVerify: true,
Config: s.Config,
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr(s.ResourceName, "user_id", "user_id"),
resource.TestCheckResourceAttr(s.ResourceName, "password", "password"),
),
},
},
})
}
func (s ResourceIdentitySwiftPasswordTestSuite) TestUpdateDescriptionUpdatesSwiftPassword() {
config := `
resource "baremetal_identity_swift_password" "t" {
user_id = "user_id"
description = "nah nah nah"
}
`
config += testProviderConfig
res := &baremetal.SwiftPassword{}
*res = *s.Res
res.Description = "nah nah nah"
s.Client.On("UpdateSwiftPassword", "id", "user_id", &baremetal.UpdateIdentityOptions{Description: res.Description}).
Return(res, nil)
s.Client.On("ListSwiftPasswords", "user_id").
Return(
&baremetal.ListSwiftPasswords{
SwiftPasswords: []baremetal.SwiftPassword{
*res,
},
}, nil).Twice()
resource.UnitTest(s.T(), resource.TestCase{
Providers: s.Providers,
Steps: []resource.TestStep{
{
ImportState: true,
ImportStateVerify: true,
Config: s.Config,
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr(s.ResourceName, "password", "password"),
),
},
{
Config: config,
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr(s.ResourceName, "description", res.Description),
),
},
},
})
}
func TestResourceIdentitySwiftPasswordTestSuite(t *testing.T) {
suite.Run(t, new(ResourceIdentitySwiftPasswordTestSuite))
}