feat(server): check that enteprise db allowed permissions start all allowed permissions

pull/5921/head
Pavel Zavora 2022-05-25 16:32:03 +02:00
parent ae5cc215c3
commit 2d781fcab9
1 changed files with 39 additions and 44 deletions

View File

@ -202,14 +202,7 @@ func Test_Enterprise_ComplainsIfNotOpened(t *testing.T) {
}
func TestClient_Permissions(t *testing.T) {
tests := []struct {
name string
want chronograf.Permissions
}{
{
name: "All possible enterprise permissions",
want: chronograf.Permissions{
want := chronograf.Permissions{
{
Scope: chronograf.AllScope,
Allowed: chronograf.Allowances{
@ -243,13 +236,15 @@ func TestClient_Permissions(t *testing.T) {
"ManageSubscription",
},
},
},
},
}
for _, tt := range tests {
c := &enterprise.Client{}
if got := c.Permissions(context.Background()); !reflect.DeepEqual(got, tt.want) {
t.Errorf("%q. Client.Permissions() = %v, want %v", tt.name, got, tt.want)
if got := c.Permissions(context.Background()); !reflect.DeepEqual(got, want) {
t.Errorf("Client.Permissions() = %v, want %v", got, want)
dbAllowed := got[1].Allowed
allCommonAllowed := got[0].Allowed[0:len(dbAllowed)]
if !reflect.DeepEqual(allCommonAllowed, dbAllowed) {
t.Errorf("Database allowed permissions do not start all allowed permissions = %v, want %v", got, want)
}
}
}