mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
folders: handle new guardian error responses and add tests
This commit is contained in:
parent
955dfcc8fe
commit
3c14cecd50
@ -19,13 +19,13 @@ func GetFolderPermissionList(c *middleware.Context) Response {
|
|||||||
return toFolderError(err)
|
return toFolderError(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
guardian := guardian.New(folder.Id, c.OrgId, c.SignedInUser)
|
g := guardian.New(folder.Id, c.OrgId, c.SignedInUser)
|
||||||
|
|
||||||
if canAdmin, err := guardian.CanAdmin(); err != nil || !canAdmin {
|
if canAdmin, err := g.CanAdmin(); err != nil || !canAdmin {
|
||||||
return toFolderError(m.ErrFolderAccessDenied)
|
return toFolderError(m.ErrFolderAccessDenied)
|
||||||
}
|
}
|
||||||
|
|
||||||
acl, err := guardian.GetAcl()
|
acl, err := g.GetAcl()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return ApiError(500, "Failed to get folder permissions", err)
|
return ApiError(500, "Failed to get folder permissions", err)
|
||||||
}
|
}
|
||||||
@ -50,8 +50,8 @@ func UpdateFolderPermissions(c *middleware.Context, apiCmd dtos.UpdateDashboardA
|
|||||||
return toFolderError(err)
|
return toFolderError(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
guardian := guardian.New(folder.Id, c.OrgId, c.SignedInUser)
|
g := guardian.New(folder.Id, c.OrgId, c.SignedInUser)
|
||||||
canAdmin, err := guardian.CanAdmin()
|
canAdmin, err := g.CanAdmin()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return toFolderError(err)
|
return toFolderError(err)
|
||||||
}
|
}
|
||||||
@ -76,8 +76,13 @@ func UpdateFolderPermissions(c *middleware.Context, apiCmd dtos.UpdateDashboardA
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
if okToUpdate, err := guardian.CheckPermissionBeforeUpdate(m.PERMISSION_ADMIN, cmd.Items); err != nil || !okToUpdate {
|
if okToUpdate, err := g.CheckPermissionBeforeUpdate(m.PERMISSION_ADMIN, cmd.Items); err != nil || !okToUpdate {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
if err == guardian.ErrGuardianDuplicatePermission ||
|
||||||
|
err == guardian.ErrGuardianOverrideLowerPresedence {
|
||||||
|
return ApiError(400, err.Error(), err)
|
||||||
|
}
|
||||||
|
|
||||||
return ApiError(500, "Error while checking folder permissions", err)
|
return ApiError(500, "Error while checking folder permissions", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5,6 +5,7 @@ import (
|
|||||||
|
|
||||||
"github.com/grafana/grafana/pkg/api/dtos"
|
"github.com/grafana/grafana/pkg/api/dtos"
|
||||||
"github.com/grafana/grafana/pkg/bus"
|
"github.com/grafana/grafana/pkg/bus"
|
||||||
|
"github.com/grafana/grafana/pkg/components/simplejson"
|
||||||
"github.com/grafana/grafana/pkg/middleware"
|
"github.com/grafana/grafana/pkg/middleware"
|
||||||
m "github.com/grafana/grafana/pkg/models"
|
m "github.com/grafana/grafana/pkg/models"
|
||||||
"github.com/grafana/grafana/pkg/services/dashboards"
|
"github.com/grafana/grafana/pkg/services/dashboards"
|
||||||
@ -15,6 +16,35 @@ import (
|
|||||||
|
|
||||||
func TestFolderPermissionApiEndpoint(t *testing.T) {
|
func TestFolderPermissionApiEndpoint(t *testing.T) {
|
||||||
Convey("Folder permissions test", t, func() {
|
Convey("Folder permissions test", t, func() {
|
||||||
|
Convey("Given folder not exists", func() {
|
||||||
|
mock := &fakeFolderService{
|
||||||
|
GetFolderByUidError: m.ErrFolderNotFound,
|
||||||
|
}
|
||||||
|
|
||||||
|
origNewFolderService := dashboards.NewFolderService
|
||||||
|
mockFolderService(mock)
|
||||||
|
|
||||||
|
loggedInUserScenarioWithRole("When calling GET on", "GET", "/api/folders/uid/permissions", "/api/folders/:uid/permissions", m.ROLE_EDITOR, func(sc *scenarioContext) {
|
||||||
|
callGetFolderPermissions(sc)
|
||||||
|
So(sc.resp.Code, ShouldEqual, 404)
|
||||||
|
})
|
||||||
|
|
||||||
|
cmd := dtos.UpdateDashboardAclCommand{
|
||||||
|
Items: []dtos.DashboardAclUpdateItem{
|
||||||
|
{UserId: 1000, Permission: m.PERMISSION_ADMIN},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
updateFolderPermissionScenario("When calling POST on", "/api/folders/uid/permissions", "/api/folders/:uid/permissions", cmd, func(sc *scenarioContext) {
|
||||||
|
callUpdateFolderPermissions(sc)
|
||||||
|
So(sc.resp.Code, ShouldEqual, 404)
|
||||||
|
})
|
||||||
|
|
||||||
|
Reset(func() {
|
||||||
|
dashboards.NewFolderService = origNewFolderService
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
Convey("Given user has no admin permissions", func() {
|
Convey("Given user has no admin permissions", func() {
|
||||||
origNewGuardian := guardian.New
|
origNewGuardian := guardian.New
|
||||||
guardian.MockDashboardGuardian(&guardian.FakeDashboardGuardian{CanAdminValue: false})
|
guardian.MockDashboardGuardian(&guardian.FakeDashboardGuardian{CanAdminValue: false})
|
||||||
@ -54,7 +84,17 @@ func TestFolderPermissionApiEndpoint(t *testing.T) {
|
|||||||
|
|
||||||
Convey("Given user has admin permissions and permissions to update", func() {
|
Convey("Given user has admin permissions and permissions to update", func() {
|
||||||
origNewGuardian := guardian.New
|
origNewGuardian := guardian.New
|
||||||
guardian.MockDashboardGuardian(&guardian.FakeDashboardGuardian{CanAdminValue: true, CheckPermissionBeforeUpdateValue: true})
|
guardian.MockDashboardGuardian(&guardian.FakeDashboardGuardian{
|
||||||
|
CanAdminValue: true,
|
||||||
|
CheckPermissionBeforeUpdateValue: true,
|
||||||
|
GetAclValue: []*m.DashboardAclInfoDTO{
|
||||||
|
{OrgId: 1, DashboardId: 1, UserId: 2, Permission: m.PERMISSION_VIEW},
|
||||||
|
{OrgId: 1, DashboardId: 1, UserId: 3, Permission: m.PERMISSION_EDIT},
|
||||||
|
{OrgId: 1, DashboardId: 1, UserId: 4, Permission: m.PERMISSION_ADMIN},
|
||||||
|
{OrgId: 1, DashboardId: 1, TeamId: 1, Permission: m.PERMISSION_VIEW},
|
||||||
|
{OrgId: 1, DashboardId: 1, TeamId: 2, Permission: m.PERMISSION_ADMIN},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
mock := &fakeFolderService{
|
mock := &fakeFolderService{
|
||||||
GetFolderByUidResult: &m.Folder{
|
GetFolderByUidResult: &m.Folder{
|
||||||
@ -70,6 +110,11 @@ func TestFolderPermissionApiEndpoint(t *testing.T) {
|
|||||||
loggedInUserScenarioWithRole("When calling GET on", "GET", "/api/folders/uid/permissions", "/api/folders/:uid/permissions", m.ROLE_ADMIN, func(sc *scenarioContext) {
|
loggedInUserScenarioWithRole("When calling GET on", "GET", "/api/folders/uid/permissions", "/api/folders/:uid/permissions", m.ROLE_ADMIN, func(sc *scenarioContext) {
|
||||||
callGetFolderPermissions(sc)
|
callGetFolderPermissions(sc)
|
||||||
So(sc.resp.Code, ShouldEqual, 200)
|
So(sc.resp.Code, ShouldEqual, 200)
|
||||||
|
respJSON, err := simplejson.NewJson(sc.resp.Body.Bytes())
|
||||||
|
So(err, ShouldBeNil)
|
||||||
|
So(len(respJSON.MustArray()), ShouldEqual, 5)
|
||||||
|
So(respJSON.GetIndex(0).Get("userId").MustInt(), ShouldEqual, 2)
|
||||||
|
So(respJSON.GetIndex(0).Get("permission").MustInt(), ShouldEqual, m.PERMISSION_VIEW)
|
||||||
})
|
})
|
||||||
|
|
||||||
cmd := dtos.UpdateDashboardAclCommand{
|
cmd := dtos.UpdateDashboardAclCommand{
|
||||||
@ -88,6 +133,78 @@ func TestFolderPermissionApiEndpoint(t *testing.T) {
|
|||||||
dashboards.NewFolderService = origNewFolderService
|
dashboards.NewFolderService = origNewFolderService
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Convey("When trying to update permissions with duplicate permissions", func() {
|
||||||
|
origNewGuardian := guardian.New
|
||||||
|
guardian.MockDashboardGuardian(&guardian.FakeDashboardGuardian{
|
||||||
|
CanAdminValue: true,
|
||||||
|
CheckPermissionBeforeUpdateValue: false,
|
||||||
|
CheckPermissionBeforeUpdateError: guardian.ErrGuardianDuplicatePermission,
|
||||||
|
})
|
||||||
|
|
||||||
|
mock := &fakeFolderService{
|
||||||
|
GetFolderByUidResult: &m.Folder{
|
||||||
|
Id: 1,
|
||||||
|
Uid: "uid",
|
||||||
|
Title: "Folder",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
origNewFolderService := dashboards.NewFolderService
|
||||||
|
mockFolderService(mock)
|
||||||
|
|
||||||
|
cmd := dtos.UpdateDashboardAclCommand{
|
||||||
|
Items: []dtos.DashboardAclUpdateItem{
|
||||||
|
{UserId: 1000, Permission: m.PERMISSION_ADMIN},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
updateFolderPermissionScenario("When calling POST on", "/api/folders/uid/permissions", "/api/folders/:uid/permissions", cmd, func(sc *scenarioContext) {
|
||||||
|
callUpdateFolderPermissions(sc)
|
||||||
|
So(sc.resp.Code, ShouldEqual, 400)
|
||||||
|
})
|
||||||
|
|
||||||
|
Reset(func() {
|
||||||
|
guardian.New = origNewGuardian
|
||||||
|
dashboards.NewFolderService = origNewFolderService
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
Convey("When trying to override inherited permissions with lower presedence", func() {
|
||||||
|
origNewGuardian := guardian.New
|
||||||
|
guardian.MockDashboardGuardian(&guardian.FakeDashboardGuardian{
|
||||||
|
CanAdminValue: true,
|
||||||
|
CheckPermissionBeforeUpdateValue: false,
|
||||||
|
CheckPermissionBeforeUpdateError: guardian.ErrGuardianOverrideLowerPresedence},
|
||||||
|
)
|
||||||
|
|
||||||
|
mock := &fakeFolderService{
|
||||||
|
GetFolderByUidResult: &m.Folder{
|
||||||
|
Id: 1,
|
||||||
|
Uid: "uid",
|
||||||
|
Title: "Folder",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
origNewFolderService := dashboards.NewFolderService
|
||||||
|
mockFolderService(mock)
|
||||||
|
|
||||||
|
cmd := dtos.UpdateDashboardAclCommand{
|
||||||
|
Items: []dtos.DashboardAclUpdateItem{
|
||||||
|
{UserId: 1000, Permission: m.PERMISSION_ADMIN},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
updateFolderPermissionScenario("When calling POST on", "/api/folders/uid/permissions", "/api/folders/:uid/permissions", cmd, func(sc *scenarioContext) {
|
||||||
|
callUpdateFolderPermissions(sc)
|
||||||
|
So(sc.resp.Code, ShouldEqual, 400)
|
||||||
|
})
|
||||||
|
|
||||||
|
Reset(func() {
|
||||||
|
guardian.New = origNewGuardian
|
||||||
|
dashboards.NewFolderService = origNewFolderService
|
||||||
|
})
|
||||||
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user