This repository has been archived by the owner on Jan 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
resources_test.go
309 lines (269 loc) · 9.01 KB
/
resources_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
package resources
import (
"context"
"fmt"
"log"
"os"
"testing"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
)
func authenticate() (*Azure, context.Context, *azidentity.DefaultAzureCredential) {
azure := &Azure{}
azure.SubscriptionID = os.Getenv("AZURE_SUBSCRIPTION_ID")
azure.ResourceGroupName = "daily_policies_tests"
azure.SecurityGroupName = "daily_policies_tests"
if len(azure.SubscriptionID) == 0 {
log.Fatal("AZURE_SUBSCRIPTION_ID is not set.")
}
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatal(err)
}
ctx := context.Background()
return azure, ctx, cred
}
func TestRegionDeployment(t *testing.T) {
azure, ctx, cred := authenticate()
defer Cleanup(ctx, cred, *azure)
testRegionIn := func(region string) func() error {
return func() error {
_, err := CreateResourceGroup(ctx, cred, *azure, region)
return err
}
}
testCases := map[string]struct {
test func() error
shouldError bool
linkedPolicyName string
}{
"ResourceGroupCreation -> Brazil Southeast": {
test: testRegionIn("Brazil Southeast"),
shouldError: true,
linkedPolicyName: "denied regions",
},
"ResourceGroupCreation -> Switzerland North": {
test: testRegionIn("Switzerland North"),
shouldError: false,
},
"ResourceGroupCreation -> Switzerland West": {
test: testRegionIn("Switzerland West"),
shouldError: false,
},
"ResourceGroupCreation -> Central US": {
test: testRegionIn("Central US"),
shouldError: false,
},
"ResourceGroupCreation -> East US": {
test: testRegionIn("East US"),
shouldError: false,
},
"ResourceGroupCreation -> East US 2": {
test: testRegionIn("East US 2"),
shouldError: false,
},
"ResourceGroupCreation -> North Central US": {
test: testRegionIn("North Central US"),
shouldError: false,
},
"ResourceGroupCreation -> South Central US": {
test: testRegionIn("South Central US"),
shouldError: false,
},
"ResourceGroupCreation -> West Central US": {
test: testRegionIn("West Central US"),
shouldError: false,
},
"ResourceGroupCreation -> West US": {
test: testRegionIn("West US"),
shouldError: false,
},
"ResourceGroupCreation -> West US 2": {
test: testRegionIn("West US 2"),
shouldError: false,
},
"ResourceGroupCreation -> West US 3": {
test: testRegionIn("West US 3"),
shouldError: false,
},
}
checkPolicy := func(err error, expectedPolicy string) error {
if expectedPolicy == "" {
return nil
}
azerr, ok := err.(*AzureError)
if len(azerr.Response.AdditionalInfo) != 0 {
errPolicy := azerr.Response.AdditionalInfo[0].Info.PolicyAssignmentName
if !ok {
return fmt.Errorf("Deployment was denied but we couldn't evaluate the policy violation: %s", err)
}
if errPolicy != expectedPolicy {
return fmt.Errorf("Policy assignment failed but not with the right policy: have %s, want %s", errPolicy, expectedPolicy)
}
}
return nil
}
for name, testCase := range testCases {
t.Run(name, func(t *testing.T) {
Cleanup(ctx, cred, *azure)
err := testCase.test()
switch {
case err == nil && testCase.shouldError:
t.Fatalf("Deployment was allowed but it should have been denied: %s", err)
case err != nil && testCase.shouldError:
if err := checkPolicy(err, testCase.linkedPolicyName); err != nil {
t.Fatal(err)
}
case err != nil && !testCase.shouldError:
t.Fatalf("Deployment was denied but it should have been allowed: %s", err)
}
})
}
}
func TestNetworkSecurityGroupPolicies(t *testing.T) {
azure, ctx, cred := authenticate()
region := "Switzerland West"
defer Cleanup(ctx, cred, *azure)
_, err := CreateResourceGroup(ctx, cred, *azure, region)
if err != nil {
log.Fatal(err)
}
_, err = CreateNetworkSecurityGroup(ctx, cred, *azure, "192.168.1.1/32", "443", region)
if err != nil {
log.Fatal()
}
testSecurityGroupOn := func(prefix string, port string) func() error {
return func() error {
_, err := CreateNetworkSecurityGroup(ctx, cred, *azure, prefix, port, region)
return err
}
}
testSecurityRuleOn := func(prefix string, port string) func() error {
return func() error {
_, err := CreateNetworkSecurityRule(ctx, cred, *azure, prefix, port)
return err
}
}
testCases := map[string]struct {
test func() error
shouldError bool
linkedPolicyName string
}{
"NetworkSecurityGroupRule SourceAddressPrefix -> * on port -> *": {
test: testSecurityGroupOn("*", "*"),
shouldError: true,
linkedPolicyName: "nsg deny any any rule",
},
"NetworkSecurityGroupRule SourceAddressPrefix -> * on port -> 22": {
test: testSecurityGroupOn("*", "22"),
shouldError: true,
linkedPolicyName: "nsg deny any ssh rule",
},
"NetworkSecurityGroupRule SourceAddressPrefix -> * on port -> 3389": {
test: testSecurityGroupOn("*", "3389"),
shouldError: true,
linkedPolicyName: "nsg deny any rdp rule",
},
"NetworkSecurityGroupRule SourceAddressPrefix -> internet on port -> 22": {
test: testSecurityGroupOn("internet", "22"),
shouldError: true,
linkedPolicyName: "nsg deny any ssh rule",
},
"NetworkSecurityGroupRule SourceAddressPrefix -> internet on port -> 3389": {
test: testSecurityGroupOn("internet", "3389"),
shouldError: true,
linkedPolicyName: "nsg deny any rdp rule",
},
"NetworkSecurityGroupRule SourceAddressPrefix -> 0.0.0.0/0 on port -> 22": {
test: testSecurityGroupOn("0.0.0.0/0", "22"),
shouldError: true,
linkedPolicyName: "nsg deny any ssh rule",
},
"NetworkSecurityGroupRule SourceAddressPrefix -> 0.0.0.0/0 on port -> 3389": {
test: testSecurityGroupOn("0.0.0.0/0", "3389"),
shouldError: true,
linkedPolicyName: "nsg deny any rdp rule",
},
"NetworkSecurityGroupRule SourceAddressPrefix -> 192.168.0.0/24 on port -> 22": {
test: testSecurityGroupOn("192.168.0.0/24", "22"),
shouldError: false,
},
"NetworkSecurityGroupRule SourceAddressPrefix -> 192.168.0.0/24 on port -> 3389": {
test: testSecurityGroupOn("192.168.0.0/24", "3389"),
shouldError: false,
},
"NetworkSecurityRule SourceAddressPrefix -> * on port -> *": {
test: testSecurityRuleOn("*", "*"),
shouldError: true,
linkedPolicyName: "nsr deny any any rule",
},
"NetworkSecurityRule SourceAddressPrefix -> * on port -> 22": {
test: testSecurityRuleOn("*", "22"),
shouldError: true,
linkedPolicyName: "nsr deny any ssh rule",
},
"NetworkSecurityRule SourceAddressPrefix -> * on port -> 3389": {
test: testSecurityRuleOn("*", "3389"),
shouldError: true,
linkedPolicyName: "nsr deny any rdp rule",
},
"NetworkSecurityRule SourceAddressPrefix -> internet on port -> 22": {
test: testSecurityRuleOn("internet", "22"),
shouldError: true,
linkedPolicyName: "nsr deny any ssh rule",
},
"NetworkSecurityRule SourceAddressPrefix -> internet on port -> 3389": {
test: testSecurityRuleOn("internet", "3389"),
shouldError: true,
linkedPolicyName: "nsr deny any rdp rule",
},
"NetworkSecurityRule SourceAddressPrefix -> 0.0.0.0/0 on port -> 22": {
test: testSecurityRuleOn("0.0.0.0/0", "22"),
shouldError: true,
linkedPolicyName: "nsr deny any ssh rule",
},
"NetworkSecurityRule SourceAddressPrefix -> 0.0.0.0/0 on port -> 3389": {
test: testSecurityRuleOn("0.0.0.0/0", "3389"),
shouldError: true,
linkedPolicyName: "nsr deny any rdp rule",
},
"NetworkSecurityRule SourceAddressPrefix -> 192.168.0.0/24 on port -> 22": {
test: testSecurityRuleOn("192.168.0.0/24", "22"),
shouldError: false,
},
"NetworkSecurityRule SourceAddressPrefix -> 192.168.0.0/24 on port -> 3389": {
test: testSecurityRuleOn("192.168.0.0/24", "3389"),
shouldError: false,
},
}
checkPolicy := func(err error, expectedPolicy string) error {
if expectedPolicy == "" {
return nil
}
azerr, ok := err.(*AzureError)
if len(azerr.Response.AdditionalInfo) != 0 {
errPolicy := azerr.Response.AdditionalInfo[0].Info.PolicyAssignmentName
if !ok {
return fmt.Errorf("Deployment was denied but we couldn't evaluate policy violation: %s", err)
}
if errPolicy != expectedPolicy {
return fmt.Errorf("Policy assignment failed but not with the right policy: have %s, want %s", errPolicy, expectedPolicy)
}
}
return nil
}
for name, testCase := range testCases {
t.Run(name, func(t *testing.T) {
err := testCase.test()
switch {
case err == nil && testCase.shouldError:
t.Fatalf("Deployment was allowed but it should have been denied: %s", err)
case err != nil && testCase.shouldError:
if err := checkPolicy(err, testCase.linkedPolicyName); err != nil {
t.Fatal(err)
}
case err != nil && !testCase.shouldError:
t.Fatalf("Deployment was denied but it should have been allowed: %s", err)
}
})
}
}