|
|
|
|
@ -10,8 +10,9 @@ import ( |
|
|
|
|
"github.com/stretchr/testify/require" |
|
|
|
|
|
|
|
|
|
"github.com/grafana/grafana/pkg/api/routing" |
|
|
|
|
busmock "github.com/grafana/grafana/pkg/bus/mock" |
|
|
|
|
"github.com/grafana/grafana/pkg/bus" |
|
|
|
|
"github.com/grafana/grafana/pkg/components/simplejson" |
|
|
|
|
"github.com/grafana/grafana/pkg/infra/tracing" |
|
|
|
|
"github.com/grafana/grafana/pkg/models" |
|
|
|
|
acmock "github.com/grafana/grafana/pkg/services/accesscontrol/mock" |
|
|
|
|
"github.com/grafana/grafana/pkg/services/alerting" |
|
|
|
|
@ -1408,7 +1409,7 @@ func createFolderWithACL(t *testing.T, sqlStore db.DB, title string, user *user. |
|
|
|
|
dashboardPermissions := acmock.NewMockedPermissionsService() |
|
|
|
|
dashboardStore := database.ProvideDashboardStore(sqlStore, cfg, featuremgmt.WithFeatures(), tagimpl.ProvideService(sqlStore, cfg)) |
|
|
|
|
d := dashboardservice.ProvideDashboardService(cfg, dashboardStore, nil, features, folderPermissions, dashboardPermissions, ac) |
|
|
|
|
s := folderimpl.ProvideService(ac, busmock.New(), cfg, d, dashboardStore, features, folderPermissions, nil) |
|
|
|
|
s := folderimpl.ProvideService(ac, bus.ProvideBus(tracing.InitializeTracerForTest()), cfg, d, dashboardStore, features, folderPermissions, nil) |
|
|
|
|
|
|
|
|
|
t.Logf("Creating folder with title and UID %q", title) |
|
|
|
|
folder, err := s.CreateFolder(context.Background(), user, user.OrgID, title, title) |
|
|
|
|
@ -1510,7 +1511,7 @@ func testScenario(t *testing.T, desc string, fn func(t *testing.T, sc scenarioCo |
|
|
|
|
cfg, dashboardStore, &alerting.DashAlertExtractorService{}, |
|
|
|
|
features, folderPermissions, dashboardPermissions, ac, |
|
|
|
|
) |
|
|
|
|
folderService := folderimpl.ProvideService(ac, busmock.New(), cfg, dashboardService, dashboardStore, features, folderPermissions, nil) |
|
|
|
|
folderService := folderimpl.ProvideService(ac, bus.ProvideBus(tracing.InitializeTracerForTest()), cfg, dashboardService, dashboardStore, features, folderPermissions, nil) |
|
|
|
|
|
|
|
|
|
elementService := libraryelements.ProvideService(cfg, sqlStore, routing.NewRouteRegister(), folderService) |
|
|
|
|
service := LibraryPanelService{ |
|
|
|
|
|