mirror of
https://github.com/grafana/grafana.git
synced 2025-01-01 11:47:05 -06:00
40 lines
1005 B
Go
40 lines
1005 B
Go
package tsdb
|
|
|
|
type FakeExecutor struct {
|
|
results map[string]*QueryResult
|
|
resultsFn map[string]ResultsFn
|
|
}
|
|
|
|
type ResultsFn func(context *QueryContext) *QueryResult
|
|
|
|
func NewFakeExecutor(dsInfo *DataSourceInfo) *FakeExecutor {
|
|
return &FakeExecutor{
|
|
results: make(map[string]*QueryResult),
|
|
resultsFn: make(map[string]ResultsFn),
|
|
}
|
|
}
|
|
|
|
func (e *FakeExecutor) Execute(queries QuerySlice, context *QueryContext) *BatchResult {
|
|
result := &BatchResult{QueryResults: make(map[string]*QueryResult)}
|
|
for _, query := range queries {
|
|
if results, has := e.results[query.RefId]; has {
|
|
result.QueryResults[query.RefId] = results
|
|
}
|
|
if testFunc, has := e.resultsFn[query.RefId]; has {
|
|
result.QueryResults[query.RefId] = testFunc(context)
|
|
}
|
|
}
|
|
|
|
return result
|
|
}
|
|
|
|
func (e *FakeExecutor) Return(refId string, series TimeSeriesSlice) {
|
|
e.results[refId] = &QueryResult{
|
|
RefId: refId, Series: series,
|
|
}
|
|
}
|
|
|
|
func (e *FakeExecutor) HandleQuery(refId string, fn ResultsFn) {
|
|
e.resultsFn[refId] = fn
|
|
}
|