-
Notifications
You must be signed in to change notification settings - Fork 0
/
rbac_test.go
365 lines (331 loc) · 8.71 KB
/
rbac_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
package rbac_test
import (
"net/http"
"testing"
"github.com/pkg/errors"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
"github.com/stickypixel/hyperledger/rbac"
)
/*
*
* Tests for success
*
*/
func TestValidateContractPerms(t *testing.T) {
tests := []struct {
cRef string
cidRoles string
allow bool
msg string
}{
{
cRef: contractCreateTransfer,
cidRoles: "user",
allow: false,
msg: "Should not allow",
},
{
cRef: contractCreateWallet,
cidRoles: "user",
allow: true,
msg: "Should allow",
},
{
cRef: contractCreateTransfer,
cidRoles: "admin",
allow: true,
msg: "Should allow",
},
{
cRef: contractCreateWallet,
cidRoles: "admin",
allow: false,
msg: "Should not allow",
},
}
for _, tt := range tests {
t.Logf("%v %v to invoke %v contract", tt.msg, tt.cidRoles, tt.cRef)
appAuth := simpleSetup(t, tt.cidRoles)
err := appAuth.ValidateContractPerms(tt.cRef)
if !tt.allow {
assert.Error(t, err)
} else {
assert.NoError(t, err)
}
}
}
func TestWithContractAuth(t *testing.T) {
args := []string{mock.Anything}
tests := []struct {
cRef string
c rbac.ContractFunc
cidRoles string
}{
{
cRef: contractCreateWallet,
c: mockContract,
cidRoles: "user",
},
{
cRef: contractCreateTransfer,
c: mockContract,
cidRoles: "admin",
},
}
for _, tt := range tests {
t.Logf(
"Should successfully return payload to a user with role %v from contract with ref %v", tt.cidRoles, tt.cRef,
)
appAuth := simpleSetup(t, tt.cidRoles)
payload, err := appAuth.WithContractAuth(tt.cRef, args, tt.c)
assert.NoError(t, err)
assert.Equal(t, mockPayload, payload)
}
}
func TestValidateQueryPerms(t *testing.T) {
tests := []struct {
res string
cidRoles string
expQ string
msg string
}{
{
res: resourceTransfer,
cidRoles: "user",
expQ: expQueryInTransfer,
msg: "alter the query to limit results to only transfers that the user was involved in",
},
{
res: resourceWallet,
cidRoles: "user",
expQ: expQueryOnlyCreatedBy(resourceWallet),
msg: "alter the query to limit results to only wallets created by the user",
},
{
res: resourceTransfer,
cidRoles: "admin",
expQ: doctypeQuery(resourceTransfer),
msg: "not alter the query",
},
}
for _, tt := range tests {
t.Logf("Should allow %v to query %vs, and %v", tt.cidRoles, tt.res, tt.msg)
appAuth := simpleSetup(t, tt.cidRoles)
q := `{"selector": {"docType": "` + tt.res + `"}, "limit": 10}`
payload, err := appAuth.ValidateQueryPerms(q)
assert.NoError(t, err)
assert.JSONEq(t, tt.expQ, payload)
}
}
func TestContractQuery(t *testing.T) {
tests := []struct {
args []string
cRef string
c rbac.ContractFunc
cidRoles string
expPL string
msg string
}{
{
args: []string{doctypeQuery(resourceTransfer)},
cRef: contractQueryLedger,
c: mockQueryContract,
cidRoles: "user",
expPL: expQueryInTransfer,
msg: "Should allow and return query adjusted for in transfer",
},
{
args: []string{doctypeQuery(resourceWallet)},
cRef: contractQueryLedger,
c: mockQueryContract,
cidRoles: "user",
expPL: expQueryOnlyCreatedBy(resourceWallet),
msg: "Should allow and return query adjusted for owner only",
},
{
args: []string{doctypeQuery(resourceTransfer)},
cRef: contractQueryLedger,
c: mockQueryContract,
cidRoles: "admin",
expPL: doctypeQuery(resourceTransfer),
msg: "Should allow and return untouched query",
},
{
args: []string{doctypeQuery(resourceAsset)},
cRef: contractQueryLedger,
c: mockQueryContract,
cidRoles: "admin",
expPL: expQueryLimitFields(resourceAsset),
msg: "Should allow and return a query adjusted for limited fields",
},
}
for _, tt := range tests {
t.Logf(
"%v as payload to user with role %v from contract with ref %v", tt.msg, tt.cidRoles, tt.cRef,
)
appAuth := simpleSetup(t, tt.cidRoles)
payload, err := appAuth.WithContractAuth(tt.cRef, tt.args, tt.c)
assert.NoError(t, err)
assert.JSONEq(t, tt.expPL, string(payload))
}
}
/*
*
* Tests for failures
*
*/
func TestWithContractAuthErrors(t *testing.T) {
var expSTType errors.StackTrace
args := []string{mock.Anything}
tests := []struct {
cRef string
c rbac.ContractFunc
expSC int32
expC int32
msg string
cidRoles string
cidFound bool
cidErr error
}{
{
cRef: contractCreateTransfer,
c: mockContract,
expSC: http.StatusUnauthorized,
expC: rbac.CodeErrAuthentication,
msg: "when an error is returned from the CID",
cidRoles: mock.Anything,
cidFound: false,
cidErr: errors.New("some err from cid"),
},
{
cRef: contractCreateTransfer,
c: mockContract,
expSC: http.StatusForbidden,
expC: rbac.CodeErrRoles,
msg: "when the roleAttr is not found in the identity",
cidRoles: mock.Anything,
cidFound: false,
cidErr: nil,
},
{
cRef: contractCreateTransfer,
c: mockContract,
expSC: http.StatusForbidden,
expC: rbac.CodeErrContract,
msg: "when the role is not found in the permissions map",
cidRoles: "anUnknownRole",
cidFound: true,
cidErr: nil,
},
{
cRef: contractCreateTransfer,
c: mockContract,
expSC: http.StatusForbidden,
expC: rbac.CodeErrContract,
msg: "when contract invocation is not allowed",
cidRoles: "user",
cidFound: true,
cidErr: nil,
},
}
for _, tt := range tests {
stub := initEmptyStub()
cid := new(mockCID)
cid.On("GetAttributeValue", mock.Anything).Return(tt.cidRoles, tt.cidFound, tt.cidErr)
cid.On("GetID", mock.Anything).Return(mock.Anything)
appAuth, err := rbac.New(stub, cid, getRolePerms(), "roles")
// If the New constructor didn't fail
if err == nil {
_, err = appAuth.WithContractAuth(tt.cRef, args, tt.c)
}
assert.Implements(t, (*error)(nil), err)
assert.Implements(t, (*rbac.AuthErrorInterface)(nil), err)
assert.IsType(t, (string)(""), err.Error())
if assert.Error(t, err) {
t.Logf("Should return an error with code %v and HTTP status code %v %v\nmsg: %v", tt.expC, tt.expSC, tt.msg, err)
if e, ok := err.(rbac.AuthErrorInterface); ok {
assert.Equal(t, tt.expC, e.Code())
assert.Equal(t, tt.expSC, e.StatusCode())
assert.IsType(t, expSTType, e.StackTrace())
}
}
}
}
func TestContractQueryErrors(t *testing.T) {
tests := []struct {
args []string
cRef string
c rbac.ContractFunc
cidRoles string
expSC int32
expC int32
msg string
}{
{
args: []string{`{selector": {"docTypeeee": "anything"}, "limit": 10}`},
cRef: contractQueryLedger,
c: mockQueryContract,
cidRoles: "admin",
expSC: http.StatusBadRequest,
expC: rbac.CodeErrQueryMarshal,
msg: "malformed json",
},
{
args: []string{`{"selector": {"notDocType": "anything"}, "limit": 10}`},
cRef: contractQueryLedger,
c: mockQueryContract,
cidRoles: "admin",
expSC: http.StatusBadRequest,
expC: rbac.CodeErrQueryDocType,
msg: "missing doctype",
},
{
args: []string{doctypeQuery(resourceWallet)},
cRef: contractQueryLedger,
c: mockQueryContract,
cidRoles: "admin",
expSC: http.StatusForbidden,
expC: rbac.CodeErrQuery,
msg: "user forbidden to query",
},
}
for _, tt := range tests {
appAuth := simpleSetup(t, tt.cidRoles)
_, err := appAuth.WithContractAuth(tt.cRef, tt.args, tt.c)
if assert.Error(t, err) {
t.Logf("Should return an error with code %v and HTTP status code %v\nmsg: %v", tt.expC, tt.expSC, err)
if e, ok := err.(rbac.AuthErrorInterface); ok {
assert.Equal(t, tt.expC, e.Code())
assert.Equal(t, tt.expSC, e.StatusCode())
}
}
}
}
func TestValidateQueryPermsErrors(t *testing.T) {
tests := []struct {
res string
cidRoles string
expSC int32
expC int32
}{
{
res: resourceTransfer,
cidRoles: "unknownRole",
expSC: http.StatusForbidden,
expC: rbac.CodeErrQuery,
},
}
for _, tt := range tests {
appAuth := simpleSetup(t, tt.cidRoles)
q := `{"selector": {"docType": "` + tt.res + `"}, "limit": 10}`
_, err := appAuth.ValidateQueryPerms(q)
if assert.Error(t, err) {
t.Logf("Should return an error with code %v and HTTP status code %v\nerr: %v", tt.expC, tt.expSC, err)
if e, ok := err.(rbac.AuthErrorInterface); ok {
assert.Equal(t, tt.expC, e.Code())
assert.Equal(t, tt.expSC, e.StatusCode())
}
}
}
}