forked from hashicorp/go-tfe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
policy_test.go
355 lines (292 loc) · 9.75 KB
/
policy_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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
package tfe
import (
"context"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestPoliciesList(t *testing.T) {
client := testClient(t)
ctx := context.Background()
orgTest, orgTestCleanup := createOrganization(t, client)
defer orgTestCleanup()
pTest1, _ := createPolicy(t, client, orgTest)
pTest2, _ := createPolicy(t, client, orgTest)
t.Run("without list options", func(t *testing.T) {
ks, err := client.Policies.List(ctx, orgTest.Name, PolicyListOptions{})
require.NoError(t, err)
assert.Contains(t, ks, pTest1)
assert.Contains(t, ks, pTest2)
})
t.Run("with list options", func(t *testing.T) {
t.Skip("paging not supported yet in API")
// Request a page number which is out of range. The result should
// be successful, but return no results if the paging options are
// properly passed along.
ps, err := client.Policies.List(ctx, orgTest.Name, PolicyListOptions{
ListOptions: ListOptions{
PageNumber: 999,
PageSize: 100,
},
})
require.NoError(t, err)
assert.Empty(t, ps)
})
t.Run("without a valid organization", func(t *testing.T) {
ps, err := client.Policies.List(ctx, badIdentifier, PolicyListOptions{})
assert.Nil(t, ps)
assert.EqualError(t, err, "Invalid value for organization")
})
}
func TestPoliciesCreate(t *testing.T) {
client := testClient(t)
ctx := context.Background()
orgTest, orgTestCleanup := createOrganization(t, client)
defer orgTestCleanup()
t.Run("with valid options", func(t *testing.T) {
name := randomString(t)
options := PolicyCreateOptions{
Name: String(name),
Enforce: []*EnforcementOptions{
{
Path: String(name + ".sentinel"),
Mode: EnforcementMode(EnforcementSoft),
},
},
}
p, err := client.Policies.Create(ctx, orgTest.Name, options)
require.NoError(t, err)
// Get a refreshed view from the API.
refreshed, err := client.Policies.Read(ctx, p.ID)
require.NoError(t, err)
for _, item := range []*Policy{
p,
refreshed,
} {
assert.NotEmpty(t, item.ID)
assert.Equal(t, *options.Name, item.Name)
}
})
t.Run("when options has an invalid name", func(t *testing.T) {
p, err := client.Policies.Create(ctx, orgTest.Name, PolicyCreateOptions{
Name: String(badIdentifier),
Enforce: []*EnforcementOptions{
{
Path: String(badIdentifier + ".sentinel"),
Mode: EnforcementMode(EnforcementSoft),
},
},
})
assert.Nil(t, p)
assert.EqualError(t, err, "Invalid value for name")
})
t.Run("when options is missing name", func(t *testing.T) {
p, err := client.Policies.Create(ctx, orgTest.Name, PolicyCreateOptions{
Enforce: []*EnforcementOptions{
{
Path: String(randomString(t) + ".sentinel"),
Mode: EnforcementMode(EnforcementSoft),
},
},
})
assert.Nil(t, p)
assert.EqualError(t, err, "Name is required")
})
t.Run("when options is missing an enforcement", func(t *testing.T) {
options := PolicyCreateOptions{
Name: String(randomString(t)),
}
p, err := client.Policies.Create(ctx, orgTest.Name, options)
assert.Nil(t, p)
assert.EqualError(t, err, "Enforce is required")
})
t.Run("when options is missing enforcement path", func(t *testing.T) {
options := PolicyCreateOptions{
Name: String(randomString(t)),
Enforce: []*EnforcementOptions{
{
Mode: EnforcementMode(EnforcementSoft),
},
},
}
p, err := client.Policies.Create(ctx, orgTest.Name, options)
assert.Nil(t, p)
assert.EqualError(t, err, "Enforcement path is required")
})
t.Run("when options is missing enforcement path", func(t *testing.T) {
name := randomString(t)
options := PolicyCreateOptions{
Name: String(name),
Enforce: []*EnforcementOptions{
{
Path: String(name + ".sentinel"),
},
},
}
p, err := client.Policies.Create(ctx, orgTest.Name, options)
assert.Nil(t, p)
assert.EqualError(t, err, "Enforcement mode is required")
})
t.Run("when options has an invalid organization", func(t *testing.T) {
p, err := client.Policies.Create(ctx, badIdentifier, PolicyCreateOptions{
Name: String("foo"),
})
assert.Nil(t, p)
assert.EqualError(t, err, "Invalid value for organization")
})
}
func TestPoliciesRead(t *testing.T) {
client := testClient(t)
ctx := context.Background()
pTest, pTestCleanup := createPolicy(t, client, nil)
defer pTestCleanup()
t.Run("when the policy exists without content", func(t *testing.T) {
p, err := client.Policies.Read(ctx, pTest.ID)
require.NoError(t, err)
assert.Equal(t, pTest.ID, p.ID)
assert.Equal(t, pTest.Name, p.Name)
assert.Empty(t, p.Enforce)
})
err := client.Policies.Upload(ctx, pTest.ID, []byte(`main = rule { true }`))
require.NoError(t, err)
t.Run("when the policy exists with content", func(t *testing.T) {
p, err := client.Policies.Read(ctx, pTest.ID)
require.NoError(t, err)
assert.Equal(t, pTest.ID, p.ID)
assert.Equal(t, pTest.Name, p.Name)
assert.NotEmpty(t, p.Enforce)
})
t.Run("when the policy does not exist", func(t *testing.T) {
p, err := client.Policies.Read(ctx, "nonexisting")
assert.Nil(t, p)
assert.Equal(t, ErrResourceNotFound, err)
})
t.Run("without a valid policy ID", func(t *testing.T) {
p, err := client.Policies.Read(ctx, badIdentifier)
assert.Nil(t, p)
assert.EqualError(t, err, "Invalid value for policy ID")
})
}
func TestPoliciesUpdate(t *testing.T) {
client := testClient(t)
ctx := context.Background()
orgTest, orgTestCleanup := createOrganization(t, client)
defer orgTestCleanup()
t.Run("when updating with an existing path", func(t *testing.T) {
pBefore, pBeforeCleanup := createUploadedPolicy(t, client, true, orgTest)
defer pBeforeCleanup()
require.Equal(t, 1, len(pBefore.Enforce))
pAfter, err := client.Policies.Update(ctx, pBefore.ID, PolicyUpdateOptions{
Enforce: []*EnforcementOptions{
{
Path: String(pBefore.Enforce[0].Path),
Mode: EnforcementMode(EnforcementAdvisory),
},
},
})
require.NoError(t, err)
require.Equal(t, 1, len(pAfter.Enforce))
assert.Equal(t, pBefore.ID, pAfter.ID)
assert.Equal(t, pBefore.Name, pAfter.Name)
assert.Equal(t, pBefore.Enforce[0].Path, pAfter.Enforce[0].Path)
assert.Equal(t, EnforcementAdvisory, pAfter.Enforce[0].Mode)
})
t.Run("when updating with a nonexisting path", func(t *testing.T) {
pBefore, pBeforeCleanup := createUploadedPolicy(t, client, true, orgTest)
defer pBeforeCleanup()
require.Equal(t, 1, len(pBefore.Enforce))
pAfter, err := client.Policies.Update(ctx, pBefore.ID, PolicyUpdateOptions{
Enforce: []*EnforcementOptions{
{
Path: String("nonexisting"),
Mode: EnforcementMode(EnforcementAdvisory),
},
},
})
require.NoError(t, err)
// Weirdly enough this is not equal as updating a nonexisting path
// causes the enforce mode to reset to the default hard-mandatory
t.Skip("see comment...")
assert.Equal(t, pBefore, pAfter)
})
t.Run("without options", func(t *testing.T) {
pBefore, pBeforeCleanup := createPolicy(t, client, orgTest)
defer pBeforeCleanup()
pAfter, err := client.Policies.Update(ctx, pBefore.ID, PolicyUpdateOptions{})
assert.Nil(t, pAfter)
assert.EqualError(t, err, "Enforce is required")
})
t.Run("without a valid policy ID", func(t *testing.T) {
p, err := client.Policies.Update(ctx, badIdentifier, PolicyUpdateOptions{})
assert.Nil(t, p)
assert.EqualError(t, err, "Invalid value for policy ID")
})
}
func TestPoliciesDelete(t *testing.T) {
client := testClient(t)
ctx := context.Background()
orgTest, orgTestCleanup := createOrganization(t, client)
defer orgTestCleanup()
pTest, _ := createPolicy(t, client, orgTest)
t.Run("with valid options", func(t *testing.T) {
err := client.Policies.Delete(ctx, pTest.ID)
require.NoError(t, err)
// Try loading the policy - it should fail.
_, err = client.Policies.Read(ctx, pTest.ID)
assert.Equal(t, err, ErrResourceNotFound)
})
t.Run("when the policy does not exist", func(t *testing.T) {
err := client.Policies.Delete(ctx, pTest.ID)
assert.Equal(t, err, ErrResourceNotFound)
})
t.Run("when the policy ID is invalid", func(t *testing.T) {
err := client.Policies.Delete(ctx, badIdentifier)
assert.EqualError(t, err, "Invalid value for policy ID")
})
}
func TestPoliciesUpload(t *testing.T) {
client := testClient(t)
ctx := context.Background()
pTest, pTestCleanup := createPolicy(t, client, nil)
defer pTestCleanup()
t.Run("with valid options", func(t *testing.T) {
err := client.Policies.Upload(ctx, pTest.ID, []byte(`main = rule { true }`))
assert.NoError(t, err)
})
t.Run("with empty content", func(t *testing.T) {
err := client.Policies.Upload(ctx, pTest.ID, []byte{})
assert.NoError(t, err)
})
t.Run("without any content", func(t *testing.T) {
err := client.Policies.Upload(ctx, pTest.ID, nil)
assert.NoError(t, err)
})
t.Run("without a valid policy ID", func(t *testing.T) {
err := client.Policies.Upload(ctx, badIdentifier, []byte(`main = rule { true }`))
assert.EqualError(t, err, "Invalid value for policy ID")
})
}
func TestPoliciesDownload(t *testing.T) {
client := testClient(t)
ctx := context.Background()
pTest, pTestCleanup := createPolicy(t, client, nil)
defer pTestCleanup()
testContent := []byte(`main = rule { true }`)
t.Run("without existing content", func(t *testing.T) {
content, err := client.Policies.Download(ctx, pTest.ID)
assert.Equal(t, ErrResourceNotFound, err)
assert.Nil(t, content)
})
t.Run("with valid options", func(t *testing.T) {
err := client.Policies.Upload(ctx, pTest.ID, testContent)
require.NoError(t, err)
content, err := client.Policies.Download(ctx, pTest.ID)
assert.NoError(t, err)
assert.Equal(t, testContent, content)
})
t.Run("without a valid policy ID", func(t *testing.T) {
content, err := client.Policies.Download(ctx, badIdentifier)
assert.EqualError(t, err, "Invalid value for policy ID")
assert.Nil(t, content)
})
}