mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 03:34:15 -06:00
e8e1a0b50b
This reverts commit 55efeb0c02
.
75 lines
1.3 KiB
Go
75 lines
1.3 KiB
Go
package accesscontrol
|
|
|
|
import (
|
|
"sort"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestPredefinedRoles(t *testing.T) {
|
|
for name, role := range FixedRoles {
|
|
assert.Truef(t,
|
|
strings.HasPrefix(name, "fixed:"),
|
|
"expected all fixed roles to be prefixed by 'fixed:', found role '%s'", name,
|
|
)
|
|
assert.Equal(t, name, role.Name)
|
|
assert.NotZero(t, role.Version)
|
|
}
|
|
}
|
|
|
|
func TestPredefinedRoleGrants(t *testing.T) {
|
|
for _, grants := range FixedRoleGrants {
|
|
// Check grants list is sorted
|
|
assert.True(t,
|
|
sort.SliceIsSorted(grants, func(i, j int) bool {
|
|
return grants[i] < grants[j]
|
|
}),
|
|
"require role grant lists to be sorted",
|
|
)
|
|
|
|
// Check all granted roles have been registered
|
|
for _, r := range grants {
|
|
assert.Contains(t, FixedRoles, r)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestConcatPermissions(t *testing.T) {
|
|
perms1 := []Permission{
|
|
{
|
|
Action: "test",
|
|
Scope: "test:*",
|
|
},
|
|
{
|
|
Action: "test1",
|
|
Scope: "test1:*",
|
|
},
|
|
}
|
|
perms2 := []Permission{
|
|
{
|
|
Action: "test1",
|
|
Scope: "*",
|
|
},
|
|
}
|
|
|
|
expected := []Permission{
|
|
{
|
|
Action: "test",
|
|
Scope: "test:*",
|
|
},
|
|
{
|
|
Action: "test1",
|
|
Scope: "test1:*",
|
|
},
|
|
{
|
|
Action: "test1",
|
|
Scope: "*",
|
|
},
|
|
}
|
|
|
|
perms := ConcatPermissions(perms1, perms2)
|
|
assert.ElementsMatch(t, perms, expected)
|
|
}
|