-
Notifications
You must be signed in to change notification settings - Fork 9.2k
/
resource_aws_cloudwatch_dashboard_test.go
218 lines (187 loc) · 5.55 KB
/
resource_aws_cloudwatch_dashboard_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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
package aws
import (
"encoding/json"
"fmt"
"reflect"
"strings"
"testing"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/cloudwatch"
"github.com/hashicorp/terraform-plugin-sdk/helper/acctest"
"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
"github.com/hashicorp/terraform-plugin-sdk/terraform"
)
func TestAccAWSCloudWatchDashboard_basic(t *testing.T) {
var dashboard cloudwatch.GetDashboardOutput
resourceName := "aws_cloudwatch_dashboard.test"
rInt := acctest.RandInt()
resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
CheckDestroy: testAccCheckAWSCloudWatchDashboardDestroy,
Steps: []resource.TestStep{
{
Config: testAccAWSCloudWatchDashboardConfig(rInt),
Check: resource.ComposeTestCheckFunc(
testAccCheckCloudWatchDashboardExists(resourceName, &dashboard),
resource.TestCheckResourceAttr(resourceName, "dashboard_name", testAccAWSCloudWatchDashboardName(rInt)),
),
},
{
ResourceName: resourceName,
ImportState: true,
ImportStateVerify: true,
},
},
})
}
func TestAccAWSCloudWatchDashboard_update(t *testing.T) {
var dashboard cloudwatch.GetDashboardOutput
resourceName := "aws_cloudwatch_dashboard.test"
rInt := acctest.RandInt()
resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders,
CheckDestroy: testAccCheckAWSCloudWatchDashboardDestroy,
Steps: []resource.TestStep{
{
Config: testAccAWSCloudWatchDashboardConfig(rInt),
Check: resource.ComposeTestCheckFunc(
testAccCheckCloudWatchDashboardExists(resourceName, &dashboard),
testAccCloudWatchCheckDashboardBodyIsExpected(resourceName, basicWidget),
resource.TestCheckResourceAttr(resourceName, "dashboard_name", testAccAWSCloudWatchDashboardName(rInt)),
),
},
{
ResourceName: resourceName,
ImportState: true,
ImportStateVerify: true,
},
{
Config: testAccAWSCloudWatchDashboardConfig_updateBody(rInt),
Check: resource.ComposeTestCheckFunc(
testAccCheckCloudWatchDashboardExists(resourceName, &dashboard),
testAccCloudWatchCheckDashboardBodyIsExpected(resourceName, updatedWidget),
resource.TestCheckResourceAttr(resourceName, "dashboard_name", testAccAWSCloudWatchDashboardName(rInt)),
),
},
},
})
}
func testAccCheckCloudWatchDashboardExists(n string, dashboard *cloudwatch.GetDashboardOutput) resource.TestCheckFunc {
return func(s *terraform.State) error {
rs, ok := s.RootModule().Resources[n]
if !ok {
return fmt.Errorf("Not found: %s", n)
}
conn := testAccProvider.Meta().(*AWSClient).cloudwatchconn
params := cloudwatch.GetDashboardInput{
DashboardName: aws.String(rs.Primary.ID),
}
resp, err := conn.GetDashboard(¶ms)
if err != nil {
return err
}
*dashboard = *resp
return nil
}
}
func testAccCheckAWSCloudWatchDashboardDestroy(s *terraform.State) error {
conn := testAccProvider.Meta().(*AWSClient).cloudwatchconn
for _, rs := range s.RootModule().Resources {
if rs.Type != "aws_cloudwatch_dashboard" {
continue
}
params := cloudwatch.GetDashboardInput{
DashboardName: aws.String(rs.Primary.ID),
}
_, err := conn.GetDashboard(¶ms)
if err == nil {
return fmt.Errorf("Dashboard still exists: %s", rs.Primary.ID)
}
if !isCloudWatchDashboardNotFoundErr(err) {
return err
}
}
return nil
}
const (
basicWidget = `{
"widgets": [{
"type": "text",
"x": 0,
"y": 0,
"width": 6,
"height": 6,
"properties": {
"markdown": "Hi there from Terraform: CloudWatch"
}
}]
}`
updatedWidget = `{
"widgets": [{
"type": "text",
"x": 0,
"y": 0,
"width": 6,
"height": 6,
"properties": {
"markdown": "Hi there from Terraform: CloudWatch - updated"
}
}]
}`
)
func testAccAWSCloudWatchDashboardName(rInt int) string {
return fmt.Sprintf("terraform-test-dashboard-%d", rInt)
}
func testAccAWSCloudWatchDashboardConfig(rInt int) string {
return fmt.Sprintf(`
resource "aws_cloudwatch_dashboard" "test" {
dashboard_name = "terraform-test-dashboard-%d"
dashboard_body = <<EOF
%s
EOF
}
`, rInt, basicWidget)
}
func testAccAWSCloudWatchDashboardConfig_updateBody(rInt int) string {
return fmt.Sprintf(`
resource "aws_cloudwatch_dashboard" "test" {
dashboard_name = "terraform-test-dashboard-%d"
dashboard_body = <<EOF
%s
EOF
}
`, rInt, updatedWidget)
}
func testAccCloudWatchCheckDashboardBodyIsExpected(resourceName, expected string) resource.TestCheckFunc {
return func(s *terraform.State) error {
rs, ok := s.RootModule().Resources[resourceName]
if !ok {
return fmt.Errorf("Not found: %s", resourceName)
}
conn := testAccProvider.Meta().(*AWSClient).cloudwatchconn
params := cloudwatch.GetDashboardInput{
DashboardName: aws.String(rs.Primary.ID),
}
resp, err := conn.GetDashboard(¶ms)
if err != nil {
return err
}
var (
bodyReader = strings.NewReader(*resp.DashboardBody)
expectedReader = strings.NewReader(expected)
body = make(map[string]interface{})
expectedBody = make(map[string]interface{})
)
if err := json.NewDecoder(bodyReader).Decode(&body); err != nil {
return fmt.Errorf("failed to parse received body: %s", err)
} else if err := json.NewDecoder(expectedReader).Decode(&expectedBody); err != nil {
return fmt.Errorf("failed to parse expected body: %s", err)
}
if !reflect.DeepEqual(body, expectedBody) {
return fmt.Errorf("Expected %q dashboard body, got %q", expectedBody, body)
}
return nil
}
}