-
Notifications
You must be signed in to change notification settings - Fork 87
/
acl_test.go
268 lines (237 loc) · 6.92 KB
/
acl_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
/*
* Copyright (C) 2023 Dgraph Labs, Inc. and Contributors
*
* 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.
*/
package dgo_test
import (
"context"
"fmt"
"testing"
"time"
"github.com/stretchr/testify/require"
"github.com/dgraph-io/dgo/v240"
"github.com/dgraph-io/dgo/v240/protos/api"
)
var (
username = "alice"
userpassword = "alicepassword"
readpred = "predicate_to_read"
writepred = "predicate_to_write"
modifypred = "predicate_to_modify"
unusedgroup = "unused"
devgroup = "dev"
adminUrl = "http://127.0.0.1:8180/admin"
)
func initializeDBACLs(t *testing.T, dg *dgo.Dgraph) {
// Clean up DB.
op := &api.Operation{}
op.DropAll = true
err := dg.Alter(context.Background(), op)
require.NoError(t, err, "unable to drop data for ACL tests")
// Create schema for read predicate.
op = &api.Operation{}
op.Schema = fmt.Sprintf("%s: string @index(exact) .", readpred)
err = dg.Alter(context.Background(), op)
require.NoError(t, err, "unable to insert schema for read predicate")
// Insert some record to read for read predicate.
data := []byte(fmt.Sprintf(`_:sub <%s> "val1" .`, readpred))
_, err = dg.NewTxn().Mutate(context.Background(), &api.Mutation{SetNquads: data})
require.NoError(t, err, "unable to insert data for read predicate")
}
func resetUser(t *testing.T, token *HttpToken) {
resetUser := `mutation addUser($name: String!, $pass: String!) {
addUser(input: [{name: $name, password: $pass}]) {
user {
name
}
}
}`
params := &GraphQLParams{
Query: resetUser,
Variables: map[string]interface{}{
"name": username,
"pass": userpassword,
},
}
resp := MakeGQLRequest(t, adminUrl, params, token)
require.True(t, len(resp.Errors) == 0, resp.Errors)
}
func createGroupACLs(t *testing.T, groupname string, token *HttpToken) {
// create group
createGroup := `mutation addGroup($name: String!){
addGroup(input: [{name: $name}]) {
group {
name
users {
name
}
}
}
}`
params := &GraphQLParams{
Query: createGroup,
Variables: map[string]interface{}{
"name": groupname,
},
}
resp := MakeGQLRequest(t, adminUrl, params, token)
require.Truef(t, len(resp.Errors) == 0, "unable to create group: %+v", resp.Errors)
// Set permissions.
updatePerms := `mutation updateGroup($gname: String!, $pred: String!, $perm: Int!) {
updateGroup(input: {filter: {name: {eq: $gname}}, set: {rules: [{predicate: $pred, permission: $perm}]}}) {
group {
name
rules {
permission
predicate
}
}
}
}`
setPermission := func(pred string, permission int) {
params = &GraphQLParams{
Query: updatePerms,
Variables: map[string]interface{}{
"gname": groupname,
"pred": pred,
"perm": permission,
},
}
resp = MakeGQLRequest(t, adminUrl, params, token)
require.Truef(t, len(resp.Errors) == 0, "unable to set permissions: %+v", resp.Errors)
}
// assign read access to read predicate
setPermission(readpred, 4)
// assign write access to write predicate
setPermission(writepred, 2)
// assign modify access to modify predicate
setPermission(modifypred, 1)
}
func addUserToGroup(t *testing.T, username, group, op string, token *HttpToken) {
addToGroup := `mutation updateUser($name: String, $group: String!) {
updateUser(input: {filter: {name: {eq: $name}}, set: {groups: [{name: $group}]}}) {
user {
name
groups {
name
}
}
}
}`
removeFromGroup := `mutation updateUser($name: String, $group: String!) {
updateUser(input: {filter: {name: {eq: $name}}, remove: {groups: [{name: $group}]}}) {
user {
name
groups {
name
}
}
}
}`
var query string
switch op {
case "add":
query = addToGroup
case "del":
query = removeFromGroup
default:
require.Fail(t, "invalid operation for updating user")
}
params := &GraphQLParams{
Query: query,
Variables: map[string]interface{}{
"name": username,
"group": group,
},
}
resp := MakeGQLRequest(t, adminUrl, params, token)
require.Truef(t, len(resp.Errors) == 0, "unable to update user: %+v", resp.Errors)
}
func query(t *testing.T, dg *dgo.Dgraph, shouldFail bool) {
q := `
{
q(func: eq(predicate_to_read, "val1")) {
predicate_to_read
}
}
`
// Dgraph does not throw Permission Denied error in query any more. Dgraph
// just does not return the predicates that a user doesn't have access to.
resp, err := dg.NewReadOnlyTxn().Query(context.Background(), q)
require.NoError(t, err)
if shouldFail {
require.Equal(t, string(resp.Json), "{}")
} else {
require.NotEqual(t, string(resp.Json), "{}")
}
}
func mutation(t *testing.T, dg *dgo.Dgraph, shouldFail bool) {
mu := &api.Mutation{
SetNquads: []byte(fmt.Sprintf(`_:uid <%s> "val2" .`, writepred)),
}
_, err := dg.NewTxn().Mutate(context.Background(), mu)
if (err != nil && !shouldFail) || (err == nil && shouldFail) {
t.Logf("result did not match for mutation")
t.FailNow()
}
}
func changeSchema(t *testing.T, dg *dgo.Dgraph, shouldFail bool) {
op := &api.Operation{
Schema: fmt.Sprintf("%s: string @index(exact) .", modifypred),
}
err := dg.Alter(context.Background(), op)
if (err != nil && !shouldFail) || (err == nil && shouldFail) {
t.Logf("result did not match for schema change")
t.FailNow()
}
}
func TestACLs(t *testing.T) {
dg, cancel := getDgraphClient()
defer cancel()
initializeDBACLs(t, dg)
token, err := HttpLogin(&LoginParams{
Endpoint: adminUrl,
UserID: "groot",
Passwd: "password",
Namespace: 0, // Galaxy namespace
})
require.NoError(t, err)
resetUser(t, token)
time.Sleep(5 * time.Second)
// All operations without ACLs should fail.
err = dg.Login(context.Background(), username, userpassword)
require.NoError(t, err, "unable to login for user: %s", username)
query(t, dg, true)
mutation(t, dg, true)
changeSchema(t, dg, true)
// Create unused group, everything should still fail.
createGroupACLs(t, unusedgroup, token)
time.Sleep(6 * time.Second)
query(t, dg, true)
mutation(t, dg, true)
changeSchema(t, dg, true)
// Create dev group and link user to it. Everything should pass now.
createGroupACLs(t, devgroup, token)
addUserToGroup(t, username, devgroup, "add", token)
time.Sleep(6 * time.Second)
query(t, dg, false)
mutation(t, dg, false)
changeSchema(t, dg, false)
// Remove user from dev group, everything should fail now.
addUserToGroup(t, username, devgroup, "del", token)
time.Sleep(6 * time.Second)
query(t, dg, true)
mutation(t, dg, true)
changeSchema(t, dg, true)
}