This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 97
/
role_test.go
226 lines (192 loc) · 4.95 KB
/
role_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
package gapi
import (
"strings"
"testing"
"github.com/gobs/pretty"
)
const (
newRoleResponse = `
{
"global": false,
"uid": "vc3SCSsGz",
"name": "test:policy",
"version": 1,
"description": "Test policy description",
"displayName": "test display",
"group": "test group",
"hidden": false,
"permissions": [
{
"id": 6,
"permission": "test:self",
"scope": "test:self",
"updated": "2021-02-22T16:16:05.646913+01:00",
"created": "2021-02-22T16:16:05.646912+01:00"
}
],
"updated": "2021-02-22T16:16:05.644216+01:00",
"created": "2021-02-22T16:16:05.644216+01:00"
}
`
getRoleResponse = `
{
"global": false,
"uid": "vc3SCSsGz",
"name": "test:policy",
"version": 1,
"description": "Test policy description",
"displayName": "test display",
"group": "test group",
"hidden": false,
"permissions": [
{
"permission": "test:self",
"scope": "test:self",
"updated": "2021-02-22T16:16:05.646913+01:00",
"created": "2021-02-22T16:16:05.646912+01:00"
}
],
"updated": "2021-02-22T16:16:05.644216+01:00",
"created": "2021-02-22T16:16:05.644216+01:00"
}
`
updatedRoleResponse = `{"message":"Role updated"}`
deleteRoleResponse = `{"message":"Role deleted"}`
roleUID = "vc3SCSsGz"
)
func TestRoles(t *testing.T) {
mockData := strings.Repeat(getRoleResponse+",", 1000) // make 1000 roles.
mockData = "[" + mockData[:len(mockData)-1] + "]" // remove trailing comma; make a json list.
// This creates 1000 + 1000 + 1 (2001, 3 calls) worth of roles.
client := gapiTestToolsFromCalls(t, []mockServerCall{
{200, mockData},
{200, mockData},
{200, "[" + getRoleResponse + "]"},
})
const dashCount = 2001
roles, err := client.GetRoles()
if err != nil {
t.Fatal(err)
}
t.Log(pretty.PrettyFormat(roles))
if len(roles) != dashCount {
t.Fatalf("Length of returned roles should be %d", dashCount)
}
if roles[0].UID != roleUID || roles[0].Name != "test:policy" {
t.Error("Not correctly parsing returned roles.")
}
if roles[dashCount-1].UID != roleUID || roles[dashCount-1].Name != "test:policy" {
t.Error("Not correctly parsing returned roles.")
}
}
func TestRolesZeroResults(t *testing.T) {
// This return zero roles.
client := gapiTestToolsFromCalls(t, []mockServerCall{
{200, "[]"},
})
roles, err := client.GetRoles()
if err != nil {
t.Fatal(err)
}
if len(roles) != 0 {
t.Errorf("Length of returned roles should be zero")
}
}
func TestRolesSinglePage(t *testing.T) {
mockData := strings.Repeat(getRoleResponse+",", 999) // make 999 roles.
mockData = "[" + mockData[:len(mockData)-1] + "]" // remove trailing comma; make a json list.
// This creates 999 worth of roles.
client := gapiTestToolsFromCalls(t, []mockServerCall{
{200, mockData},
})
const dashCount = 999
roles, err := client.GetRoles()
if err != nil {
t.Fatal(err)
}
t.Log(pretty.PrettyFormat(roles))
if len(roles) != dashCount {
t.Fatalf("Length of returned roles should be %d", dashCount)
}
if roles[0].UID != roleUID || roles[0].Name != "test:policy" {
t.Error("Not correctly parsing returned roles.")
}
if roles[dashCount-1].UID != roleUID || roles[dashCount-1].Name != "test:policy" {
t.Error("Not correctly parsing returned roles.")
}
}
func TestNewRole(t *testing.T) {
client := gapiTestTools(t, 201, newRoleResponse)
roleReq := Role{
Global: false,
Name: "test:policy",
Description: "test:policy",
Permissions: []Permission{
{
Action: "test:self",
Scope: "test:self",
},
},
}
resp, err := client.NewRole(roleReq)
if err != nil {
t.Fatal(err)
}
t.Log(pretty.PrettyFormat(resp))
if resp.UID != roleUID {
t.Error("Not correctly parsing returned role uid.")
}
}
func TestGetRole(t *testing.T) {
client := gapiTestTools(t, 200, getRoleResponse)
resp, err := client.GetRole(roleUID)
if err != nil {
t.Error(err)
}
expected := Role{
Global: false,
Version: 1,
UID: roleUID,
Name: "test:policy",
Description: "Test policy description",
Group: "test group",
DisplayName: "test display",
Hidden: false,
Permissions: []Permission{
{
Action: "test:self",
Scope: "test:self",
},
},
}
t.Run("check response data", func(t *testing.T) {
if expected.UID != resp.UID || expected.Name != resp.Name {
t.Error("Not correctly parsing returned role.")
}
})
}
func TestUpdateRole(t *testing.T) {
client := gapiTestTools(t, 200, updatedRoleResponse)
roleReq := Role{
Global: false,
Name: "test:policy",
Description: "test:policy",
Permissions: []Permission{
{
Action: "test:self1",
Scope: "test:self1",
},
},
}
err := client.UpdateRole(roleReq)
if err != nil {
t.Error(err)
}
}
func TestDeleteRole(t *testing.T) {
client := gapiTestTools(t, 200, deleteRoleResponse)
err := client.DeleteRole(roleUID, false)
if err != nil {
t.Error(err)
}
}