// Code generated by mockery v2.32.0. DO NOT EDIT. package dashboards import ( context "context" folder "github.com/grafana/grafana/pkg/services/folder" mock "github.com/stretchr/testify/mock" ) // FakeDashboardProvisioning is an autogenerated mock type for the DashboardProvisioningService type type FakeDashboardProvisioning struct { mock.Mock } // DeleteOrphanedProvisionedDashboards provides a mock function with given fields: ctx, cmd func (_m *FakeDashboardProvisioning) DeleteOrphanedProvisionedDashboards(ctx context.Context, cmd *DeleteOrphanedProvisionedDashboardsCommand) error { ret := _m.Called(ctx, cmd) var r0 error if rf, ok := ret.Get(0).(func(context.Context, *DeleteOrphanedProvisionedDashboardsCommand) error); ok { r0 = rf(ctx, cmd) } else { r0 = ret.Error(0) } return r0 } // DeleteProvisionedDashboard provides a mock function with given fields: ctx, dashboardID, orgID func (_m *FakeDashboardProvisioning) DeleteProvisionedDashboard(ctx context.Context, dashboardID int64, orgID int64) error { ret := _m.Called(ctx, dashboardID, orgID) var r0 error if rf, ok := ret.Get(0).(func(context.Context, int64, int64) error); ok { r0 = rf(ctx, dashboardID, orgID) } else { r0 = ret.Error(0) } return r0 } // GetProvisionedDashboardData provides a mock function with given fields: ctx, name func (_m *FakeDashboardProvisioning) GetProvisionedDashboardData(ctx context.Context, name string) ([]*DashboardProvisioning, error) { ret := _m.Called(ctx, name) var r0 []*DashboardProvisioning var r1 error if rf, ok := ret.Get(0).(func(context.Context, string) ([]*DashboardProvisioning, error)); ok { return rf(ctx, name) } if rf, ok := ret.Get(0).(func(context.Context, string) []*DashboardProvisioning); ok { r0 = rf(ctx, name) } else { if ret.Get(0) != nil { r0 = ret.Get(0).([]*DashboardProvisioning) } } if rf, ok := ret.Get(1).(func(context.Context, string) error); ok { r1 = rf(ctx, name) } else { r1 = ret.Error(1) } return r0, r1 } // GetProvisionedDashboardDataByDashboardID provides a mock function with given fields: ctx, dashboardID func (_m *FakeDashboardProvisioning) GetProvisionedDashboardDataByDashboardID(ctx context.Context, dashboardID int64) (*DashboardProvisioning, error) { ret := _m.Called(ctx, dashboardID) var r0 *DashboardProvisioning var r1 error if rf, ok := ret.Get(0).(func(context.Context, int64) (*DashboardProvisioning, error)); ok { return rf(ctx, dashboardID) } if rf, ok := ret.Get(0).(func(context.Context, int64) *DashboardProvisioning); ok { r0 = rf(ctx, dashboardID) } else { if ret.Get(0) != nil { r0 = ret.Get(0).(*DashboardProvisioning) } } if rf, ok := ret.Get(1).(func(context.Context, int64) error); ok { r1 = rf(ctx, dashboardID) } else { r1 = ret.Error(1) } return r0, r1 } // GetProvisionedDashboardDataByDashboardUID provides a mock function with given fields: ctx, orgID, dashboardUID func (_m *FakeDashboardProvisioning) GetProvisionedDashboardDataByDashboardUID(ctx context.Context, orgID int64, dashboardUID string) (*DashboardProvisioning, error) { ret := _m.Called(ctx, orgID, dashboardUID) var r0 *DashboardProvisioning var r1 error if rf, ok := ret.Get(0).(func(context.Context, int64, string) (*DashboardProvisioning, error)); ok { return rf(ctx, orgID, dashboardUID) } if rf, ok := ret.Get(0).(func(context.Context, int64, string) *DashboardProvisioning); ok { r0 = rf(ctx, orgID, dashboardUID) } else { if ret.Get(0) != nil { r0 = ret.Get(0).(*DashboardProvisioning) } } if rf, ok := ret.Get(1).(func(context.Context, int64, string) error); ok { r1 = rf(ctx, orgID, dashboardUID) } else { r1 = ret.Error(1) } return r0, r1 } // SaveFolderForProvisionedDashboards provides a mock function with given fields: _a0, _a1 func (_m *FakeDashboardProvisioning) SaveFolderForProvisionedDashboards(_a0 context.Context, _a1 *folder.CreateFolderCommand) (*folder.Folder, error) { ret := _m.Called(_a0, _a1) var r0 *folder.Folder var r1 error if rf, ok := ret.Get(0).(func(context.Context, *folder.CreateFolderCommand) (*folder.Folder, error)); ok { return rf(_a0, _a1) } if rf, ok := ret.Get(0).(func(context.Context, *folder.CreateFolderCommand) *folder.Folder); ok { r0 = rf(_a0, _a1) } else { if ret.Get(0) != nil { r0 = ret.Get(0).(*folder.Folder) } } if rf, ok := ret.Get(1).(func(context.Context, *folder.CreateFolderCommand) error); ok { r1 = rf(_a0, _a1) } else { r1 = ret.Error(1) } return r0, r1 } // SaveProvisionedDashboard provides a mock function with given fields: ctx, dto, provisioning func (_m *FakeDashboardProvisioning) SaveProvisionedDashboard(ctx context.Context, dto *SaveDashboardDTO, provisioning *DashboardProvisioning) (*Dashboard, error) { ret := _m.Called(ctx, dto, provisioning) var r0 *Dashboard var r1 error if rf, ok := ret.Get(0).(func(context.Context, *SaveDashboardDTO, *DashboardProvisioning) (*Dashboard, error)); ok { return rf(ctx, dto, provisioning) } if rf, ok := ret.Get(0).(func(context.Context, *SaveDashboardDTO, *DashboardProvisioning) *Dashboard); ok { r0 = rf(ctx, dto, provisioning) } else { if ret.Get(0) != nil { r0 = ret.Get(0).(*Dashboard) } } if rf, ok := ret.Get(1).(func(context.Context, *SaveDashboardDTO, *DashboardProvisioning) error); ok { r1 = rf(ctx, dto, provisioning) } else { r1 = ret.Error(1) } return r0, r1 } // UnprovisionDashboard provides a mock function with given fields: ctx, dashboardID func (_m *FakeDashboardProvisioning) UnprovisionDashboard(ctx context.Context, dashboardID int64) error { ret := _m.Called(ctx, dashboardID) var r0 error if rf, ok := ret.Get(0).(func(context.Context, int64) error); ok { r0 = rf(ctx, dashboardID) } else { r0 = ret.Error(0) } return r0 } // NewFakeDashboardProvisioning creates a new instance of FakeDashboardProvisioning. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. // The first argument is typically a *testing.T value. func NewFakeDashboardProvisioning(t interface { mock.TestingT Cleanup(func()) }) *FakeDashboardProvisioning { mock := &FakeDashboardProvisioning{} mock.Mock.Test(t) t.Cleanup(func() { mock.AssertExpectations(t) }) return mock }