-
-
Notifications
You must be signed in to change notification settings - Fork 225
/
ladon_test.go
252 lines (234 loc) · 6.99 KB
/
ladon_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
/*
* Copyright © 2016-2018 Aeneas Rekkas <aeneas+oss@aeneas.io>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* @author Aeneas Rekkas <aeneas+oss@aeneas.io>
* @copyright 2015-2018 Aeneas Rekkas <aeneas+oss@aeneas.io>
* @license Apache-2.0
*/
package ladon_test
import (
"context"
"fmt"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
. "github.com/ory/ladon"
. "github.com/ory/ladon/manager/memory"
)
// A bunch of exemplary policies
var pols = []Policy{
&DefaultPolicy{
ID: "0",
Description: `This policy allows max, peter, zac and ken to create, delete and get the listed resources,
but only if the client ip matches and the request states that they are the owner of those resources as well.`,
Subjects: []string{"max", "peter", "<zac|ken>"},
Resources: []string{"myrn:some.domain.com:resource:123", "myrn:some.domain.com:resource:345", "myrn:something:foo:<.+>"},
Actions: []string{"<create|delete>", "get"},
Effect: AllowAccess,
Conditions: Conditions{
"owner": &EqualsSubjectCondition{},
"clientIP": &CIDRCondition{
CIDR: "127.0.0.1/32",
},
},
},
&DefaultPolicy{
ID: "1",
Description: "This policy allows max to update any resource",
Subjects: []string{"max"},
Actions: []string{"update"},
Resources: []string{"<.*>"},
Effect: AllowAccess,
},
&DefaultPolicy{
ID: "3",
Description: "This policy denies max to broadcast any of the resources",
Subjects: []string{"max"},
Actions: []string{"broadcast"},
Resources: []string{"<.*>"},
Effect: DenyAccess,
},
&DefaultPolicy{
ID: "2",
Description: "This policy denies max to broadcast any of the resources",
Subjects: []string{"max"},
Actions: []string{"random"},
Resources: []string{"<.*>"},
Effect: DenyAccess,
},
&DefaultPolicy{
ID: "4",
Description: "This policy allows swen to update any resource except `protected` resources",
Subjects: []string{"swen"},
Actions: []string{"update"},
Resources: []string{"myrn:some.domain.com:resource:<(?!protected).*>"},
Effect: AllowAccess,
},
&DefaultPolicy{
ID: "5",
Description: "This policy allows richard to update resources which names consists of digits only",
Subjects: []string{"richard"},
Actions: []string{"update"},
Resources: []string{"myrn:some.domain.com:resource:<[[:digit:]]+>"},
Effect: AllowAccess,
},
}
// Some test cases
var cases = []struct {
description string
accessRequest *Request
expectErr bool
}{
{
description: "should fail because no policy is matching as field clientIP does not satisfy the CIDR condition of policy 1.",
accessRequest: &Request{
Subject: "peter",
Action: "delete",
Resource: "myrn:some.domain.com:resource:123",
Context: Context{
"owner": "peter",
"clientIP": "0.0.0.0",
},
},
expectErr: true,
},
{
description: "should fail because no policy is matching as the owner of the resource 123 is zac, not peter!",
accessRequest: &Request{
Subject: "peter",
Action: "delete",
Resource: "myrn:some.domain.com:resource:123",
Context: Context{
"owner": "zac",
"clientIP": "127.0.0.1",
},
},
expectErr: true,
},
{
description: "should pass because policy 1 is matching and has effect allow.",
accessRequest: &Request{
Subject: "peter",
Action: "delete",
Resource: "myrn:some.domain.com:resource:123",
Context: Context{
"owner": "peter",
"clientIP": "127.0.0.1",
},
},
expectErr: false,
},
{
description: "should pass because max is allowed to update all resources.",
accessRequest: &Request{
Subject: "max",
Action: "update",
Resource: "myrn:some.domain.com:resource:123",
},
expectErr: false,
},
{
description: "should pass because max is allowed to update all resource, even if none is given.",
accessRequest: &Request{
Subject: "max",
Action: "update",
Resource: "",
},
expectErr: false,
},
{
description: "should fail because max is not allowed to broadcast any resource.",
accessRequest: &Request{
Subject: "max",
Action: "broadcast",
Resource: "myrn:some.domain.com:resource:123",
},
expectErr: true,
},
{
description: "should fail because max is not allowed to broadcast any resource, even empty ones!",
accessRequest: &Request{
Subject: "max",
Action: "broadcast",
},
expectErr: true,
},
{
description: "should pass because swen is allowed to update all resources except `protected` resources.",
accessRequest: &Request{
Subject: "swen",
Action: "update",
Resource: "myrn:some.domain.com:resource:123",
},
expectErr: false,
},
{
description: "should fail because swen is not allowed to update `protected` resource",
accessRequest: &Request{
Subject: "swen",
Action: "update",
Resource: "myrn:some.domain.com:resource:protected123",
},
expectErr: true,
},
{
description: "should fail because richard is not allowed to update a resource with alphanumeric name",
accessRequest: &Request{
Subject: "richard",
Action: "update",
Resource: "myrn:some.domain.com:resource:protected123",
},
expectErr: true,
},
{
description: "should pass because richard is allowed to update a resources with a name containing digits only",
accessRequest: &Request{
Subject: "richard",
Action: "update",
Resource: "myrn:some.domain.com:resource:25222",
},
expectErr: false,
},
}
func TestLadon(t *testing.T) {
ctx := context.Background()
// Instantiate ladon with the default in-memory store.
warden := &Ladon{Manager: NewMemoryManager()}
// Add the policies defined above to the memory manager.
for _, pol := range pols {
require.Nil(t, warden.Manager.Create(ctx, pol))
}
for i := 0; i < len(pols); i++ {
polices, err := warden.Manager.GetAll(ctx, int64(1), int64(i))
require.NoError(t, err)
p, err := warden.Manager.Get(ctx, fmt.Sprintf("%d", i))
if err == nil {
AssertPolicyEqual(t, p, polices[0])
}
}
for k, c := range cases {
t.Run(fmt.Sprintf("case=%d-%s", k, c.description), func(t *testing.T) {
// This is where we ask the warden if the access requests should be granted
err := warden.IsAllowed(ctx, c.accessRequest)
assert.Equal(t, c.expectErr, err != nil)
})
}
}
func TestLadonEmpty(t *testing.T) {
ctx := context.Background()
// If no policy was given, the warden must return an error!
warden := &Ladon{Manager: NewMemoryManager()}
assert.NotNil(t, warden.IsAllowed(ctx, &Request{}))
}