mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
8765c48389
Removes legacy alerting, so long and thanks for all the fish! 🐟
---------
Co-authored-by: Matthew Jacobson <matthew.jacobson@grafana.com>
Co-authored-by: Sonia Aguilar <soniaAguilarPeiron@users.noreply.github.com>
Co-authored-by: Armand Grillet <armandgrillet@users.noreply.github.com>
Co-authored-by: William Wernert <rwwiv@users.noreply.github.com>
Co-authored-by: Yuri Tseretyan <yuriy.tseretyan@grafana.com>
93 lines
3.1 KiB
Go
93 lines
3.1 KiB
Go
package provisioning
|
|
|
|
import "context"
|
|
|
|
type Calls struct {
|
|
RunInitProvisioners []any
|
|
ProvisionDatasources []any
|
|
ProvisionPlugins []any
|
|
ProvisionDashboards []any
|
|
ProvisionAlerting []any
|
|
GetDashboardProvisionerResolvedPath []any
|
|
GetAllowUIUpdatesFromConfig []any
|
|
Run []any
|
|
}
|
|
|
|
type ProvisioningServiceMock struct {
|
|
Calls *Calls
|
|
RunInitProvisionersFunc func(ctx context.Context) error
|
|
ProvisionDatasourcesFunc func(ctx context.Context) error
|
|
ProvisionPluginsFunc func() error
|
|
ProvisionDashboardsFunc func() error
|
|
GetDashboardProvisionerResolvedPathFunc func(name string) string
|
|
GetAllowUIUpdatesFromConfigFunc func(name string) bool
|
|
RunFunc func(ctx context.Context) error
|
|
}
|
|
|
|
func NewProvisioningServiceMock(ctx context.Context) *ProvisioningServiceMock {
|
|
return &ProvisioningServiceMock{
|
|
Calls: &Calls{},
|
|
}
|
|
}
|
|
|
|
func (mock *ProvisioningServiceMock) RunInitProvisioners(ctx context.Context) error {
|
|
mock.Calls.RunInitProvisioners = append(mock.Calls.RunInitProvisioners, nil)
|
|
if mock.RunInitProvisionersFunc != nil {
|
|
return mock.RunInitProvisionersFunc(ctx)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (mock *ProvisioningServiceMock) ProvisionDatasources(ctx context.Context) error {
|
|
mock.Calls.ProvisionDatasources = append(mock.Calls.ProvisionDatasources, nil)
|
|
if mock.ProvisionDatasourcesFunc != nil {
|
|
return mock.ProvisionDatasourcesFunc(ctx)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (mock *ProvisioningServiceMock) ProvisionPlugins(ctx context.Context) error {
|
|
mock.Calls.ProvisionPlugins = append(mock.Calls.ProvisionPlugins, nil)
|
|
if mock.ProvisionPluginsFunc != nil {
|
|
return mock.ProvisionPluginsFunc()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (mock *ProvisioningServiceMock) ProvisionDashboards(ctx context.Context) error {
|
|
mock.Calls.ProvisionDashboards = append(mock.Calls.ProvisionDashboards, nil)
|
|
if mock.ProvisionDashboardsFunc != nil {
|
|
return mock.ProvisionDashboardsFunc()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (mock *ProvisioningServiceMock) ProvisionAlerting(ctx context.Context) error {
|
|
mock.Calls.ProvisionAlerting = append(mock.Calls.ProvisionAlerting, nil)
|
|
return nil
|
|
}
|
|
|
|
func (mock *ProvisioningServiceMock) GetDashboardProvisionerResolvedPath(name string) string {
|
|
mock.Calls.GetDashboardProvisionerResolvedPath = append(mock.Calls.GetDashboardProvisionerResolvedPath, name)
|
|
if mock.GetDashboardProvisionerResolvedPathFunc != nil {
|
|
return mock.GetDashboardProvisionerResolvedPathFunc(name)
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (mock *ProvisioningServiceMock) GetAllowUIUpdatesFromConfig(name string) bool {
|
|
mock.Calls.GetAllowUIUpdatesFromConfig = append(mock.Calls.GetAllowUIUpdatesFromConfig, name)
|
|
if mock.GetAllowUIUpdatesFromConfigFunc != nil {
|
|
return mock.GetAllowUIUpdatesFromConfigFunc(name)
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (mock *ProvisioningServiceMock) Run(ctx context.Context) error {
|
|
mock.Calls.Run = append(mock.Calls.Run, nil)
|
|
if mock.RunFunc != nil {
|
|
return mock.RunFunc(ctx)
|
|
}
|
|
return nil
|
|
}
|