mirror of
https://github.com/grafana/grafana.git
synced 2025-02-10 23:55:47 -06:00
* Use SDK contracts for cloudmonitoring * Get build running, tests passing and do some refactoring (#38754) * fix build+tests and refactor * remove alerting stuff * remove unused field * fix plugin fetch * end to end * resp rename * tidy annotations * reformatting * update refID * reformat imports * fix styling * clean up unmarshalling * uncomment + fix tests * appease linter * remove spaces * remove old cruft * add check for empty queries * update tests * remove pm as dep * adjust proxy route contract * fix service loading * use UNIX val * fix endpoint + resp * h@ckz for frontend * fix resp * fix interval * always set custom meta * remove unused param * fix labels fetch * fix linter * fix test + remove unused field * apply pr feedback * fix grafana-auto intervals * fix tests * resolve conflicts * fix bad merge * fix conflicts * remove bad logger import Co-authored-by: Will Browne <wbrowne@users.noreply.github.com> Co-authored-by: Will Browne <will.browne@grafana.com>
120 lines
3.7 KiB
Go
120 lines
3.7 KiB
Go
package tsdb
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/grafana/grafana-plugin-sdk-go/backend"
|
|
"github.com/grafana/grafana/pkg/bus"
|
|
"github.com/grafana/grafana/pkg/components/simplejson"
|
|
"github.com/grafana/grafana/pkg/models"
|
|
"github.com/grafana/grafana/pkg/plugins"
|
|
"github.com/grafana/grafana/pkg/plugins/backendplugin"
|
|
"github.com/grafana/grafana/pkg/services/datasources"
|
|
"github.com/grafana/grafana/pkg/services/encryption/ossencryption"
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
"github.com/stretchr/testify/require"
|
|
"golang.org/x/oauth2"
|
|
)
|
|
|
|
func TestHandleRequest(t *testing.T) {
|
|
t.Run("Should invoke plugin manager QueryData when handling request for query", func(t *testing.T) {
|
|
svc, _, pm := createService()
|
|
backendPluginManagerCalled := false
|
|
pm.QueryDataHandlerFunc = func(ctx context.Context, req *backend.QueryDataRequest) (*backend.QueryDataResponse, error) {
|
|
backendPluginManagerCalled = true
|
|
return backend.NewQueryDataResponse(), nil
|
|
}
|
|
|
|
ds := &models.DataSource{Id: 12, Type: "unregisteredType", JsonData: simplejson.New()}
|
|
req := plugins.DataQuery{
|
|
TimeRange: &plugins.DataTimeRange{},
|
|
Queries: []plugins.DataSubQuery{
|
|
{RefID: "A", DataSource: &models.DataSource{Id: 1, Type: "test"}, Model: simplejson.New()},
|
|
{RefID: "B", DataSource: &models.DataSource{Id: 1, Type: "test"}, Model: simplejson.New()},
|
|
},
|
|
}
|
|
_, err := svc.HandleRequest(context.Background(), ds, req)
|
|
require.NoError(t, err)
|
|
require.True(t, backendPluginManagerCalled)
|
|
})
|
|
}
|
|
|
|
//nolint: staticcheck // plugins.DataPlugin deprecated
|
|
type resultsFn func(context plugins.DataQuery) plugins.DataQueryResult
|
|
|
|
type fakeExecutor struct {
|
|
//nolint: staticcheck // plugins.DataPlugin deprecated
|
|
results map[string]plugins.DataQueryResult
|
|
resultsFn map[string]resultsFn
|
|
}
|
|
|
|
//nolint: staticcheck // plugins.DataPlugin deprecated
|
|
func (e *fakeExecutor) DataQuery(ctx context.Context, dsInfo *models.DataSource, context plugins.DataQuery) (
|
|
plugins.DataResponse, error) {
|
|
result := plugins.DataResponse{Results: make(map[string]plugins.DataQueryResult)}
|
|
for _, query := range context.Queries {
|
|
if results, has := e.results[query.RefID]; has {
|
|
result.Results[query.RefID] = results
|
|
}
|
|
if testFunc, has := e.resultsFn[query.RefID]; has {
|
|
result.Results[query.RefID] = testFunc(context)
|
|
}
|
|
}
|
|
|
|
return result, nil
|
|
}
|
|
|
|
func (e *fakeExecutor) Return(refID string, series plugins.DataTimeSeriesSlice) {
|
|
//nolint: staticcheck // plugins.DataPlugin deprecated
|
|
e.results[refID] = plugins.DataQueryResult{
|
|
RefID: refID, Series: series,
|
|
}
|
|
}
|
|
|
|
func (e *fakeExecutor) HandleQuery(refId string, fn resultsFn) {
|
|
e.resultsFn[refId] = fn
|
|
}
|
|
|
|
type fakeBackendPM struct {
|
|
backendplugin.Manager
|
|
backend.QueryDataHandlerFunc
|
|
}
|
|
|
|
func (m *fakeBackendPM) QueryData(ctx context.Context, req *backend.QueryDataRequest) (*backend.QueryDataResponse, error) {
|
|
if m.QueryDataHandlerFunc != nil {
|
|
return m.QueryDataHandlerFunc.QueryData(ctx, req)
|
|
}
|
|
|
|
return nil, nil
|
|
}
|
|
|
|
type fakeOAuthTokenService struct {
|
|
}
|
|
|
|
func (s *fakeOAuthTokenService) GetCurrentOAuthToken(context.Context, *models.SignedInUser) *oauth2.Token {
|
|
return nil
|
|
}
|
|
|
|
func (s *fakeOAuthTokenService) IsOAuthPassThruEnabled(*models.DataSource) bool {
|
|
return false
|
|
}
|
|
|
|
func createService() (*Service, *fakeExecutor, *fakeBackendPM) {
|
|
fakeBackendPM := &fakeBackendPM{}
|
|
dsService := datasources.ProvideService(bus.New(), nil, ossencryption.ProvideService())
|
|
s := newService(
|
|
setting.NewCfg(),
|
|
fakeBackendPM,
|
|
&fakeOAuthTokenService{},
|
|
dsService,
|
|
)
|
|
e := &fakeExecutor{
|
|
//nolint: staticcheck // plugins.DataPlugin deprecated
|
|
results: make(map[string]plugins.DataQueryResult),
|
|
resultsFn: make(map[string]resultsFn),
|
|
}
|
|
|
|
return s, e, fakeBackendPM
|
|
}
|