mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
* I needed to learn some rxjs and understand this more, so just playing around * Updated * Removed all the complete calls * Refactoring * StreamHandler -> observable start * progress * simple singal works * Handle update time range * added error handling * wrap old function * minor changes * handle data format in the subscribe function * Use replay subject to return last value to subscribers * Set loading state after no response in 50ms * added missing file * updated comment * Added cancelation of network requests * runRequest: Added unit test scenario framework * Progress on tests * minor refactor of unit tests * updated test * removed some old code * Shared queries work again, and also became so much simplier * unified query and observe methods * implict any fix * Fixed closed subject issue * removed comment * Use last returned data for loading state * WIP: Explore to runRequest makover step1 * Minor progress * Minor progress on explore and runRequest * minor progress * Things are starting to work in explore * Updated prometheus to use new observable query response, greatly simplified code * Revert refId change * Found better solution for key/refId/requestId problem * use observable with loki * tests compile * fix loki query prep * Explore: correct first response handling * Refactorings * Refactoring * Explore: Fixes LoadingState and GraphResults between runs (#18986) * Refactor: Adds state to DataQueryResponse * Fix: Fixes so we do not empty results before new data arrives Fixes: #17409 * Transformations work * observable test data * remove single() from loki promise * Fixed comment * Explore: Fixes failing Loki and Prometheus unit tests (#18995) * Tests: Makes datasource tests work again * Fix: Fixes loki datasource so highligthing works * Chore: Runs Prettier * Fixed query runner tests * Delay loading state indication to 200ms * Fixed test * fixed unit tests * Clear cached calcs * Fixed bug getProcesedDataFrames * Fix the correct test is a better idea * Fix: Fixes so queries in Explore are only run if Graph/Table is shown (#19000) * Fix: Fixes so queries in Explore are only run if Graph/Table is shown Fixes: #18618 * Refactor: Removes unnecessary condition * PanelData: provide legacy data only when needed (#19018) * no legacy * invert logic... now compiles * merge getQueryResponseData and getDataRaw * update comment about query editor * use single getData() function * only send legacy when it is used in explore * pre process rather than post process * pre process rather than post process * Minor refactoring * Add missing tags to test datasource response * MixedDatasource: Adds query observable pattern to MixedDatasource (#19037) * start mixed datasource * Refactor: Refactors into observable parttern * Tests: Fixes tests * Tests: Removes console.log * Refactor: Adds unique requestId
205 lines
6.2 KiB
TypeScript
205 lines
6.2 KiB
TypeScript
jest.mock('@grafana/data/src/utils/moment_wrapper', () => ({
|
|
dateTime: (ts: any) => {
|
|
return {
|
|
valueOf: () => ts,
|
|
fromNow: () => 'fromNow() jest mocked',
|
|
format: (fmt: string) => 'format() jest mocked',
|
|
};
|
|
},
|
|
toUtc: (ts: any) => {
|
|
return {
|
|
format: (fmt: string) => 'format() jest mocked',
|
|
};
|
|
},
|
|
}));
|
|
|
|
import { ResultProcessor } from './ResultProcessor';
|
|
import { ExploreItemState, ExploreMode } from 'app/types/explore';
|
|
import TableModel from 'app/core/table_model';
|
|
import { TimeSeries, LogRowModel, toDataFrame, FieldType } from '@grafana/data';
|
|
|
|
const testContext = (options: any = {}) => {
|
|
const timeSeries = toDataFrame({
|
|
name: 'A-series',
|
|
refId: 'A',
|
|
fields: [
|
|
{ name: 'A-series', type: FieldType.number, values: [4, 5, 6] },
|
|
{ name: 'time', type: FieldType.time, values: [100, 200, 300] },
|
|
],
|
|
});
|
|
|
|
const table = toDataFrame({
|
|
name: 'table-res',
|
|
refId: 'A',
|
|
fields: [
|
|
{ name: 'value', type: FieldType.number, values: [4, 5, 6] },
|
|
{ name: 'time', type: FieldType.time, values: [100, 200, 300] },
|
|
{ name: 'message', type: FieldType.string, values: ['this is a message', 'second message', 'third'] },
|
|
],
|
|
});
|
|
|
|
const defaultOptions = {
|
|
mode: ExploreMode.Metrics,
|
|
dataFrames: [timeSeries, table],
|
|
graphResult: [] as TimeSeries[],
|
|
tableResult: new TableModel(),
|
|
logsResult: { hasUniqueLabels: false, rows: [] as LogRowModel[] },
|
|
};
|
|
|
|
const combinedOptions = { ...defaultOptions, ...options };
|
|
|
|
const state = ({
|
|
mode: combinedOptions.mode,
|
|
graphResult: combinedOptions.graphResult,
|
|
tableResult: combinedOptions.tableResult,
|
|
logsResult: combinedOptions.logsResult,
|
|
queryIntervals: { intervalMs: 10 },
|
|
} as any) as ExploreItemState;
|
|
|
|
const resultProcessor = new ResultProcessor(state, combinedOptions.dataFrames);
|
|
|
|
return {
|
|
dataFrames: combinedOptions.dataFrames,
|
|
resultProcessor,
|
|
};
|
|
};
|
|
|
|
describe('ResultProcessor', () => {
|
|
describe('constructed without result', () => {
|
|
describe('when calling getGraphResult', () => {
|
|
it('then it should return null', () => {
|
|
const { resultProcessor } = testContext({ dataFrames: [] });
|
|
const theResult = resultProcessor.getGraphResult();
|
|
|
|
expect(theResult).toEqual(null);
|
|
});
|
|
});
|
|
|
|
describe('when calling getTableResult', () => {
|
|
it('then it should return null', () => {
|
|
const { resultProcessor } = testContext({ dataFrames: [] });
|
|
const theResult = resultProcessor.getTableResult();
|
|
|
|
expect(theResult).toEqual(null);
|
|
});
|
|
});
|
|
|
|
describe('when calling getLogsResult', () => {
|
|
it('then it should return null', () => {
|
|
const { resultProcessor } = testContext({ dataFrames: [] });
|
|
const theResult = resultProcessor.getLogsResult();
|
|
|
|
expect(theResult).toBeNull();
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('constructed with a result that is a DataQueryResponse', () => {
|
|
describe('when calling getGraphResult', () => {
|
|
it('then it should return correct graph result', () => {
|
|
const { resultProcessor } = testContext();
|
|
const theResult = resultProcessor.getGraphResult();
|
|
|
|
expect(theResult).toEqual([
|
|
{
|
|
label: 'A-series',
|
|
color: '#7EB26D',
|
|
data: [[100, 4], [200, 5], [300, 6]],
|
|
info: undefined,
|
|
isVisible: true,
|
|
yAxis: {
|
|
index: 1,
|
|
},
|
|
},
|
|
]);
|
|
});
|
|
});
|
|
|
|
describe('when calling getTableResult', () => {
|
|
it('then it should return correct table result', () => {
|
|
const { resultProcessor } = testContext();
|
|
const theResult = resultProcessor.getTableResult();
|
|
|
|
expect(theResult).toEqual({
|
|
columnMap: {},
|
|
columns: [
|
|
{ text: 'value', type: 'number', filterable: undefined },
|
|
{ text: 'time', type: 'time', filterable: undefined },
|
|
{ text: 'message', type: 'string', filterable: undefined },
|
|
],
|
|
rows: [[4, 100, 'this is a message'], [5, 200, 'second message'], [6, 300, 'third']],
|
|
type: 'table',
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('when calling getLogsResult', () => {
|
|
it('then it should return correct logs result', () => {
|
|
const { resultProcessor } = testContext({ mode: ExploreMode.Logs });
|
|
const theResult = resultProcessor.getLogsResult();
|
|
|
|
expect(theResult).toEqual({
|
|
hasUniqueLabels: false,
|
|
meta: [],
|
|
rows: [
|
|
{
|
|
entry: 'third',
|
|
hasAnsi: false,
|
|
labels: undefined,
|
|
logLevel: 'unknown',
|
|
raw: 'third',
|
|
searchWords: [] as string[],
|
|
timeEpochMs: 300,
|
|
timeFromNow: 'fromNow() jest mocked',
|
|
timeLocal: 'format() jest mocked',
|
|
timeUtc: 'format() jest mocked',
|
|
timestamp: 300,
|
|
uniqueLabels: {},
|
|
},
|
|
{
|
|
entry: 'second message',
|
|
hasAnsi: false,
|
|
labels: undefined,
|
|
logLevel: 'unknown',
|
|
raw: 'second message',
|
|
searchWords: [] as string[],
|
|
timeEpochMs: 200,
|
|
timeFromNow: 'fromNow() jest mocked',
|
|
timeLocal: 'format() jest mocked',
|
|
timeUtc: 'format() jest mocked',
|
|
timestamp: 200,
|
|
uniqueLabels: {},
|
|
},
|
|
{
|
|
entry: 'this is a message',
|
|
hasAnsi: false,
|
|
labels: undefined,
|
|
logLevel: 'unknown',
|
|
raw: 'this is a message',
|
|
searchWords: [] as string[],
|
|
timeEpochMs: 100,
|
|
timeFromNow: 'fromNow() jest mocked',
|
|
timeLocal: 'format() jest mocked',
|
|
timeUtc: 'format() jest mocked',
|
|
timestamp: 100,
|
|
uniqueLabels: {},
|
|
},
|
|
],
|
|
series: [
|
|
{
|
|
label: 'A-series',
|
|
color: '#7EB26D',
|
|
data: [[100, 4], [200, 5], [300, 6]],
|
|
info: undefined,
|
|
isVisible: true,
|
|
yAxis: {
|
|
index: 1,
|
|
},
|
|
},
|
|
],
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|