mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
87c3a2b790
* PluginManager: Make Plugins and DataSources non-global Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix integration tests Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Replace outdated command Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * DashboardService: Ensure it gets constructed with necessary parameters Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix build Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * DashboardService: Ensure it gets constructed with necessary parameters Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Remove dead code Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix test Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix test Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Remove FocusConvey Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix test Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Remove dead code Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Undo interface changes Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Backend: Move tsdbifaces.RequestHandler to plugins.DataRequestHandler Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Rename to DataSourceCount Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Consolidate dashboard interfaces into one Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix tests Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix tests Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix test Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix tests Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix tests Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix tests Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix tests Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com> * Fix dashboard integration tests Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
500 lines
19 KiB
Go
500 lines
19 KiB
Go
// +build integration
|
|
|
|
package sqlstore
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/smartystreets/goconvey/convey"
|
|
|
|
"github.com/grafana/grafana/pkg/components/simplejson"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/services/search"
|
|
)
|
|
|
|
func TestDashboardFolderDataAccess(t *testing.T) {
|
|
Convey("Testing DB", t, func() {
|
|
sqlStore := InitTestDB(t)
|
|
|
|
Convey("Given one dashboard folder with two dashboards and one dashboard in the root folder", func() {
|
|
folder := insertTestDashboard(t, sqlStore, "1 test dash folder", 1, 0, true, "prod", "webapp")
|
|
dashInRoot := insertTestDashboard(t, sqlStore, "test dash 67", 1, 0, false, "prod", "webapp")
|
|
childDash := insertTestDashboard(t, sqlStore, "test dash 23", 1, folder.Id, false, "prod", "webapp")
|
|
insertTestDashboard(t, sqlStore, "test dash 45", 1, folder.Id, false, "prod")
|
|
|
|
currentUser := createUser(t, sqlStore, "viewer", "Viewer", false)
|
|
|
|
Convey("and no acls are set", func() {
|
|
Convey("should return all dashboards", func() {
|
|
query := &search.FindPersistedDashboardsQuery{
|
|
SignedInUser: &models.SignedInUser{UserId: currentUser.Id, OrgId: 1, OrgRole: models.ROLE_VIEWER},
|
|
OrgId: 1,
|
|
DashboardIds: []int64{folder.Id, dashInRoot.Id},
|
|
}
|
|
err := SearchDashboards(query)
|
|
So(err, ShouldBeNil)
|
|
So(len(query.Result), ShouldEqual, 2)
|
|
So(query.Result[0].ID, ShouldEqual, folder.Id)
|
|
So(query.Result[1].ID, ShouldEqual, dashInRoot.Id)
|
|
})
|
|
})
|
|
|
|
Convey("and acl is set for dashboard folder", func() {
|
|
var otherUser int64 = 999
|
|
err := testHelperUpdateDashboardAcl(t, sqlStore, folder.Id, models.DashboardAcl{
|
|
DashboardID: folder.Id,
|
|
OrgID: 1,
|
|
UserID: otherUser,
|
|
Permission: models.PERMISSION_EDIT,
|
|
})
|
|
So(err, ShouldBeNil)
|
|
|
|
Convey("should not return folder", func() {
|
|
query := &search.FindPersistedDashboardsQuery{
|
|
SignedInUser: &models.SignedInUser{UserId: currentUser.Id, OrgId: 1, OrgRole: models.ROLE_VIEWER},
|
|
OrgId: 1, DashboardIds: []int64{folder.Id, dashInRoot.Id},
|
|
}
|
|
err := SearchDashboards(query)
|
|
So(err, ShouldBeNil)
|
|
|
|
So(len(query.Result), ShouldEqual, 1)
|
|
So(query.Result[0].ID, ShouldEqual, dashInRoot.Id)
|
|
})
|
|
|
|
Convey("when the user is given permission", func() {
|
|
err := testHelperUpdateDashboardAcl(t, sqlStore, folder.Id, models.DashboardAcl{
|
|
DashboardID: folder.Id, OrgID: 1, UserID: currentUser.Id, Permission: models.PERMISSION_EDIT,
|
|
})
|
|
So(err, ShouldBeNil)
|
|
|
|
Convey("should be able to access folder", func() {
|
|
query := &search.FindPersistedDashboardsQuery{
|
|
SignedInUser: &models.SignedInUser{UserId: currentUser.Id, OrgId: 1, OrgRole: models.ROLE_VIEWER},
|
|
OrgId: 1,
|
|
DashboardIds: []int64{folder.Id, dashInRoot.Id},
|
|
}
|
|
err := SearchDashboards(query)
|
|
So(err, ShouldBeNil)
|
|
So(len(query.Result), ShouldEqual, 2)
|
|
So(query.Result[0].ID, ShouldEqual, folder.Id)
|
|
So(query.Result[1].ID, ShouldEqual, dashInRoot.Id)
|
|
})
|
|
})
|
|
|
|
Convey("when the user is an admin", func() {
|
|
Convey("should be able to access folder", func() {
|
|
query := &search.FindPersistedDashboardsQuery{
|
|
SignedInUser: &models.SignedInUser{
|
|
UserId: currentUser.Id,
|
|
OrgId: 1,
|
|
OrgRole: models.ROLE_ADMIN,
|
|
},
|
|
OrgId: 1,
|
|
DashboardIds: []int64{folder.Id, dashInRoot.Id},
|
|
}
|
|
err := SearchDashboards(query)
|
|
So(err, ShouldBeNil)
|
|
So(len(query.Result), ShouldEqual, 2)
|
|
So(query.Result[0].ID, ShouldEqual, folder.Id)
|
|
So(query.Result[1].ID, ShouldEqual, dashInRoot.Id)
|
|
})
|
|
})
|
|
})
|
|
|
|
Convey("and acl is set for dashboard child and folder has all permissions removed", func() {
|
|
var otherUser int64 = 999
|
|
err := testHelperUpdateDashboardAcl(t, sqlStore, folder.Id)
|
|
So(err, ShouldBeNil)
|
|
err = testHelperUpdateDashboardAcl(t, sqlStore, childDash.Id, models.DashboardAcl{
|
|
DashboardID: folder.Id, OrgID: 1, UserID: otherUser, Permission: models.PERMISSION_EDIT,
|
|
})
|
|
So(err, ShouldBeNil)
|
|
|
|
Convey("should not return folder or child", func() {
|
|
query := &search.FindPersistedDashboardsQuery{
|
|
SignedInUser: &models.SignedInUser{UserId: currentUser.Id, OrgId: 1, OrgRole: models.ROLE_VIEWER}, OrgId: 1, DashboardIds: []int64{folder.Id, childDash.Id, dashInRoot.Id},
|
|
}
|
|
err := SearchDashboards(query)
|
|
So(err, ShouldBeNil)
|
|
So(len(query.Result), ShouldEqual, 1)
|
|
So(query.Result[0].ID, ShouldEqual, dashInRoot.Id)
|
|
})
|
|
|
|
Convey("when the user is given permission to child", func() {
|
|
err := testHelperUpdateDashboardAcl(t, sqlStore, childDash.Id, models.DashboardAcl{
|
|
DashboardID: childDash.Id, OrgID: 1, UserID: currentUser.Id, Permission: models.PERMISSION_EDIT,
|
|
})
|
|
So(err, ShouldBeNil)
|
|
|
|
Convey("should be able to search for child dashboard but not folder", func() {
|
|
query := &search.FindPersistedDashboardsQuery{SignedInUser: &models.SignedInUser{UserId: currentUser.Id, OrgId: 1, OrgRole: models.ROLE_VIEWER}, OrgId: 1, DashboardIds: []int64{folder.Id, childDash.Id, dashInRoot.Id}}
|
|
err := SearchDashboards(query)
|
|
So(err, ShouldBeNil)
|
|
So(len(query.Result), ShouldEqual, 2)
|
|
So(query.Result[0].ID, ShouldEqual, childDash.Id)
|
|
So(query.Result[1].ID, ShouldEqual, dashInRoot.Id)
|
|
})
|
|
})
|
|
|
|
Convey("when the user is an admin", func() {
|
|
Convey("should be able to search for child dash and folder", func() {
|
|
query := &search.FindPersistedDashboardsQuery{
|
|
SignedInUser: &models.SignedInUser{
|
|
UserId: currentUser.Id,
|
|
OrgId: 1,
|
|
OrgRole: models.ROLE_ADMIN,
|
|
},
|
|
OrgId: 1,
|
|
DashboardIds: []int64{folder.Id, dashInRoot.Id, childDash.Id},
|
|
}
|
|
err := SearchDashboards(query)
|
|
So(err, ShouldBeNil)
|
|
So(len(query.Result), ShouldEqual, 3)
|
|
So(query.Result[0].ID, ShouldEqual, folder.Id)
|
|
So(query.Result[1].ID, ShouldEqual, childDash.Id)
|
|
So(query.Result[2].ID, ShouldEqual, dashInRoot.Id)
|
|
})
|
|
})
|
|
})
|
|
})
|
|
|
|
Convey("Given two dashboard folders with one dashboard each and one dashboard in the root folder", func() {
|
|
folder1 := insertTestDashboard(t, sqlStore, "1 test dash folder", 1, 0, true, "prod")
|
|
folder2 := insertTestDashboard(t, sqlStore, "2 test dash folder", 1, 0, true, "prod")
|
|
dashInRoot := insertTestDashboard(t, sqlStore, "test dash 67", 1, 0, false, "prod")
|
|
childDash1 := insertTestDashboard(t, sqlStore, "child dash 1", 1, folder1.Id, false, "prod")
|
|
childDash2 := insertTestDashboard(t, sqlStore, "child dash 2", 1, folder2.Id, false, "prod")
|
|
|
|
currentUser := createUser(t, sqlStore, "viewer", "Viewer", false)
|
|
var rootFolderId int64 = 0
|
|
|
|
Convey("and one folder is expanded, the other collapsed", func() {
|
|
Convey("should return dashboards in root and expanded folder", func() {
|
|
query := &search.FindPersistedDashboardsQuery{
|
|
FolderIds: []int64{
|
|
rootFolderId, folder1.Id}, SignedInUser: &models.SignedInUser{UserId: currentUser.Id,
|
|
OrgId: 1, OrgRole: models.ROLE_VIEWER,
|
|
},
|
|
OrgId: 1,
|
|
}
|
|
err := SearchDashboards(query)
|
|
So(err, ShouldBeNil)
|
|
So(len(query.Result), ShouldEqual, 4)
|
|
So(query.Result[0].ID, ShouldEqual, folder1.Id)
|
|
So(query.Result[1].ID, ShouldEqual, folder2.Id)
|
|
So(query.Result[2].ID, ShouldEqual, childDash1.Id)
|
|
So(query.Result[3].ID, ShouldEqual, dashInRoot.Id)
|
|
})
|
|
})
|
|
|
|
Convey("and acl is set for one dashboard folder", func() {
|
|
const otherUser int64 = 999
|
|
err := testHelperUpdateDashboardAcl(t, sqlStore, folder1.Id, models.DashboardAcl{
|
|
DashboardID: folder1.Id, OrgID: 1, UserID: otherUser, Permission: models.PERMISSION_EDIT,
|
|
})
|
|
So(err, ShouldBeNil)
|
|
|
|
Convey("and a dashboard is moved from folder without acl to the folder with an acl", func() {
|
|
moveDashboard(t, sqlStore, 1, childDash2.Data, folder1.Id)
|
|
|
|
Convey("should not return folder with acl or its children", func() {
|
|
query := &search.FindPersistedDashboardsQuery{
|
|
SignedInUser: &models.SignedInUser{UserId: currentUser.Id, OrgId: 1, OrgRole: models.ROLE_VIEWER},
|
|
OrgId: 1,
|
|
DashboardIds: []int64{folder1.Id, childDash1.Id, childDash2.Id, dashInRoot.Id},
|
|
}
|
|
err := SearchDashboards(query)
|
|
So(err, ShouldBeNil)
|
|
So(len(query.Result), ShouldEqual, 1)
|
|
So(query.Result[0].ID, ShouldEqual, dashInRoot.Id)
|
|
})
|
|
})
|
|
Convey("and a dashboard is moved from folder with acl to the folder without an acl", func() {
|
|
moveDashboard(t, sqlStore, 1, childDash1.Data, folder2.Id)
|
|
|
|
Convey("should return folder without acl and its children", func() {
|
|
query := &search.FindPersistedDashboardsQuery{
|
|
SignedInUser: &models.SignedInUser{UserId: currentUser.Id, OrgId: 1, OrgRole: models.ROLE_VIEWER},
|
|
OrgId: 1,
|
|
DashboardIds: []int64{folder2.Id, childDash1.Id, childDash2.Id, dashInRoot.Id},
|
|
}
|
|
err := SearchDashboards(query)
|
|
So(err, ShouldBeNil)
|
|
So(len(query.Result), ShouldEqual, 4)
|
|
So(query.Result[0].ID, ShouldEqual, folder2.Id)
|
|
So(query.Result[1].ID, ShouldEqual, childDash1.Id)
|
|
So(query.Result[2].ID, ShouldEqual, childDash2.Id)
|
|
So(query.Result[3].ID, ShouldEqual, dashInRoot.Id)
|
|
})
|
|
})
|
|
|
|
Convey("and a dashboard with an acl is moved to the folder without an acl", func() {
|
|
err := testHelperUpdateDashboardAcl(t, sqlStore, childDash1.Id, models.DashboardAcl{
|
|
DashboardID: childDash1.Id, OrgID: 1, UserID: otherUser, Permission: models.PERMISSION_EDIT,
|
|
})
|
|
So(err, ShouldBeNil)
|
|
|
|
moveDashboard(t, sqlStore, 1, childDash1.Data, folder2.Id)
|
|
|
|
Convey("should return folder without acl but not the dashboard with acl", func() {
|
|
query := &search.FindPersistedDashboardsQuery{
|
|
SignedInUser: &models.SignedInUser{UserId: currentUser.Id, OrgId: 1, OrgRole: models.ROLE_VIEWER},
|
|
OrgId: 1,
|
|
DashboardIds: []int64{folder2.Id, childDash1.Id, childDash2.Id, dashInRoot.Id},
|
|
}
|
|
err := SearchDashboards(query)
|
|
So(err, ShouldBeNil)
|
|
So(len(query.Result), ShouldEqual, 4)
|
|
So(query.Result[0].ID, ShouldEqual, folder2.Id)
|
|
So(query.Result[1].ID, ShouldEqual, childDash1.Id)
|
|
So(query.Result[2].ID, ShouldEqual, childDash2.Id)
|
|
So(query.Result[3].ID, ShouldEqual, dashInRoot.Id)
|
|
})
|
|
})
|
|
})
|
|
})
|
|
|
|
Convey("Given two dashboard folders", func() {
|
|
folder1 := insertTestDashboard(t, sqlStore, "1 test dash folder", 1, 0, true, "prod")
|
|
folder2 := insertTestDashboard(t, sqlStore, "2 test dash folder", 1, 0, true, "prod")
|
|
insertTestDashboard(t, sqlStore, "folder in another org", 2, 0, true, "prod")
|
|
|
|
adminUser := createUser(t, sqlStore, "admin", "Admin", true)
|
|
editorUser := createUser(t, sqlStore, "editor", "Editor", false)
|
|
viewerUser := createUser(t, sqlStore, "viewer", "Viewer", false)
|
|
|
|
Convey("Admin users", func() {
|
|
Convey("Should have write access to all dashboard folders in their org", func() {
|
|
query := search.FindPersistedDashboardsQuery{
|
|
OrgId: 1,
|
|
SignedInUser: &models.SignedInUser{UserId: adminUser.Id, OrgRole: models.ROLE_ADMIN, OrgId: 1},
|
|
Permission: models.PERMISSION_VIEW,
|
|
Type: "dash-folder",
|
|
}
|
|
|
|
err := SearchDashboards(&query)
|
|
So(err, ShouldBeNil)
|
|
|
|
So(len(query.Result), ShouldEqual, 2)
|
|
So(query.Result[0].ID, ShouldEqual, folder1.Id)
|
|
So(query.Result[1].ID, ShouldEqual, folder2.Id)
|
|
})
|
|
|
|
Convey("should have write access to all folders and dashboards", func() {
|
|
query := models.GetDashboardPermissionsForUserQuery{
|
|
DashboardIds: []int64{folder1.Id, folder2.Id},
|
|
OrgId: 1,
|
|
UserId: adminUser.Id,
|
|
OrgRole: models.ROLE_ADMIN,
|
|
}
|
|
|
|
err := GetDashboardPermissionsForUser(&query)
|
|
So(err, ShouldBeNil)
|
|
|
|
So(len(query.Result), ShouldEqual, 2)
|
|
So(query.Result[0].DashboardId, ShouldEqual, folder1.Id)
|
|
So(query.Result[0].Permission, ShouldEqual, models.PERMISSION_ADMIN)
|
|
So(query.Result[1].DashboardId, ShouldEqual, folder2.Id)
|
|
So(query.Result[1].Permission, ShouldEqual, models.PERMISSION_ADMIN)
|
|
})
|
|
|
|
Convey("should have edit permission in folders", func() {
|
|
query := &models.HasEditPermissionInFoldersQuery{
|
|
SignedInUser: &models.SignedInUser{UserId: adminUser.Id, OrgId: 1, OrgRole: models.ROLE_ADMIN},
|
|
}
|
|
err := HasEditPermissionInFolders(query)
|
|
So(err, ShouldBeNil)
|
|
So(query.Result, ShouldBeTrue)
|
|
})
|
|
|
|
Convey("should have admin permission in folders", func() {
|
|
query := &models.HasAdminPermissionInFoldersQuery{
|
|
SignedInUser: &models.SignedInUser{UserId: adminUser.Id, OrgId: 1, OrgRole: models.ROLE_ADMIN},
|
|
}
|
|
err := HasAdminPermissionInFolders(query)
|
|
So(err, ShouldBeNil)
|
|
So(query.Result, ShouldBeTrue)
|
|
})
|
|
})
|
|
|
|
Convey("Editor users", func() {
|
|
query := search.FindPersistedDashboardsQuery{
|
|
OrgId: 1,
|
|
SignedInUser: &models.SignedInUser{UserId: editorUser.Id, OrgRole: models.ROLE_EDITOR, OrgId: 1},
|
|
Permission: models.PERMISSION_EDIT,
|
|
}
|
|
|
|
Convey("Should have write access to all dashboard folders with default ACL", func() {
|
|
err := SearchDashboards(&query)
|
|
So(err, ShouldBeNil)
|
|
|
|
So(len(query.Result), ShouldEqual, 2)
|
|
So(query.Result[0].ID, ShouldEqual, folder1.Id)
|
|
So(query.Result[1].ID, ShouldEqual, folder2.Id)
|
|
})
|
|
|
|
Convey("should have edit access to folders with default ACL", func() {
|
|
query := models.GetDashboardPermissionsForUserQuery{
|
|
DashboardIds: []int64{folder1.Id, folder2.Id},
|
|
OrgId: 1,
|
|
UserId: editorUser.Id,
|
|
OrgRole: models.ROLE_EDITOR,
|
|
}
|
|
|
|
err := GetDashboardPermissionsForUser(&query)
|
|
So(err, ShouldBeNil)
|
|
|
|
So(len(query.Result), ShouldEqual, 2)
|
|
So(query.Result[0].DashboardId, ShouldEqual, folder1.Id)
|
|
So(query.Result[0].Permission, ShouldEqual, models.PERMISSION_EDIT)
|
|
So(query.Result[1].DashboardId, ShouldEqual, folder2.Id)
|
|
So(query.Result[1].Permission, ShouldEqual, models.PERMISSION_EDIT)
|
|
})
|
|
|
|
Convey("Should have write access to one dashboard folder if default role changed to view for one folder", func() {
|
|
err := testHelperUpdateDashboardAcl(t, sqlStore, folder1.Id, models.DashboardAcl{
|
|
DashboardID: folder1.Id, OrgID: 1, UserID: editorUser.Id, Permission: models.PERMISSION_VIEW,
|
|
})
|
|
So(err, ShouldBeNil)
|
|
|
|
err = SearchDashboards(&query)
|
|
So(err, ShouldBeNil)
|
|
|
|
So(len(query.Result), ShouldEqual, 1)
|
|
So(query.Result[0].ID, ShouldEqual, folder2.Id)
|
|
})
|
|
|
|
Convey("should have edit permission in folders", func() {
|
|
query := &models.HasEditPermissionInFoldersQuery{
|
|
SignedInUser: &models.SignedInUser{UserId: editorUser.Id, OrgId: 1, OrgRole: models.ROLE_EDITOR},
|
|
}
|
|
err := HasEditPermissionInFolders(query)
|
|
So(err, ShouldBeNil)
|
|
So(query.Result, ShouldBeTrue)
|
|
})
|
|
|
|
Convey("should not have admin permission in folders", func() {
|
|
query := &models.HasAdminPermissionInFoldersQuery{
|
|
SignedInUser: &models.SignedInUser{UserId: adminUser.Id, OrgId: 1, OrgRole: models.ROLE_EDITOR},
|
|
}
|
|
err := HasAdminPermissionInFolders(query)
|
|
So(err, ShouldBeNil)
|
|
So(query.Result, ShouldBeFalse)
|
|
})
|
|
})
|
|
|
|
Convey("Viewer users", func() {
|
|
query := search.FindPersistedDashboardsQuery{
|
|
OrgId: 1,
|
|
SignedInUser: &models.SignedInUser{UserId: viewerUser.Id, OrgRole: models.ROLE_VIEWER, OrgId: 1},
|
|
Permission: models.PERMISSION_EDIT,
|
|
}
|
|
|
|
Convey("Should have no write access to any dashboard folders with default ACL", func() {
|
|
err := SearchDashboards(&query)
|
|
So(err, ShouldBeNil)
|
|
|
|
So(len(query.Result), ShouldEqual, 0)
|
|
})
|
|
|
|
Convey("should have view access to folders with default ACL", func() {
|
|
query := models.GetDashboardPermissionsForUserQuery{
|
|
DashboardIds: []int64{folder1.Id, folder2.Id},
|
|
OrgId: 1,
|
|
UserId: viewerUser.Id,
|
|
OrgRole: models.ROLE_VIEWER,
|
|
}
|
|
|
|
err := GetDashboardPermissionsForUser(&query)
|
|
So(err, ShouldBeNil)
|
|
|
|
So(len(query.Result), ShouldEqual, 2)
|
|
So(query.Result[0].DashboardId, ShouldEqual, folder1.Id)
|
|
So(query.Result[0].Permission, ShouldEqual, models.PERMISSION_VIEW)
|
|
So(query.Result[1].DashboardId, ShouldEqual, folder2.Id)
|
|
So(query.Result[1].Permission, ShouldEqual, models.PERMISSION_VIEW)
|
|
})
|
|
|
|
Convey("Should be able to get one dashboard folder if default role changed to edit for one folder", func() {
|
|
err := testHelperUpdateDashboardAcl(t, sqlStore, folder1.Id, models.DashboardAcl{
|
|
DashboardID: folder1.Id, OrgID: 1, UserID: viewerUser.Id, Permission: models.PERMISSION_EDIT,
|
|
})
|
|
So(err, ShouldBeNil)
|
|
|
|
err = SearchDashboards(&query)
|
|
So(err, ShouldBeNil)
|
|
|
|
So(len(query.Result), ShouldEqual, 1)
|
|
So(query.Result[0].ID, ShouldEqual, folder1.Id)
|
|
})
|
|
|
|
Convey("should not have edit permission in folders", func() {
|
|
query := &models.HasEditPermissionInFoldersQuery{
|
|
SignedInUser: &models.SignedInUser{UserId: viewerUser.Id, OrgId: 1, OrgRole: models.ROLE_VIEWER},
|
|
}
|
|
err := HasEditPermissionInFolders(query)
|
|
So(err, ShouldBeNil)
|
|
So(query.Result, ShouldBeFalse)
|
|
})
|
|
|
|
Convey("should not have admin permission in folders", func() {
|
|
query := &models.HasAdminPermissionInFoldersQuery{
|
|
SignedInUser: &models.SignedInUser{UserId: adminUser.Id, OrgId: 1, OrgRole: models.ROLE_VIEWER},
|
|
}
|
|
err := HasAdminPermissionInFolders(query)
|
|
So(err, ShouldBeNil)
|
|
So(query.Result, ShouldBeFalse)
|
|
})
|
|
|
|
Convey("and admin permission is given for user with org role viewer in one dashboard folder", func() {
|
|
err := testHelperUpdateDashboardAcl(t, sqlStore, folder1.Id, models.DashboardAcl{
|
|
DashboardID: folder1.Id, OrgID: 1, UserID: viewerUser.Id, Permission: models.PERMISSION_ADMIN,
|
|
})
|
|
So(err, ShouldBeNil)
|
|
|
|
Convey("should have edit permission in folders", func() {
|
|
query := &models.HasEditPermissionInFoldersQuery{
|
|
SignedInUser: &models.SignedInUser{UserId: viewerUser.Id, OrgId: 1, OrgRole: models.ROLE_VIEWER},
|
|
}
|
|
err := HasEditPermissionInFolders(query)
|
|
So(err, ShouldBeNil)
|
|
So(query.Result, ShouldBeTrue)
|
|
})
|
|
})
|
|
|
|
Convey("and edit permission is given for user with org role viewer in one dashboard folder", func() {
|
|
err := testHelperUpdateDashboardAcl(t, sqlStore, folder1.Id, models.DashboardAcl{
|
|
DashboardID: folder1.Id, OrgID: 1, UserID: viewerUser.Id, Permission: models.PERMISSION_EDIT,
|
|
})
|
|
So(err, ShouldBeNil)
|
|
|
|
Convey("should have edit permission in folders", func() {
|
|
query := &models.HasEditPermissionInFoldersQuery{
|
|
SignedInUser: &models.SignedInUser{UserId: viewerUser.Id, OrgId: 1, OrgRole: models.ROLE_VIEWER},
|
|
}
|
|
err := HasEditPermissionInFolders(query)
|
|
So(err, ShouldBeNil)
|
|
So(query.Result, ShouldBeTrue)
|
|
})
|
|
})
|
|
})
|
|
})
|
|
})
|
|
}
|
|
|
|
func moveDashboard(t *testing.T, sqlStore *SQLStore, orgId int64, dashboard *simplejson.Json,
|
|
newFolderId int64) *models.Dashboard {
|
|
t.Helper()
|
|
|
|
cmd := models.SaveDashboardCommand{
|
|
OrgId: orgId,
|
|
FolderId: newFolderId,
|
|
Dashboard: dashboard,
|
|
Overwrite: true,
|
|
}
|
|
dash, err := sqlStore.SaveDashboard(cmd)
|
|
So(err, ShouldBeNil)
|
|
|
|
return dash
|
|
}
|