-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpath_config_test.go
258 lines (222 loc) · 6.5 KB
/
path_config_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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
package vault_plugin_secrets_grafana
import (
"context"
"fmt"
"testing"
"github.com/hashicorp/vault/sdk/logical"
"github.com/stretchr/testify/assert"
)
const (
token = "123456"
configURL = "http://localhost:19090"
)
func TestConfig(t *testing.T) {
b, reqStorage := getTestBackend(t)
t.Run("Test Configuration", func(t *testing.T) {
t.Run("Create Configuration (Cloud) - empty token", func(t *testing.T) {
err := testConfigCreate(b, reqStorage, map[string]interface{}{
"type": GrafanaCloudType,
"token": "",
})
assert.Error(t, err)
})
t.Run("Create Configuration (Grafana) - empty token", func(t *testing.T) {
err := testConfigCreate(b, reqStorage, map[string]interface{}{
"type": GrafanaType,
"token": "",
"url": configURL,
})
assert.Error(t, err)
})
t.Run("Create Configuration (Grafana) - empty url", func(t *testing.T) {
err := testConfigCreate(b, reqStorage, map[string]interface{}{
"type": GrafanaType,
"token": token,
"url": "",
})
assert.Error(t, err)
})
t.Run("Create Configuration (Grafana) - invalid url", func(t *testing.T) {
err := testConfigCreate(b, reqStorage, map[string]interface{}{
"type": GrafanaType,
"token": token,
"url": "/addd",
})
assert.Error(t, err)
})
t.Run("Create Configuration (Cloud) - pass", func(t *testing.T) {
err := testConfigCreate(b, reqStorage, map[string]interface{}{
"type": GrafanaCloudType,
"token": token,
})
assert.NoError(t, err)
})
t.Run("Read Configuration (Cloud) - pass", func(t *testing.T) {
err := testConfigRead(b, reqStorage, map[string]interface{}{
"type": GrafanaCloudType,
"token": token,
"url": defaultGrafanaCloudURL,
})
assert.NoError(t, err)
})
t.Run("Update Configuration (Cloud - set token) - pass", func(t *testing.T) {
err := testConfigUpdate(b, reqStorage, map[string]interface{}{
"type": GrafanaCloudType,
"token": "abcd",
})
assert.NoError(t, err)
})
t.Run("Read Updated Configuration (Cloud - set token) - pass", func(t *testing.T) {
err := testConfigRead(b, reqStorage, map[string]interface{}{
"type": GrafanaCloudType,
"token": "abcd",
"url": defaultGrafanaCloudURL,
})
assert.NoError(t, err)
})
t.Run("Update Configuration (Cloud - set type) - pass", func(t *testing.T) {
err := testConfigUpdate(b, reqStorage, map[string]interface{}{
"type": GrafanaType,
"url": configURL,
"token": "abcd",
})
assert.NoError(t, err)
})
t.Run("Read Updated Configuration (Cloud - set type) - pass", func(t *testing.T) {
err := testConfigRead(b, reqStorage, map[string]interface{}{
"type": GrafanaType,
"url": configURL,
"token": "abcd",
})
assert.NoError(t, err)
})
t.Run("Delete Configuration (Cloud) - pass", func(t *testing.T) {
err := testConfigDelete(b, reqStorage)
assert.NoError(t, err)
})
t.Run("Create Configuration (Grafana) - pass", func(t *testing.T) {
err := testConfigCreate(b, reqStorage, map[string]interface{}{
"type": GrafanaType,
"token": token,
"url": configURL,
})
assert.NoError(t, err)
})
t.Run("Read Configuration (Grafana) - pass", func(t *testing.T) {
err := testConfigRead(b, reqStorage, map[string]interface{}{
"type": GrafanaType,
"token": token,
"url": configURL,
})
assert.NoError(t, err)
})
t.Run("Update Configuration (Grafana - set token and url) - pass", func(t *testing.T) {
err := testConfigUpdate(b, reqStorage, map[string]interface{}{
"type": GrafanaCloudType,
"url": "https://test.com:19090",
"token": "abcd",
})
assert.NoError(t, err)
})
t.Run("Read Updated Configuration (Grafana - set token and url) - pass", func(t *testing.T) {
err := testConfigRead(b, reqStorage, map[string]interface{}{
"type": GrafanaCloudType,
"url": "https://test.com:19090",
"token": "abcd",
})
assert.NoError(t, err)
})
t.Run("Update Configuration (Grafana - set type) - pass", func(t *testing.T) {
err := testConfigUpdate(b, reqStorage, map[string]interface{}{
"type": GrafanaCloudType,
"token": token,
"url": "",
})
assert.NoError(t, err)
})
t.Run("Read Updated Configuration (Grafana - set type) - pass", func(t *testing.T) {
err := testConfigRead(b, reqStorage, map[string]interface{}{
"type": GrafanaCloudType,
"token": token,
"url": defaultGrafanaCloudURL,
})
assert.NoError(t, err)
})
t.Run("Delete Configuration (Grafana) - pass", func(t *testing.T) {
err := testConfigDelete(b, reqStorage)
assert.NoError(t, err)
})
})
}
func testConfigCreate(b logical.Backend, s logical.Storage, d map[string]interface{}) error {
resp, err := b.HandleRequest(context.Background(), &logical.Request{
Operation: logical.CreateOperation,
Path: configStoragePath,
Data: d,
Storage: s,
})
if err != nil {
return err
}
if resp != nil && resp.IsError() {
return resp.Error()
}
return nil
}
func testConfigDelete(b logical.Backend, s logical.Storage) error {
resp, err := b.HandleRequest(context.Background(), &logical.Request{
Operation: logical.DeleteOperation,
Path: configStoragePath,
Storage: s,
})
if err != nil {
return err
}
if resp != nil && resp.IsError() {
return resp.Error()
}
return nil
}
func testConfigUpdate(b logical.Backend, s logical.Storage, d map[string]interface{}) error {
resp, err := b.HandleRequest(context.Background(), &logical.Request{
Operation: logical.UpdateOperation,
Path: configStoragePath,
Data: d,
Storage: s,
})
if err != nil {
return err
}
if resp != nil && resp.IsError() {
return resp.Error()
}
return nil
}
func testConfigRead(b logical.Backend, s logical.Storage, expected map[string]interface{}) error {
resp, err := b.HandleRequest(context.Background(), &logical.Request{
Operation: logical.ReadOperation,
Path: configStoragePath,
Storage: s,
})
if err != nil {
return err
}
if resp == nil && expected == nil {
return nil
}
if resp.IsError() {
return resp.Error()
}
if len(expected) != len(resp.Data) {
return fmt.Errorf("read data mismatch (expected %d values, got %d)", len(expected), len(resp.Data))
}
for k, expectedV := range expected {
actualV, ok := resp.Data[k]
if !ok {
return fmt.Errorf(`expected data["%s"] = %v but was not included in read output"`, k, expectedV)
} else if expectedV != actualV {
return fmt.Errorf(`expected data["%s"] = %v, instead got %v"`, k, expectedV, actualV)
}
}
return nil
}