forked from hashicorp/go-tfe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolicy_set_integration_beta_test.go
366 lines (298 loc) · 11.5 KB
/
policy_set_integration_beta_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
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package tfe
import (
"context"
"fmt"
"os"
"regexp"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestPolicySetsList_Beta(t *testing.T) {
skipUnlessBeta(t)
client := testClient(t)
ctx := context.Background()
orgTest, orgTestCleanup := createOrganization(t, client)
defer orgTestCleanup()
upgradeOrganizationSubscription(t, client, orgTest)
workspace, workspaceCleanup := createWorkspace(t, client, orgTest)
defer workspaceCleanup()
psTest1, psTestCleanup1 := createPolicySet(t, client, orgTest, nil, []*Workspace{workspace}, nil, nil, "")
defer psTestCleanup1()
psTest2, psTestCleanup2 := createPolicySet(t, client, orgTest, nil, []*Workspace{workspace}, nil, nil, "")
defer psTestCleanup2()
psTest3, psTestCleanup3 := createPolicySet(t, client, orgTest, nil, []*Workspace{workspace}, nil, nil, OPA)
defer psTestCleanup3()
t.Run("without list options", func(t *testing.T) {
psl, err := client.PolicySets.List(ctx, orgTest.Name, nil)
require.NoError(t, err)
assert.Contains(t, psl.Items, psTest1)
assert.Contains(t, psl.Items, psTest2)
assert.Contains(t, psl.Items, psTest3)
assert.Equal(t, 1, psl.CurrentPage)
assert.Equal(t, 3, 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, 3, 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: 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("with include param", func(t *testing.T) {
psl, err := client.PolicySets.List(ctx, orgTest.Name, &PolicySetListOptions{
Include: []PolicySetIncludeOpt{PolicySetWorkspaces},
})
require.NoError(t, err)
assert.Equal(t, 3, len(psl.Items))
assert.NotNil(t, psl.Items[0].Workspaces)
assert.Equal(t, 1, len(psl.Items[0].Workspaces))
assert.Equal(t, workspace.ID, psl.Items[0].Workspaces[0].ID)
})
t.Run("filter by kind", func(t *testing.T) {
psl, err := client.PolicySets.List(ctx, orgTest.Name, &PolicySetListOptions{
Include: []PolicySetIncludeOpt{PolicySetWorkspaces},
Kind: OPA,
})
require.NoError(t, err)
assert.Equal(t, 1, len(psl.Items))
assert.NotNil(t, psl.Items[0].Workspaces)
assert.Equal(t, 1, len(psl.Items[0].Workspaces))
assert.Equal(t, workspace.ID, psl.Items[0].Workspaces[0].ID)
})
t.Run("without a valid organization", func(t *testing.T) {
ps, err := client.PolicySets.List(ctx, badIdentifier, nil)
assert.Nil(t, ps)
assert.EqualError(t, err, ErrInvalidOrg.Error())
})
}
func TestPolicySetsCreate_Beta(t *testing.T) {
skipUnlessBeta(t)
client := testClient(t)
ctx := context.Background()
orgTest, orgTestCleanup := createOrganization(t, client)
defer orgTestCleanup()
upgradeOrganizationSubscription(t, client, orgTest)
var vcsPolicyID string
t.Run("with valid attributes", func(t *testing.T) {
options := PolicySetCreateOptions{
Name: String("policy-set"),
Kind: OPA,
}
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.Equal(t, ps.Kind, OPA)
assert.False(t, ps.Global)
})
t.Run("with kind missing", func(t *testing.T) {
options := PolicySetCreateOptions{
Name: String("policy-set1"),
}
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.Equal(t, ps.Kind, Sentinel)
assert.False(t, ps.Global)
})
t.Run("with all attributes provided - sentinel", func(t *testing.T) {
options := PolicySetCreateOptions{
Name: String("global"),
Description: String("Policies in this set will be checked in ALL workspaces!"),
Kind: Sentinel,
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.Equal(t, ps.Kind, Sentinel)
assert.True(t, ps.Global)
})
t.Run("with all attributes provided - OPA", func(t *testing.T) {
options := PolicySetCreateOptions{
Name: String("global1"),
Description: String("Policies in this set will be checked in ALL workspaces!"),
Kind: OPA,
Overridable: Bool(true),
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.Equal(t, ps.Overridable, options.Overridable)
assert.Equal(t, ps.Kind, OPA)
assert.True(t, ps.Global)
})
t.Run("with missing overridable attribute", func(t *testing.T) {
options := PolicySetCreateOptions{
Name: String("global2"),
Description: String("Policies in this set will be checked in ALL workspaces!"),
Kind: OPA,
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.Equal(t, ps.Overridable, Bool(false))
assert.Equal(t, ps.Kind, OPA)
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},
Kind: Sentinel,
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.Kind, Sentinel)
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-set1"),
Kind: Sentinel,
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.Branch, "policies")
assert.Equal(t, ps.Kind, Sentinel)
assert.Equal(t, ps.VCSRepo.DisplayIdentifier, githubIdentifier)
assert.Equal(t, ps.VCSRepo.Identifier, githubIdentifier)
assert.Equal(t, ps.VCSRepo.IngressSubmodules, true)
assert.Equal(t, ps.VCSRepo.OAuthTokenID, oc.ID)
assert.Equal(t, ps.VCSRepo.RepositoryHTTPURL, fmt.Sprintf("https://github.com/%s", githubIdentifier))
assert.Equal(t, ps.VCSRepo.ServiceProvider, string(ServiceProviderGithub))
assert.Regexp(t, fmt.Sprintf("^%s/webhooks/vcs/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$", regexp.QuoteMeta(DefaultConfig().Address)), ps.VCSRepo.WebhookURL)
})
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.Branch, "policies")
assert.Equal(t, ps.VCSRepo.DisplayIdentifier, githubIdentifier)
assert.Equal(t, ps.VCSRepo.Identifier, githubIdentifier)
assert.Equal(t, ps.VCSRepo.IngressSubmodules, false)
assert.Equal(t, ps.VCSRepo.OAuthTokenID, oc.ID)
assert.Equal(t, ps.VCSRepo.RepositoryHTTPURL, fmt.Sprintf("https://github.com/%s", githubIdentifier))
assert.Equal(t, ps.VCSRepo.ServiceProvider, string(ServiceProviderGithub))
assert.Regexp(t, fmt.Sprintf("^%s/webhooks/vcs/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$", regexp.QuoteMeta(DefaultConfig().Address)), ps.VCSRepo.WebhookURL)
})
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 TestPolicySetsUpdate_Beta(t *testing.T) {
skipUnlessBeta(t)
client := testClient(t)
ctx := context.Background()
orgTest, orgTestCleanup := createOrganization(t, client)
defer orgTestCleanup()
upgradeOrganizationSubscription(t, client, orgTest)
psTest, psTestCleanup := createPolicySet(t, client, orgTest, nil, nil, nil, nil, "opa")
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),
Overridable: 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)
assert.True(t, *ps.Overridable)
})
}