forked from hashicorp/go-tfe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolicy_set_test.go
554 lines (457 loc) · 16 KB
/
policy_set_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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
package tfe
import (
"context"
"fmt"
"os"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestPolicySetsList(t *testing.T) {
client := testClient(t)
ctx := context.Background()
orgTest, orgTestCleanup := createOrganization(t, client)
defer orgTestCleanup()
psTest1, psTestCleanup1 := createPolicySet(t, client, orgTest, nil, nil)
defer psTestCleanup1()
psTest2, psTestCleanup2 := createPolicySet(t, client, orgTest, nil, nil)
defer psTestCleanup2()
t.Run("without list options", func(t *testing.T) {
psl, err := client.PolicySets.List(ctx, orgTest.Name, PolicySetListOptions{})
require.NoError(t, err)
assert.Contains(t, psl.Items, psTest1)
assert.Contains(t, psl.Items, psTest2)
assert.Equal(t, 1, psl.CurrentPage)
assert.Equal(t, 2, psl.TotalCount)
})
t.Run("with pagination", func(t *testing.T) {
// 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.
psl, err := client.PolicySets.List(ctx, orgTest.Name, PolicySetListOptions{
ListOptions: ListOptions{
PageNumber: 999,
PageSize: 100,
},
})
require.NoError(t, err)
assert.Empty(t, psl.Items)
assert.Equal(t, 999, psl.CurrentPage)
assert.Equal(t, 2, psl.TotalCount)
})
t.Run("with search", func(t *testing.T) {
// Search by one of the policy set's names; we should get only that policy
// set and pagination data should reflect the search as well
psl, err := client.PolicySets.List(ctx, orgTest.Name, PolicySetListOptions{
Search: String(psTest1.Name),
})
require.NoError(t, err)
assert.Contains(t, psl.Items, psTest1)
assert.NotContains(t, psl.Items, psTest2)
assert.Equal(t, 1, psl.CurrentPage)
assert.Equal(t, 1, psl.TotalCount)
})
t.Run("without a valid organization", func(t *testing.T) {
ps, err := client.PolicySets.List(ctx, badIdentifier, PolicySetListOptions{})
assert.Nil(t, ps)
assert.EqualError(t, err, ErrInvalidOrg.Error())
})
}
func TestPolicySetsCreate(t *testing.T) {
client := testClient(t)
ctx := context.Background()
orgTest, orgTestCleanup := createOrganization(t, client)
defer orgTestCleanup()
var vcsPolicyID string
t.Run("with valid attributes", func(t *testing.T) {
options := PolicySetCreateOptions{
Name: String("policy-set"),
}
ps, err := client.PolicySets.Create(ctx, orgTest.Name, options)
require.NoError(t, err)
assert.Equal(t, ps.Name, *options.Name)
assert.Equal(t, ps.Description, "")
assert.False(t, ps.Global)
})
t.Run("with all attributes provided", func(t *testing.T) {
options := PolicySetCreateOptions{
Name: String("global"),
Description: String("Policies in this set will be checked in ALL workspaces!"),
Global: Bool(true),
}
ps, err := client.PolicySets.Create(ctx, orgTest.Name, options)
require.NoError(t, err)
assert.Equal(t, ps.Name, *options.Name)
assert.Equal(t, ps.Description, *options.Description)
assert.True(t, ps.Global)
})
t.Run("with policies and workspaces provided", func(t *testing.T) {
pTest, pTestCleanup := createPolicy(t, client, orgTest)
defer pTestCleanup()
wTest, wTestCleanup := createWorkspace(t, client, orgTest)
defer wTestCleanup()
options := PolicySetCreateOptions{
Name: String("populated-policy-set"),
Policies: []*Policy{pTest},
Workspaces: []*Workspace{wTest},
}
ps, err := client.PolicySets.Create(ctx, orgTest.Name, options)
require.NoError(t, err)
assert.Equal(t, ps.Name, *options.Name)
assert.Equal(t, ps.PolicyCount, 1)
assert.Equal(t, ps.Policies[0].ID, pTest.ID)
assert.Equal(t, ps.WorkspaceCount, 1)
assert.Equal(t, ps.Workspaces[0].ID, wTest.ID)
})
t.Run("with vcs policy set", func(t *testing.T) {
githubIdentifier := os.Getenv("GITHUB_POLICY_SET_IDENTIFIER")
if githubIdentifier == "" {
t.Skip("Export a valid GITHUB_POLICY_SET_IDENTIFIER before running this test")
}
oc, ocTestCleanup := createOAuthToken(t, client, orgTest)
defer ocTestCleanup()
options := PolicySetCreateOptions{
Name: String("vcs-policy-set"),
PoliciesPath: String("/policy-sets/foo"),
VCSRepo: &VCSRepoOptions{
Branch: String("policies"),
Identifier: String(githubIdentifier),
OAuthTokenID: String(oc.ID),
IngressSubmodules: Bool(true),
},
}
ps, err := client.PolicySets.Create(ctx, orgTest.Name, options)
require.NoError(t, err)
// Save policy ID to be used by update func
vcsPolicyID = ps.ID
assert.Equal(t, ps.Name, *options.Name)
assert.Equal(t, ps.Description, "")
assert.False(t, ps.Global)
assert.Equal(t, ps.PoliciesPath, "/policy-sets/foo")
assert.Equal(t, ps.VCSRepo, &VCSRepo{
Branch: "policies",
DisplayIdentifier: githubIdentifier,
Identifier: githubIdentifier,
OAuthTokenID: oc.ID,
IngressSubmodules: true,
RepositoryHTTPURL: fmt.Sprintf("https://github.com/%s", githubIdentifier),
ServiceProvider: string(ServiceProviderGithub),
})
})
t.Run("with vcs policy updated", func(t *testing.T) {
githubIdentifier := os.Getenv("GITHUB_POLICY_SET_IDENTIFIER")
if githubIdentifier == "" {
t.Skip("Export a valid GITHUB_POLICY_SET_IDENTIFIER before running this test")
}
oc, ocTestCleanup := createOAuthToken(t, client, orgTest)
defer ocTestCleanup()
options := PolicySetUpdateOptions{
Name: String("vcs-policy-set"),
PoliciesPath: String("/policy-sets/bar"),
VCSRepo: &VCSRepoOptions{
Branch: String("policies"),
Identifier: String(githubIdentifier),
OAuthTokenID: String(oc.ID),
IngressSubmodules: Bool(false),
},
}
ps, err := client.PolicySets.Update(ctx, vcsPolicyID, options)
require.NoError(t, err)
assert.Equal(t, ps.Name, *options.Name)
assert.Equal(t, ps.Description, "")
assert.False(t, ps.Global)
assert.Equal(t, ps.PoliciesPath, "/policy-sets/bar")
assert.Equal(t, ps.VCSRepo, &VCSRepo{
Branch: "policies",
DisplayIdentifier: githubIdentifier,
Identifier: githubIdentifier,
OAuthTokenID: oc.ID,
IngressSubmodules: false,
RepositoryHTTPURL: fmt.Sprintf("https://github.com/%s", githubIdentifier),
ServiceProvider: string(ServiceProviderGithub),
})
})
t.Run("without a name provided", func(t *testing.T) {
ps, err := client.PolicySets.Create(ctx, orgTest.Name, PolicySetCreateOptions{})
assert.Nil(t, ps)
assert.EqualError(t, err, ErrRequiredName.Error())
})
t.Run("with an invalid name provided", func(t *testing.T) {
ps, err := client.PolicySets.Create(ctx, orgTest.Name, PolicySetCreateOptions{
Name: String("nope!"),
})
assert.Nil(t, ps)
assert.EqualError(t, err, ErrInvalidName.Error())
})
t.Run("without a valid organization", func(t *testing.T) {
ps, err := client.PolicySets.Create(ctx, badIdentifier, PolicySetCreateOptions{
Name: String("policy-set"),
})
assert.Nil(t, ps)
assert.EqualError(t, err, ErrInvalidOrg.Error())
})
}
func TestPolicySetsRead(t *testing.T) {
client := testClient(t)
ctx := context.Background()
orgTest, orgTestCleanup := createOrganization(t, client)
defer orgTestCleanup()
psTest, psTestCleanup := createPolicySet(t, client, orgTest, nil, nil)
defer psTestCleanup()
t.Run("with a valid ID", func(t *testing.T) {
ps, err := client.PolicySets.Read(ctx, psTest.ID)
require.NoError(t, err)
assert.Equal(t, ps.ID, psTest.ID)
})
t.Run("without a valid ID", func(t *testing.T) {
ps, err := client.PolicySets.Read(ctx, badIdentifier)
assert.Nil(t, ps)
assert.EqualError(t, err, "invalid value for policy set ID")
})
}
func TestPolicySetsUpdate(t *testing.T) {
client := testClient(t)
ctx := context.Background()
orgTest, orgTestCleanup := createOrganization(t, client)
defer orgTestCleanup()
psTest, psTestCleanup := createPolicySet(t, client, orgTest, nil, nil)
defer psTestCleanup()
t.Run("with valid attributes", func(t *testing.T) {
options := PolicySetUpdateOptions{
Name: String("global"),
Description: String("Policies in this set will be checked in ALL workspaces!"),
Global: Bool(true),
}
ps, err := client.PolicySets.Update(ctx, psTest.ID, options)
require.NoError(t, err)
assert.Equal(t, ps.Name, *options.Name)
assert.Equal(t, ps.Description, *options.Description)
assert.True(t, ps.Global)
})
t.Run("with invalid attributes", func(t *testing.T) {
ps, err := client.PolicySets.Update(ctx, psTest.ID, PolicySetUpdateOptions{
Name: String("nope!"),
})
assert.Nil(t, ps)
assert.EqualError(t, err, ErrInvalidName.Error())
})
t.Run("without a valid ID", func(t *testing.T) {
ps, err := client.PolicySets.Update(ctx, badIdentifier, PolicySetUpdateOptions{
Name: String("policy-set"),
})
assert.Nil(t, ps)
assert.EqualError(t, err, "invalid value for policy set ID")
})
}
func TestPolicySetsAddPolicies(t *testing.T) {
client := testClient(t)
ctx := context.Background()
orgTest, orgTestCleanup := createOrganization(t, client)
defer orgTestCleanup()
pTest1, pTestCleanup1 := createPolicy(t, client, orgTest)
defer pTestCleanup1()
pTest2, pTestCleanup2 := createPolicy(t, client, orgTest)
defer pTestCleanup2()
psTest, psTestCleanup := createPolicySet(t, client, orgTest, nil, nil)
defer psTestCleanup()
t.Run("with policies provided", func(t *testing.T) {
err := client.PolicySets.AddPolicies(ctx, psTest.ID, PolicySetAddPoliciesOptions{
Policies: []*Policy{pTest1, pTest2},
})
require.NoError(t, err)
ps, err := client.PolicySets.Read(ctx, psTest.ID)
require.NoError(t, err)
assert.Equal(t, ps.PolicyCount, 2)
ids := []string{}
for _, policy := range ps.Policies {
ids = append(ids, policy.ID)
}
assert.Contains(t, ids, pTest1.ID)
assert.Contains(t, ids, pTest2.ID)
})
t.Run("without policies provided", func(t *testing.T) {
err := client.PolicySets.AddPolicies(ctx, psTest.ID, PolicySetAddPoliciesOptions{})
assert.EqualError(t, err, "policies is required")
})
t.Run("with empty policies slice", func(t *testing.T) {
err := client.PolicySets.AddPolicies(ctx, psTest.ID, PolicySetAddPoliciesOptions{
Policies: []*Policy{},
})
assert.EqualError(t, err, "must provide at least one policy")
})
t.Run("without a valid ID", func(t *testing.T) {
err := client.PolicySets.AddPolicies(ctx, badIdentifier, PolicySetAddPoliciesOptions{
Policies: []*Policy{pTest1, pTest2},
})
assert.EqualError(t, err, "invalid value for policy set ID")
})
}
func TestPolicySetsRemovePolicies(t *testing.T) {
client := testClient(t)
ctx := context.Background()
orgTest, orgTestCleanup := createOrganization(t, client)
defer orgTestCleanup()
pTest1, pTestCleanup1 := createPolicy(t, client, orgTest)
defer pTestCleanup1()
pTest2, pTestCleanup2 := createPolicy(t, client, orgTest)
defer pTestCleanup2()
psTest, psTestCleanup := createPolicySet(t, client, orgTest, []*Policy{pTest1, pTest2}, nil)
defer psTestCleanup()
t.Run("with policies provided", func(t *testing.T) {
err := client.PolicySets.RemovePolicies(ctx, psTest.ID, PolicySetRemovePoliciesOptions{
Policies: []*Policy{pTest1, pTest2},
})
require.NoError(t, err)
ps, err := client.PolicySets.Read(ctx, psTest.ID)
require.NoError(t, err)
assert.Equal(t, 0, ps.PolicyCount)
assert.Empty(t, ps.Policies)
})
t.Run("without policies provided", func(t *testing.T) {
err := client.PolicySets.RemovePolicies(ctx, psTest.ID, PolicySetRemovePoliciesOptions{})
assert.EqualError(t, err, "policies is required")
})
t.Run("with empty policies slice", func(t *testing.T) {
err := client.PolicySets.RemovePolicies(ctx, psTest.ID, PolicySetRemovePoliciesOptions{
Policies: []*Policy{},
})
assert.EqualError(t, err, "must provide at least one policy")
})
t.Run("without a valid ID", func(t *testing.T) {
err := client.PolicySets.RemovePolicies(ctx, badIdentifier, PolicySetRemovePoliciesOptions{
Policies: []*Policy{pTest1, pTest2},
})
assert.EqualError(t, err, "invalid value for policy set ID")
})
}
func TestPolicySetsAddWorkspaces(t *testing.T) {
client := testClient(t)
ctx := context.Background()
orgTest, orgTestCleanup := createOrganization(t, client)
defer orgTestCleanup()
wTest1, wTestCleanup1 := createWorkspace(t, client, orgTest)
defer wTestCleanup1()
wTest2, wTestCleanup2 := createWorkspace(t, client, orgTest)
defer wTestCleanup2()
psTest, psTestCleanup := createPolicySet(t, client, orgTest, nil, nil)
defer psTestCleanup()
t.Run("with workspaces provided", func(t *testing.T) {
err := client.PolicySets.AddWorkspaces(
ctx,
psTest.ID,
PolicySetAddWorkspacesOptions{
Workspaces: []*Workspace{wTest1, wTest2},
},
)
require.NoError(t, err)
ps, err := client.PolicySets.Read(ctx, psTest.ID)
require.NoError(t, err)
assert.Equal(t, 2, ps.WorkspaceCount)
ids := []string{}
for _, ws := range ps.Workspaces {
ids = append(ids, ws.ID)
}
assert.Contains(t, ids, wTest1.ID)
assert.Contains(t, ids, wTest2.ID)
})
t.Run("without workspaces provided", func(t *testing.T) {
err := client.PolicySets.AddWorkspaces(
ctx,
psTest.ID,
PolicySetAddWorkspacesOptions{},
)
assert.EqualError(t, err, "workspaces is required")
})
t.Run("with empty workspaces slice", func(t *testing.T) {
err := client.PolicySets.AddWorkspaces(
ctx,
psTest.ID,
PolicySetAddWorkspacesOptions{Workspaces: []*Workspace{}},
)
assert.EqualError(t, err, "must provide at least one workspace")
})
t.Run("without a valid ID", func(t *testing.T) {
err := client.PolicySets.AddWorkspaces(
ctx,
badIdentifier,
PolicySetAddWorkspacesOptions{
Workspaces: []*Workspace{wTest1, wTest2},
},
)
assert.EqualError(t, err, "invalid value for policy set ID")
})
}
func TestPolicySetsRemoveWorkspaces(t *testing.T) {
client := testClient(t)
ctx := context.Background()
orgTest, orgTestCleanup := createOrganization(t, client)
defer orgTestCleanup()
wTest1, wTestCleanup1 := createWorkspace(t, client, orgTest)
defer wTestCleanup1()
wTest2, wTestCleanup2 := createWorkspace(t, client, orgTest)
defer wTestCleanup2()
psTest, psTestCleanup := createPolicySet(t, client, orgTest, nil, []*Workspace{wTest1, wTest2})
defer psTestCleanup()
t.Run("with workspaces provided", func(t *testing.T) {
err := client.PolicySets.RemoveWorkspaces(
ctx,
psTest.ID,
PolicySetRemoveWorkspacesOptions{
Workspaces: []*Workspace{wTest1, wTest2},
},
)
require.NoError(t, err)
ps, err := client.PolicySets.Read(ctx, psTest.ID)
require.NoError(t, err)
assert.Equal(t, 0, ps.WorkspaceCount)
assert.Empty(t, ps.Workspaces)
})
t.Run("without workspaces provided", func(t *testing.T) {
err := client.PolicySets.RemoveWorkspaces(
ctx,
psTest.ID,
PolicySetRemoveWorkspacesOptions{},
)
assert.EqualError(t, err, "workspaces is required")
})
t.Run("with empty workspaces slice", func(t *testing.T) {
err := client.PolicySets.RemoveWorkspaces(
ctx,
psTest.ID,
PolicySetRemoveWorkspacesOptions{Workspaces: []*Workspace{}},
)
assert.EqualError(t, err, "must provide at least one workspace")
})
t.Run("without a valid ID", func(t *testing.T) {
err := client.PolicySets.RemoveWorkspaces(
ctx,
badIdentifier,
PolicySetRemoveWorkspacesOptions{
Workspaces: []*Workspace{wTest1, wTest2},
},
)
assert.EqualError(t, err, "invalid value for policy set ID")
})
}
func TestPolicySetsDelete(t *testing.T) {
client := testClient(t)
ctx := context.Background()
orgTest, orgTestCleanup := createOrganization(t, client)
defer orgTestCleanup()
psTest, _ := createPolicySet(t, client, orgTest, nil, nil)
t.Run("with valid options", func(t *testing.T) {
err := client.PolicySets.Delete(ctx, psTest.ID)
require.NoError(t, err)
// Try loading the policy - it should fail.
_, err = client.PolicySets.Read(ctx, psTest.ID)
assert.Equal(t, err, ErrResourceNotFound)
})
t.Run("when the policy does not exist", func(t *testing.T) {
err := client.PolicySets.Delete(ctx, psTest.ID)
assert.Equal(t, err, ErrResourceNotFound)
})
t.Run("when the policy ID is invalid", func(t *testing.T) {
err := client.PolicySets.Delete(ctx, badIdentifier)
assert.EqualError(t, err, "invalid value for policy set ID")
})
}