forked from liip/sheriff
-
Notifications
You must be signed in to change notification settings - Fork 2
/
example_test.go
130 lines (117 loc) · 2.38 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
package sheriff_test
import (
"encoding/json"
"fmt"
"log"
"github.com/hashicorp/go-version"
"github.com/liip/sheriff"
)
type User struct {
Username string `json:"username" groups:"api"`
Email string `json:"email" groups:"personal"`
Name string `json:"name" groups:"api"`
Roles []string `json:"roles" groups:"api" since:"2"`
}
type UserList []User
func MarshalUsers(version *version.Version, groups []string, users UserList) ([]byte, error) {
o := &sheriff.Options{
Groups: groups,
ApiVersion: version,
}
data, err := sheriff.Marshal(o, users)
if err != nil {
return nil, err
}
return json.MarshalIndent(data, "", " ")
}
func Example() {
users := UserList{
User{
Username: "alice",
Email: "[email protected]",
Name: "Alice",
Roles: []string{"user", "admin"},
},
User{
Username: "bob",
Email: "[email protected]",
Name: "Bob",
Roles: []string{"user"},
},
}
v1, err := version.NewVersion("1.0.0")
if err != nil {
log.Panic(err)
}
v2, err := version.NewVersion("2.0.0")
output, err := MarshalUsers(v1, []string{"api"}, users)
if err != nil {
log.Panic(err)
}
fmt.Println("Version 1 output:")
fmt.Printf("%s\n\n", output)
output, err = MarshalUsers(v2, []string{"api"}, users)
if err != nil {
log.Panic(err)
}
fmt.Println("Version 2 output:")
fmt.Printf("%s\n\n", output)
output, err = MarshalUsers(v2, []string{"api", "personal"}, users)
if err != nil {
log.Panic(err)
}
fmt.Println("Version 2 output with personal group too:")
fmt.Printf("%s\n\n", output)
// Output:
// Version 1 output:
// [
// {
// "name": "Alice",
// "username": "alice"
// },
// {
// "name": "Bob",
// "username": "bob"
// }
// ]
//
// Version 2 output:
// [
// {
// "name": "Alice",
// "roles": [
// "user",
// "admin"
// ],
// "username": "alice"
// },
// {
// "name": "Bob",
// "roles": [
// "user"
// ],
// "username": "bob"
// }
// ]
//
// Version 2 output with personal group too:
// [
// {
// "email": "[email protected]",
// "name": "Alice",
// "roles": [
// "user",
// "admin"
// ],
// "username": "alice"
// },
// {
// "email": "[email protected]",
// "name": "Bob",
// "roles": [
// "user"
// ],
// "username": "bob"
// }
// ]
}