aboutsummaryrefslogtreecommitdiff
path: root/weed/iam/policy/policy_engine_test.go
blob: 4e6cd3c3a1d22c11aa09286d9456b975dd442a3a (plain)
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
package policy

import (
	"context"
	"testing"

	"github.com/stretchr/testify/assert"
	"github.com/stretchr/testify/require"
)

// TestPolicyEngineInitialization tests policy engine initialization
func TestPolicyEngineInitialization(t *testing.T) {
	tests := []struct {
		name    string
		config  *PolicyEngineConfig
		wantErr bool
	}{
		{
			name: "valid config",
			config: &PolicyEngineConfig{
				DefaultEffect: "Deny",
				StoreType:     "memory",
			},
			wantErr: false,
		},
		{
			name: "invalid default effect",
			config: &PolicyEngineConfig{
				DefaultEffect: "Invalid",
				StoreType:     "memory",
			},
			wantErr: true,
		},
		{
			name:    "nil config",
			config:  nil,
			wantErr: true,
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			engine := NewPolicyEngine()

			err := engine.Initialize(tt.config)

			if tt.wantErr {
				assert.Error(t, err)
			} else {
				assert.NoError(t, err)
				assert.True(t, engine.IsInitialized())
			}
		})
	}
}

// TestPolicyDocumentValidation tests policy document structure validation
func TestPolicyDocumentValidation(t *testing.T) {
	tests := []struct {
		name     string
		policy   *PolicyDocument
		wantErr  bool
		errorMsg string
	}{
		{
			name: "valid policy document",
			policy: &PolicyDocument{
				Version: "2012-10-17",
				Statement: []Statement{
					{
						Sid:      "AllowS3Read",
						Effect:   "Allow",
						Action:   []string{"s3:GetObject", "s3:ListBucket"},
						Resource: []string{"arn:seaweed:s3:::mybucket/*"},
					},
				},
			},
			wantErr: false,
		},
		{
			name: "missing version",
			policy: &PolicyDocument{
				Statement: []Statement{
					{
						Effect:   "Allow",
						Action:   []string{"s3:GetObject"},
						Resource: []string{"arn:seaweed:s3:::mybucket/*"},
					},
				},
			},
			wantErr:  true,
			errorMsg: "version is required",
		},
		{
			name: "empty statements",
			policy: &PolicyDocument{
				Version:   "2012-10-17",
				Statement: []Statement{},
			},
			wantErr:  true,
			errorMsg: "at least one statement is required",
		},
		{
			name: "invalid effect",
			policy: &PolicyDocument{
				Version: "2012-10-17",
				Statement: []Statement{
					{
						Effect:   "Maybe",
						Action:   []string{"s3:GetObject"},
						Resource: []string{"arn:seaweed:s3:::mybucket/*"},
					},
				},
			},
			wantErr:  true,
			errorMsg: "invalid effect",
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			err := ValidatePolicyDocument(tt.policy)

			if tt.wantErr {
				assert.Error(t, err)
				if tt.errorMsg != "" {
					assert.Contains(t, err.Error(), tt.errorMsg)
				}
			} else {
				assert.NoError(t, err)
			}
		})
	}
}

// TestPolicyEvaluation tests policy evaluation logic
func TestPolicyEvaluation(t *testing.T) {
	engine := setupTestPolicyEngine(t)

	// Add test policies
	readPolicy := &PolicyDocument{
		Version: "2012-10-17",
		Statement: []Statement{
			{
				Sid:    "AllowS3Read",
				Effect: "Allow",
				Action: []string{"s3:GetObject", "s3:ListBucket"},
				Resource: []string{
					"arn:seaweed:s3:::public-bucket/*", // For object operations
					"arn:seaweed:s3:::public-bucket",   // For bucket operations
				},
			},
		},
	}

	err := engine.AddPolicy("", "read-policy", readPolicy)
	require.NoError(t, err)

	denyPolicy := &PolicyDocument{
		Version: "2012-10-17",
		Statement: []Statement{
			{
				Sid:      "DenyS3Delete",
				Effect:   "Deny",
				Action:   []string{"s3:DeleteObject"},
				Resource: []string{"arn:seaweed:s3:::*"},
			},
		},
	}

	err = engine.AddPolicy("", "deny-policy", denyPolicy)
	require.NoError(t, err)

	tests := []struct {
		name     string
		context  *EvaluationContext
		policies []string
		want     Effect
	}{
		{
			name: "allow read access",
			context: &EvaluationContext{
				Principal: "user:alice",
				Action:    "s3:GetObject",
				Resource:  "arn:seaweed:s3:::public-bucket/file.txt",
				RequestContext: map[string]interface{}{
					"sourceIP": "192.168.1.100",
				},
			},
			policies: []string{"read-policy"},
			want:     EffectAllow,
		},
		{
			name: "deny delete access (explicit deny)",
			context: &EvaluationContext{
				Principal: "user:alice",
				Action:    "s3:DeleteObject",
				Resource:  "arn:seaweed:s3:::public-bucket/file.txt",
			},
			policies: []string{"read-policy", "deny-policy"},
			want:     EffectDeny,
		},
		{
			name: "deny by default (no matching policy)",
			context: &EvaluationContext{
				Principal: "user:alice",
				Action:    "s3:PutObject",
				Resource:  "arn:seaweed:s3:::public-bucket/file.txt",
			},
			policies: []string{"read-policy"},
			want:     EffectDeny,
		},
		{
			name: "allow with wildcard action",
			context: &EvaluationContext{
				Principal: "user:admin",
				Action:    "s3:ListBucket",
				Resource:  "arn:seaweed:s3:::public-bucket",
			},
			policies: []string{"read-policy"},
			want:     EffectAllow,
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			result, err := engine.Evaluate(context.Background(), "", tt.context, tt.policies)

			assert.NoError(t, err)
			assert.Equal(t, tt.want, result.Effect)

			// Verify evaluation details
			assert.NotNil(t, result.EvaluationDetails)
			assert.Equal(t, tt.context.Action, result.EvaluationDetails.Action)
			assert.Equal(t, tt.context.Resource, result.EvaluationDetails.Resource)
		})
	}
}

// TestConditionEvaluation tests policy conditions
func TestConditionEvaluation(t *testing.T) {
	engine := setupTestPolicyEngine(t)

	// Policy with IP address condition
	conditionalPolicy := &PolicyDocument{
		Version: "2012-10-17",
		Statement: []Statement{
			{
				Sid:      "AllowFromOfficeIP",
				Effect:   "Allow",
				Action:   []string{"s3:*"},
				Resource: []string{"arn:seaweed:s3:::*"},
				Condition: map[string]map[string]interface{}{
					"IpAddress": {
						"seaweed:SourceIP": []string{"192.168.1.0/24", "10.0.0.0/8"},
					},
				},
			},
		},
	}

	err := engine.AddPolicy("", "ip-conditional", conditionalPolicy)
	require.NoError(t, err)

	tests := []struct {
		name    string
		context *EvaluationContext
		want    Effect
	}{
		{
			name: "allow from office IP",
			context: &EvaluationContext{
				Principal: "user:alice",
				Action:    "s3:GetObject",
				Resource:  "arn:seaweed:s3:::mybucket/file.txt",
				RequestContext: map[string]interface{}{
					"sourceIP": "192.168.1.100",
				},
			},
			want: EffectAllow,
		},
		{
			name: "deny from external IP",
			context: &EvaluationContext{
				Principal: "user:alice",
				Action:    "s3:GetObject",
				Resource:  "arn:seaweed:s3:::mybucket/file.txt",
				RequestContext: map[string]interface{}{
					"sourceIP": "8.8.8.8",
				},
			},
			want: EffectDeny,
		},
		{
			name: "allow from internal IP",
			context: &EvaluationContext{
				Principal: "user:alice",
				Action:    "s3:PutObject",
				Resource:  "arn:seaweed:s3:::mybucket/newfile.txt",
				RequestContext: map[string]interface{}{
					"sourceIP": "10.1.2.3",
				},
			},
			want: EffectAllow,
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			result, err := engine.Evaluate(context.Background(), "", tt.context, []string{"ip-conditional"})

			assert.NoError(t, err)
			assert.Equal(t, tt.want, result.Effect)
		})
	}
}

// TestResourceMatching tests resource ARN matching
func TestResourceMatching(t *testing.T) {
	tests := []struct {
		name            string
		policyResource  string
		requestResource string
		want            bool
	}{
		{
			name:            "exact match",
			policyResource:  "arn:seaweed:s3:::mybucket/file.txt",
			requestResource: "arn:seaweed:s3:::mybucket/file.txt",
			want:            true,
		},
		{
			name:            "wildcard match",
			policyResource:  "arn:seaweed:s3:::mybucket/*",
			requestResource: "arn:seaweed:s3:::mybucket/folder/file.txt",
			want:            true,
		},
		{
			name:            "bucket wildcard",
			policyResource:  "arn:seaweed:s3:::*",
			requestResource: "arn:seaweed:s3:::anybucket/file.txt",
			want:            true,
		},
		{
			name:            "no match different bucket",
			policyResource:  "arn:seaweed:s3:::mybucket/*",
			requestResource: "arn:seaweed:s3:::otherbucket/file.txt",
			want:            false,
		},
		{
			name:            "prefix match",
			policyResource:  "arn:seaweed:s3:::mybucket/documents/*",
			requestResource: "arn:seaweed:s3:::mybucket/documents/secret.txt",
			want:            true,
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			result := matchResource(tt.policyResource, tt.requestResource)
			assert.Equal(t, tt.want, result)
		})
	}
}

// TestActionMatching tests action pattern matching
func TestActionMatching(t *testing.T) {
	tests := []struct {
		name          string
		policyAction  string
		requestAction string
		want          bool
	}{
		{
			name:          "exact match",
			policyAction:  "s3:GetObject",
			requestAction: "s3:GetObject",
			want:          true,
		},
		{
			name:          "wildcard service",
			policyAction:  "s3:*",
			requestAction: "s3:PutObject",
			want:          true,
		},
		{
			name:          "wildcard all",
			policyAction:  "*",
			requestAction: "filer:CreateEntry",
			want:          true,
		},
		{
			name:          "prefix match",
			policyAction:  "s3:Get*",
			requestAction: "s3:GetObject",
			want:          true,
		},
		{
			name:          "no match different service",
			policyAction:  "s3:GetObject",
			requestAction: "filer:GetEntry",
			want:          false,
		},
	}

	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			result := matchAction(tt.policyAction, tt.requestAction)
			assert.Equal(t, tt.want, result)
		})
	}
}

// Helper function to set up test policy engine
func setupTestPolicyEngine(t *testing.T) *PolicyEngine {
	engine := NewPolicyEngine()
	config := &PolicyEngineConfig{
		DefaultEffect: "Deny",
		StoreType:     "memory",
	}

	err := engine.Initialize(config)
	require.NoError(t, err)

	return engine
}