mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 16:45:43 -06:00
* Inline datasource actions into initialisation * Simplify url handling * Add comments * Remove split property from state and split Explore.tsx to 2 components * Add comments * Simplify and fix splitOpen and splitClose actions * Update public/app/features/explore/ExplorePaneContainer.tsx Co-authored-by: Giordano Ricci <gio.ricci@grafana.com> * Update public/app/features/explore/state/explorePane.test.ts Co-authored-by: Giordano Ricci <gio.ricci@grafana.com> * Update public/app/features/explore/Wrapper.tsx Co-authored-by: Ivana Huckova <30407135+ivanahuckova@users.noreply.github.com> * Fix test * Fix lint Co-authored-by: Giordano Ricci <gio.ricci@grafana.com> Co-authored-by: Ivana Huckova <30407135+ivanahuckova@users.noreply.github.com>
210 lines
7.3 KiB
TypeScript
210 lines
7.3 KiB
TypeScript
import { serializeStateToUrlParam } from '@grafana/data/src/utils/url';
|
|
import { exploreReducer, navigateToExplore, splitCloseAction } from './main';
|
|
import { thunkTester } from 'test/core/thunk/thunkTester';
|
|
import { PanelModel } from 'app/features/dashboard/state';
|
|
import { updateLocation } from '../../../core/actions';
|
|
import { MockDataSourceApi } from '../../../../test/mocks/datasource_srv';
|
|
import { ExploreId, ExploreItemState, ExploreState } from '../../../types';
|
|
import { reducerTester } from '../../../../test/core/redux/reducerTester';
|
|
import { ExploreUrlState } from '@grafana/data';
|
|
|
|
const getNavigateToExploreContext = async (openInNewWindow?: (url: string) => void) => {
|
|
const url = 'http://www.someurl.com';
|
|
const panel: Partial<PanelModel> = {
|
|
datasource: 'mocked datasource',
|
|
targets: [{ refId: 'A' }],
|
|
};
|
|
const datasource = new MockDataSourceApi(panel.datasource!);
|
|
const get = jest.fn().mockResolvedValue(datasource);
|
|
const getDataSourceSrv = jest.fn().mockReturnValue({ get });
|
|
const getTimeSrv = jest.fn();
|
|
const getExploreUrl = jest.fn().mockResolvedValue(url);
|
|
|
|
const dispatchedActions = await thunkTester({})
|
|
.givenThunk(navigateToExplore)
|
|
.whenThunkIsDispatched(panel, { getDataSourceSrv, getTimeSrv, getExploreUrl, openInNewWindow });
|
|
|
|
return {
|
|
url,
|
|
panel,
|
|
datasource,
|
|
get,
|
|
getDataSourceSrv,
|
|
getTimeSrv,
|
|
getExploreUrl,
|
|
dispatchedActions,
|
|
};
|
|
};
|
|
|
|
describe('navigateToExplore', () => {
|
|
describe('when navigateToExplore thunk is dispatched', () => {
|
|
describe('and openInNewWindow is undefined', () => {
|
|
const openInNewWindow: (url: string) => void = (undefined as unknown) as (url: string) => void;
|
|
it('then it should dispatch correct actions', async () => {
|
|
const { dispatchedActions, url } = await getNavigateToExploreContext(openInNewWindow);
|
|
|
|
expect(dispatchedActions).toEqual([updateLocation({ path: url, query: {} })]);
|
|
});
|
|
|
|
it('then getDataSourceSrv should have been once', async () => {
|
|
const { getDataSourceSrv } = await getNavigateToExploreContext(openInNewWindow);
|
|
|
|
expect(getDataSourceSrv).toHaveBeenCalledTimes(1);
|
|
});
|
|
|
|
it('then getDataSourceSrv.get should have been called with correct arguments', async () => {
|
|
const { get, panel } = await getNavigateToExploreContext(openInNewWindow);
|
|
|
|
expect(get).toHaveBeenCalledTimes(1);
|
|
expect(get).toHaveBeenCalledWith(panel.datasource);
|
|
});
|
|
|
|
it('then getTimeSrv should have been called once', async () => {
|
|
const { getTimeSrv } = await getNavigateToExploreContext(openInNewWindow);
|
|
|
|
expect(getTimeSrv).toHaveBeenCalledTimes(1);
|
|
});
|
|
|
|
it('then getExploreUrl should have been called with correct arguments', async () => {
|
|
const { getExploreUrl, panel, datasource, getDataSourceSrv, getTimeSrv } = await getNavigateToExploreContext(
|
|
openInNewWindow
|
|
);
|
|
|
|
expect(getExploreUrl).toHaveBeenCalledTimes(1);
|
|
expect(getExploreUrl).toHaveBeenCalledWith({
|
|
panel,
|
|
panelTargets: panel.targets,
|
|
panelDatasource: datasource,
|
|
datasourceSrv: getDataSourceSrv(),
|
|
timeSrv: getTimeSrv(),
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('and openInNewWindow is defined', () => {
|
|
const openInNewWindow: (url: string) => void = jest.fn();
|
|
it('then it should dispatch no actions', async () => {
|
|
const { dispatchedActions } = await getNavigateToExploreContext(openInNewWindow);
|
|
|
|
expect(dispatchedActions).toEqual([]);
|
|
});
|
|
|
|
it('then getDataSourceSrv should have been once', async () => {
|
|
const { getDataSourceSrv } = await getNavigateToExploreContext(openInNewWindow);
|
|
|
|
expect(getDataSourceSrv).toHaveBeenCalledTimes(1);
|
|
});
|
|
|
|
it('then getDataSourceSrv.get should have been called with correct arguments', async () => {
|
|
const { get, panel } = await getNavigateToExploreContext(openInNewWindow);
|
|
|
|
expect(get).toHaveBeenCalledTimes(1);
|
|
expect(get).toHaveBeenCalledWith(panel.datasource);
|
|
});
|
|
|
|
it('then getTimeSrv should have been called once', async () => {
|
|
const { getTimeSrv } = await getNavigateToExploreContext(openInNewWindow);
|
|
|
|
expect(getTimeSrv).toHaveBeenCalledTimes(1);
|
|
});
|
|
|
|
it('then getExploreUrl should have been called with correct arguments', async () => {
|
|
const { getExploreUrl, panel, datasource, getDataSourceSrv, getTimeSrv } = await getNavigateToExploreContext(
|
|
openInNewWindow
|
|
);
|
|
|
|
expect(getExploreUrl).toHaveBeenCalledTimes(1);
|
|
expect(getExploreUrl).toHaveBeenCalledWith({
|
|
panel,
|
|
panelTargets: panel.targets,
|
|
panelDatasource: datasource,
|
|
datasourceSrv: getDataSourceSrv(),
|
|
timeSrv: getTimeSrv(),
|
|
});
|
|
});
|
|
|
|
it('then openInNewWindow should have been called with correct arguments', async () => {
|
|
const openInNewWindowFunc = jest.fn();
|
|
const { url } = await getNavigateToExploreContext(openInNewWindowFunc);
|
|
|
|
expect(openInNewWindowFunc).toHaveBeenCalledTimes(1);
|
|
expect(openInNewWindowFunc).toHaveBeenCalledWith(url);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('Explore reducer', () => {
|
|
describe('split view', () => {
|
|
describe('split close', () => {
|
|
it('should keep right pane as left when left is closed', () => {
|
|
const leftItemMock = ({
|
|
containerWidth: 100,
|
|
} as unknown) as ExploreItemState;
|
|
|
|
const rightItemMock = ({
|
|
containerWidth: 200,
|
|
} as unknown) as ExploreItemState;
|
|
|
|
const initialState = ({
|
|
left: leftItemMock,
|
|
right: rightItemMock,
|
|
} as unknown) as ExploreState;
|
|
|
|
// closing left item
|
|
reducerTester<ExploreState>()
|
|
.givenReducer(exploreReducer, initialState)
|
|
.whenActionIsDispatched(splitCloseAction({ itemId: ExploreId.left }))
|
|
.thenStateShouldEqual(({
|
|
left: rightItemMock,
|
|
right: undefined,
|
|
} as unknown) as ExploreState);
|
|
});
|
|
it('should reset right pane when it is closed ', () => {
|
|
const leftItemMock = ({
|
|
containerWidth: 100,
|
|
} as unknown) as ExploreItemState;
|
|
|
|
const rightItemMock = ({
|
|
containerWidth: 200,
|
|
} as unknown) as ExploreItemState;
|
|
|
|
const initialState = ({
|
|
left: leftItemMock,
|
|
right: rightItemMock,
|
|
} as unknown) as ExploreState;
|
|
|
|
// closing left item
|
|
reducerTester<ExploreState>()
|
|
.givenReducer(exploreReducer, initialState)
|
|
.whenActionIsDispatched(splitCloseAction({ itemId: ExploreId.right }))
|
|
.thenStateShouldEqual(({
|
|
left: leftItemMock,
|
|
right: undefined,
|
|
} as unknown) as ExploreState);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
export const setup = (urlStateOverrides?: any) => {
|
|
const urlStateDefaults: ExploreUrlState = {
|
|
datasource: 'some-datasource',
|
|
queries: [],
|
|
range: {
|
|
from: '',
|
|
to: '',
|
|
},
|
|
};
|
|
const urlState: ExploreUrlState = { ...urlStateDefaults, ...urlStateOverrides };
|
|
const serializedUrlState = serializeStateToUrlParam(urlState);
|
|
const initialState = ({
|
|
split: false,
|
|
} as unknown) as ExploreState;
|
|
|
|
return {
|
|
initialState,
|
|
serializedUrlState,
|
|
};
|
|
};
|