forked from canonical/ofga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_test.go
440 lines (399 loc) · 11.2 KB
/
example_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
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
427
428
429
430
431
432
433
434
435
436
437
438
439
440
// Copyright 2023 Canonical Ltd.
// Licensed under the LGPL license, see LICENSE file for details.
package ofga_test
import (
"context"
"fmt"
"os"
"testing"
"github.com/canonical/ofga"
)
var client *ofga.Client
func TestMain(m *testing.M) {
client, _ = ofga.NewClient(context.Background(), ofga.OpenFGAParams{
Scheme: os.Getenv("OPENFGA_API_SCHEME"), // defaults to `https` if not specified.
Host: os.Getenv("OPENFGA_API_HOST"),
Port: os.Getenv("OPENFGA_API_PORT"),
Token: os.Getenv("SECRET_TOKEN"), // Optional, based on the OpenFGA instance configuration.
StoreID: os.Getenv("OPENFGA_STORE_ID"), // Required only when connecting to a pre-existing store.
AuthModelID: os.Getenv("OPENFGA_AUTH_MODEL_ID"), // Required only when connecting to a pre-existing auth model.
})
os.Exit(m.Run())
}
func ExampleParseEntity() {
entity, err := ofga.ParseEntity("organization:canonical")
fmt.Printf("%+v %v", entity, err)
// Output:
// {Kind:organization ID:canonical Relation:} <nil>
}
func ExampleParseEntity_entitySet() {
entity, err := ofga.ParseEntity("organization:canonical#member")
fmt.Printf("%+v %v", entity, err)
// Output:
// {Kind:organization ID:canonical Relation:member} <nil>
}
func ExampleNewClient() {
client, err := ofga.NewClient(context.Background(), ofga.OpenFGAParams{
Scheme: os.Getenv("OPENFGA_API_SCHEME"), // defaults to `https` if not specified.
Host: os.Getenv("OPENFGA_API_HOST"),
Port: os.Getenv("OPENFGA_API_PORT"),
Token: os.Getenv("SECRET_TOKEN"), // Optional, based on the OpenFGA instance configuration.
StoreID: os.Getenv("OPENFGA_STORE_ID"), // Required only when connecting to a pre-existing store.
AuthModelID: os.Getenv("OPENFGA_AUTH_MODEL_ID"), // Required only when connecting to a pre-existing auth model.
})
if err != nil {
// Handle err
return
}
fmt.Print(client.AuthModelID())
}
func ExampleClient_AddRelation() {
// Add a relationship tuple
err := client.AddRelation(context.Background(), ofga.Tuple{
Object: &ofga.Entity{Kind: "user", ID: "123"},
Relation: "editor",
Target: &ofga.Entity{Kind: "document", ID: "ABC"},
})
if err != nil {
// Handle err
return
}
}
func ExampleClient_AddRelation_multiple() {
// Add relationship tuples
err := client.AddRelation(context.Background(),
ofga.Tuple{
Object: &ofga.Entity{Kind: "user", ID: "123"},
Relation: "editor",
Target: &ofga.Entity{Kind: "document", ID: "ABC"},
},
ofga.Tuple{
Object: &ofga.Entity{Kind: "user", ID: "456"},
Relation: "editor",
Target: &ofga.Entity{Kind: "document", ID: "ABC"},
},
ofga.Tuple{
Object: &ofga.Entity{Kind: "user", ID: "789"},
Relation: "editor",
Target: &ofga.Entity{Kind: "document", ID: "ABC"},
},
)
if err != nil {
// Handle err
return
}
}
func ExampleClient_CheckRelation() {
// Check if the relation exists
allowed, err := client.CheckRelation(context.Background(), ofga.Tuple{
Object: &ofga.Entity{Kind: "user", ID: "123"},
Relation: "editor",
Target: &ofga.Entity{Kind: "document", ID: "ABC"},
})
if err != nil {
// Handle err
return
}
fmt.Printf("allowed: %v", allowed)
}
func ExampleClient_CheckRelation_contextualTuples() {
contextualTuples := []ofga.Tuple{{
Object: &ofga.Entity{Kind: "user", ID: "123"},
Relation: "editor",
Target: &ofga.Entity{Kind: "document", ID: "ABC"},
}}
// Check if the relation exists
allowed, err := client.CheckRelation(context.Background(), ofga.Tuple{
Object: &ofga.Entity{Kind: "user", ID: "123"},
Relation: "editor",
Target: &ofga.Entity{Kind: "document", ID: "ABC"},
},
contextualTuples...,
)
if err != nil {
// Handle err
return
}
fmt.Printf("allowed: %v", allowed)
}
func ExampleClient_CheckRelationWithTracing() {
// Check if the relation exists
allowed, err := client.CheckRelationWithTracing(context.Background(), ofga.Tuple{
Object: &ofga.Entity{Kind: "user", ID: "123"},
Relation: "editor",
Target: &ofga.Entity{Kind: "document", ID: "ABC"},
})
if err != nil {
// Handle err
return
}
fmt.Printf("allowed: %v", allowed)
}
func ExampleClient_CheckRelationWithTracing_contextualTuples() {
contextualTuples := []ofga.Tuple{{
Object: &ofga.Entity{Kind: "user", ID: "123"},
Relation: "editor",
Target: &ofga.Entity{Kind: "document", ID: "ABC"},
}}
// Check if the relation exists
allowed, err := client.CheckRelationWithTracing(context.Background(), ofga.Tuple{
Object: &ofga.Entity{Kind: "user", ID: "123"},
Relation: "editor",
Target: &ofga.Entity{Kind: "document", ID: "ABC"},
},
contextualTuples...,
)
if err != nil {
// Handle err
return
}
fmt.Printf("allowed: %v", allowed)
}
func ExampleClient_RemoveRelation() {
// Remove a relationship tuple
err := client.RemoveRelation(context.Background(), ofga.Tuple{
Object: &ofga.Entity{Kind: "user", ID: "123"},
Relation: "editor",
Target: &ofga.Entity{Kind: "document", ID: "ABC"},
})
if err != nil {
// Handle err
return
}
}
func ExampleClient_RemoveRelation_multiple() {
// Remove relationship tuples
err := client.RemoveRelation(context.Background(),
ofga.Tuple{
Object: &ofga.Entity{Kind: "user", ID: "123"},
Relation: "editor",
Target: &ofga.Entity{Kind: "document", ID: "ABC"},
},
ofga.Tuple{
Object: &ofga.Entity{Kind: "user", ID: "456"},
Relation: "editor",
Target: &ofga.Entity{Kind: "document", ID: "ABC"},
},
ofga.Tuple{
Object: &ofga.Entity{Kind: "user", ID: "789"},
Relation: "editor",
Target: &ofga.Entity{Kind: "document", ID: "ABC"},
},
)
if err != nil {
// Handle err
return
}
}
func ExampleClient_AddRemoveRelations() {
// Add and remove tuples to modify a user's relation with a document
// from viewer to editor.
addTuples := []ofga.Tuple{{
Object: &ofga.Entity{Kind: "user", ID: "456"},
Relation: "editor",
Target: &ofga.Entity{Kind: "document", ID: "ABC"},
}}
removeTuples := []ofga.Tuple{{
Object: &ofga.Entity{Kind: "user", ID: "456"},
Relation: "viewer",
Target: &ofga.Entity{Kind: "document", ID: "ABC"},
}}
// Add and remove tuples atomically.
err := client.AddRemoveRelations(context.Background(), addTuples, removeTuples)
if err != nil {
// Handle err
return
}
}
func ExampleClient_CreateStore() {
// Create a store named "Alpha"
storeID, err := client.CreateStore(context.Background(), "Alpha")
if err != nil {
// Handle err
return
}
fmt.Println(storeID)
}
func ExampleClient_ListStores() {
// Fetch a list of stores using the default page size
resp, err := client.ListStores(context.Background(), 0, "")
if err != nil {
// Handle err
return
}
for _, store := range resp.GetStores() {
// Processing
fmt.Println(store)
}
// If it exists, fetch the next page of stores
if resp.GetContinuationToken() != "" {
resp, err = client.ListStores(context.Background(), 0, resp.GetContinuationToken())
if err != nil {
// Handle err
return
}
for _, store := range resp.GetStores() {
// Processing
fmt.Println(store)
}
}
}
func ExampleClient_ReadChanges() {
// Fetch all tuple changes since the start. Use the default page_size.
resp, err := client.ReadChanges(context.Background(), "", 0, "")
if err != nil {
// Handle err
return
}
for _, change := range resp.GetChanges() {
// Processing
fmt.Println(change)
}
}
func ExampleClient_ReadChanges_forSpecificEntityType() {
// Fetch all tuple changes affecting organizations since the start.
// Use the default page_size.
resp, err := client.ReadChanges(context.Background(), "organization", 0, "")
if err != nil {
// Handle err
return
}
for _, change := range resp.GetChanges() {
// Processing
fmt.Println(change)
}
}
func ExampleAuthModelFromJSON() {
// Assume we have the following auth model
json := []byte(`{
"type_definitions": [
{
"type": "user",
"relations": {}
}
],
"schema_version": "1.1"
}`)
// Convert json into internal representation
model, err := ofga.AuthModelFromJSON(json)
if err != nil {
// Handle err
}
// Use the model
fmt.Println(model)
}
func ExampleClient_CreateAuthModel() {
// Assume we have the following json auth model
json := []byte(`{
"type_definitions": [
{
"type": "user",
"relations": {}
}
],
"schema_version": "1.1"
}`)
// Convert json into internal representation
model, err := ofga.AuthModelFromJSON(json)
if err != nil {
// Handle err
}
// Create an auth model in OpenFGA using the internal representation
authModelID, err := client.CreateAuthModel(context.Background(), model)
if err != nil {
// Handle error
}
fmt.Println(authModelID)
}
func ExampleClient_ListAuthModels() {
// Fetch a list of auth models using the default page size
resp, err := client.ListAuthModels(context.Background(), 0, "")
if err != nil {
// Handle err
return
}
for _, model := range resp.GetAuthorizationModels() {
// Processing
fmt.Println(model.GetId())
}
// If it exists, fetch the next page of auth models
if resp.HasContinuationToken() {
resp, err = client.ListAuthModels(context.Background(), 0, resp.GetContinuationToken())
if err != nil {
// Handle err
return
}
for _, model := range resp.GetAuthorizationModels() {
// Processing
fmt.Println(model.GetId())
}
}
}
func ExampleClient_GetAuthModel() {
// fetch an auth model by ID
model, err := client.GetAuthModel(context.Background(), "ABC1234")
if err != nil {
// Use the model
fmt.Println(model)
}
}
func ExampleClient_FindMatchingTuples() {
// Find all tuples where bob is a writer of a document
searchTuple := ofga.Tuple{
Object: &ofga.Entity{Kind: "user", ID: "bob"},
Relation: "writer",
Target: &ofga.Entity{Kind: "document"},
}
tuples, continuationToken, err := client.FindMatchingTuples(context.Background(), searchTuple, 0, "")
if err != nil {
// Handle error
}
for _, tuple := range tuples {
// Process the matching tuples
fmt.Println(tuple)
}
// If required, fetch the next tuples using the continuation token
if continuationToken != "" {
tuples, continuationToken, err = client.FindMatchingTuples(context.Background(), searchTuple, 0, continuationToken)
if err != nil {
// Handle error
}
for _, tuple := range tuples {
// Process the matching tuples
fmt.Println(tuple)
}
}
}
func ExampleClient_FindUsersByRelation() {
// Find all users that have the viewer relation with document ABC, expanding
// matching user sets upto two levels deep only.
searchTuple := ofga.Tuple{
Relation: "viewer",
Target: &ofga.Entity{Kind: "document", ID: "ABC"},
}
users, err := client.FindUsersByRelation(context.Background(), searchTuple, 2)
if err != nil {
// Handle error
}
for _, user := range users {
// Process the matching users
fmt.Println(user)
}
}
func ExampleClient_FindAccessibleObjectsByRelation() {
// Find all documents that the user bob can view by virtue of direct or
// implied relationships.
searchTuple := ofga.Tuple{
Object: &ofga.Entity{Kind: "user", ID: "bob"},
Relation: "viewer",
Target: &ofga.Entity{Kind: "document"},
}
docs, err := client.FindAccessibleObjectsByRelation(context.Background(), searchTuple)
if err != nil {
// Handle error
}
for _, doc := range docs {
// Process the matching documents
fmt.Println(doc)
}
}