mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -06:00
* Variables: turns on newVariables as default * Chore: adds default templating state * Some small refactorings to get the template_srv tests to get green when toggle is enabled by default. * Refactor: adds getVariables dependency to DashboardModel * Tests: fixes StackDriver tests * Tests: updates snapshots * Tests: updates snapshot for DashboardGrid.test.tsx * Tests: fixes DashboardModel.test.ts * fixed initDashboard tests. * renamed variable. * changed so we use the templating.list when running the migration work. * changed so we always returns the variables in sorted order. * Tests: fixed cloudwatch tests * added so we set the global template variable props. * Fixed tests and added moved logic to complete templateSrv variables. * removed unneccesary updateIndex. Co-authored-by: Marcus Andersson <marcus.andersson@grafana.com>
181 lines
7.0 KiB
TypeScript
181 lines
7.0 KiB
TypeScript
import { reduxTester } from '../../../../test/core/redux/reduxTester';
|
|
import { TemplatingState } from '../state/reducers';
|
|
import { getRootReducer } from '../state/helpers';
|
|
import { toVariableIdentifier, toVariablePayload } from '../state/types';
|
|
import { variableAdapters } from '../adapters';
|
|
import { createDataSourceVariableAdapter } from './adapter';
|
|
import {
|
|
DataSourceVariableActionDependencies,
|
|
initDataSourceVariableEditor,
|
|
updateDataSourceVariableOptions,
|
|
} from './actions';
|
|
import { DataSourcePluginMeta, DataSourceSelectItem } from '@grafana/data';
|
|
import { getMockPlugin } from '../../plugins/__mocks__/pluginMocks';
|
|
import { createDataSourceOptions } from './reducer';
|
|
import { setCurrentVariableValue, addVariable } from '../state/sharedReducer';
|
|
import { changeVariableEditorExtended } from '../editor/reducer';
|
|
import { datasourceBuilder } from '../shared/testing/builders';
|
|
|
|
describe('data source actions', () => {
|
|
variableAdapters.setInit(() => [createDataSourceVariableAdapter()]);
|
|
|
|
describe('when updateDataSourceVariableOptions is dispatched', () => {
|
|
describe('and there is no regex', () => {
|
|
it('then the correct actions are dispatched', async () => {
|
|
const sources: DataSourceSelectItem[] = [
|
|
{
|
|
name: 'first-name',
|
|
value: 'first-value',
|
|
meta: getMockPlugin({ name: 'mock-data-name', id: 'mock-data-id' }),
|
|
sort: '',
|
|
},
|
|
{
|
|
name: 'second-name',
|
|
value: 'second-value',
|
|
meta: getMockPlugin({ name: 'mock-data-name', id: 'mock-data-id' }),
|
|
sort: '',
|
|
},
|
|
];
|
|
|
|
const getMetricSourcesMock = jest.fn().mockResolvedValue(sources);
|
|
const getDatasourceSrvMock = jest.fn().mockReturnValue({ getMetricSources: getMetricSourcesMock });
|
|
const dependencies: DataSourceVariableActionDependencies = { getDatasourceSrv: getDatasourceSrvMock };
|
|
const datasource = datasourceBuilder()
|
|
.withId('0')
|
|
.withQuery('mock-data-id')
|
|
.build();
|
|
|
|
const tester = await reduxTester<{ templating: TemplatingState }>()
|
|
.givenRootReducer(getRootReducer())
|
|
.whenActionIsDispatched(
|
|
addVariable(toVariablePayload(datasource, { global: false, index: 0, model: datasource }))
|
|
)
|
|
.whenAsyncActionIsDispatched(
|
|
updateDataSourceVariableOptions(toVariableIdentifier(datasource), dependencies),
|
|
true
|
|
);
|
|
|
|
await tester.thenDispatchedActionsShouldEqual(
|
|
createDataSourceOptions(
|
|
toVariablePayload({ type: 'datasource', id: '0' }, { sources, regex: (undefined as unknown) as RegExp })
|
|
),
|
|
setCurrentVariableValue(
|
|
toVariablePayload(
|
|
{ type: 'datasource', id: '0' },
|
|
{ option: { text: 'first-name', value: 'first-name', selected: false } }
|
|
)
|
|
)
|
|
);
|
|
|
|
expect(getMetricSourcesMock).toHaveBeenCalledTimes(1);
|
|
expect(getMetricSourcesMock).toHaveBeenCalledWith({ skipVariables: true });
|
|
expect(getDatasourceSrvMock).toHaveBeenCalledTimes(1);
|
|
});
|
|
});
|
|
|
|
describe('and there is a regex', () => {
|
|
it('then the correct actions are dispatched', async () => {
|
|
const sources: DataSourceSelectItem[] = [
|
|
{
|
|
name: 'first-name',
|
|
value: 'first-value',
|
|
meta: getMockPlugin({ name: 'mock-data-name', id: 'mock-data-id' }),
|
|
sort: '',
|
|
},
|
|
{
|
|
name: 'second-name',
|
|
value: 'second-value',
|
|
meta: getMockPlugin({ name: 'mock-data-name', id: 'mock-data-id' }),
|
|
sort: '',
|
|
},
|
|
];
|
|
|
|
const getMetricSourcesMock = jest.fn().mockResolvedValue(sources);
|
|
const getDatasourceSrvMock = jest.fn().mockReturnValue({ getMetricSources: getMetricSourcesMock });
|
|
const dependencies: DataSourceVariableActionDependencies = { getDatasourceSrv: getDatasourceSrvMock };
|
|
const datasource = datasourceBuilder()
|
|
.withId('0')
|
|
.withQuery('mock-data-id')
|
|
.withRegEx('/.*(second-name).*/')
|
|
.build();
|
|
const tester = await reduxTester<{ templating: TemplatingState }>()
|
|
.givenRootReducer(getRootReducer())
|
|
.whenActionIsDispatched(
|
|
addVariable(toVariablePayload(datasource, { global: false, index: 0, model: datasource }))
|
|
)
|
|
.whenAsyncActionIsDispatched(
|
|
updateDataSourceVariableOptions(toVariableIdentifier(datasource), dependencies),
|
|
true
|
|
);
|
|
|
|
await tester.thenDispatchedActionsShouldEqual(
|
|
createDataSourceOptions(
|
|
toVariablePayload({ type: 'datasource', id: '0' }, { sources, regex: /.*(second-name).*/ })
|
|
),
|
|
setCurrentVariableValue(
|
|
toVariablePayload(
|
|
{ type: 'datasource', id: '0' },
|
|
{ option: { text: 'second-name', value: 'second-name', selected: false } }
|
|
)
|
|
)
|
|
);
|
|
|
|
expect(getMetricSourcesMock).toHaveBeenCalledTimes(1);
|
|
expect(getMetricSourcesMock).toHaveBeenCalledWith({ skipVariables: true });
|
|
expect(getDatasourceSrvMock).toHaveBeenCalledTimes(1);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('when initDataSourceVariableEditor is dispatched', () => {
|
|
it('then the correct actions are dispatched', async () => {
|
|
const sources: DataSourceSelectItem[] = [
|
|
{
|
|
name: 'first-name',
|
|
value: 'first-value',
|
|
meta: getMockPlugin({ name: 'mock-data-name', id: 'mock-data-id' }),
|
|
sort: '',
|
|
},
|
|
{
|
|
name: 'second-name',
|
|
value: 'second-value',
|
|
meta: getMockPlugin({ name: 'mock-data-name', id: 'mock-data-id' }),
|
|
sort: '',
|
|
},
|
|
{
|
|
name: 'mixed-name',
|
|
value: 'mixed-value',
|
|
meta: getMockPlugin(({
|
|
name: 'mixed-data-name',
|
|
id: 'mixed-data-id',
|
|
mixed: true,
|
|
} as unknown) as DataSourcePluginMeta),
|
|
sort: '',
|
|
},
|
|
];
|
|
|
|
const getMetricSourcesMock = jest.fn().mockResolvedValue(sources);
|
|
const getDatasourceSrvMock = jest.fn().mockReturnValue({ getMetricSources: getMetricSourcesMock });
|
|
const dependencies: DataSourceVariableActionDependencies = { getDatasourceSrv: getDatasourceSrvMock };
|
|
|
|
const tester = await reduxTester<{ templating: TemplatingState }>()
|
|
.givenRootReducer(getRootReducer())
|
|
.whenAsyncActionIsDispatched(initDataSourceVariableEditor(dependencies));
|
|
|
|
await tester.thenDispatchedActionsShouldEqual(
|
|
changeVariableEditorExtended({
|
|
propName: 'dataSourceTypes',
|
|
propValue: [
|
|
{ text: '', value: '' },
|
|
{ text: 'mock-data-name', value: 'mock-data-id' },
|
|
],
|
|
})
|
|
);
|
|
|
|
expect(getMetricSourcesMock).toHaveBeenCalledTimes(1);
|
|
expect(getMetricSourcesMock).toHaveBeenCalledWith();
|
|
expect(getDatasourceSrvMock).toHaveBeenCalledTimes(1);
|
|
});
|
|
});
|
|
});
|