The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/pkg/services/star/startest/fake.go

37 lines
964 B

package startest
import (
"context"
"github.com/grafana/grafana/pkg/services/star"
)
type FakeStarService struct {
ExpectedStars *star.Star
ExpectedError error
ExpectedUserStars *star.GetUserStarsResult
}
func NewStarServiceFake() *FakeStarService {
return &FakeStarService{}
}
func (f *FakeStarService) IsStarredByUser(ctx context.Context, query *star.IsStarredByUserQuery) (bool, error) {
return true, f.ExpectedError
}
func (f *FakeStarService) Add(ctx context.Context, cmd *star.StarDashboardCommand) error {
return f.ExpectedError
}
func (f *FakeStarService) Delete(ctx context.Context, cmd *star.UnstarDashboardCommand) error {
return f.ExpectedError
}
func (f *FakeStarService) DeleteByUser(ctx context.Context, userID int64) error {
return f.ExpectedError
}
func (f *FakeStarService) GetByUser(ctx context.Context, query *star.GetUserStarsQuery) (*star.GetUserStarsResult, error) {
return f.ExpectedUserStars, f.ExpectedError
}