mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 08:35:43 -06:00
51 lines
1.6 KiB
TypeScript
51 lines
1.6 KiB
TypeScript
import { updateDatasourceInstanceAction, datasourceReducer } from './datasource';
|
|
import { ExploreId, ExploreItemState } from 'app/types';
|
|
import { DataQuery, DataSourceApi } from '@grafana/data';
|
|
import { createEmptyQueryResponse } from './utils';
|
|
|
|
describe('Datasource reducer', () => {
|
|
it('should handle set updateDatasourceInstanceAction correctly', () => {
|
|
const StartPage = {};
|
|
const datasourceInstance = {
|
|
meta: {
|
|
metrics: true,
|
|
logs: true,
|
|
},
|
|
components: {
|
|
QueryEditorHelp: StartPage,
|
|
},
|
|
} as DataSourceApi;
|
|
const queries: DataQuery[] = [];
|
|
const queryKeys: string[] = [];
|
|
const initialState: ExploreItemState = ({
|
|
datasourceInstance: null,
|
|
queries,
|
|
queryKeys,
|
|
} as unknown) as ExploreItemState;
|
|
|
|
const result = datasourceReducer(
|
|
initialState,
|
|
updateDatasourceInstanceAction({ exploreId: ExploreId.left, datasourceInstance, history: [] })
|
|
);
|
|
|
|
const expectedState: Partial<ExploreItemState> = {
|
|
datasourceInstance,
|
|
queries,
|
|
queryKeys,
|
|
graphResult: null,
|
|
logsResult: null,
|
|
tableResult: null,
|
|
latency: 0,
|
|
loading: false,
|
|
queryResponse: {
|
|
// When creating an empty query response we also create a timeRange object with the current time.
|
|
// Copying the range from the reducer here prevents intermittent failures when creating them at different times.
|
|
...createEmptyQueryResponse(),
|
|
timeRange: result.queryResponse.timeRange,
|
|
},
|
|
};
|
|
|
|
expect(result).toMatchObject(expectedState);
|
|
});
|
|
});
|