forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
190 lines
9.6 KiB
190 lines
9.6 KiB
import { getRootReducer, RootReducerType } from './helpers';
|
|
import { variableAdapters } from '../adapters';
|
|
import { createQueryVariableAdapter } from '../query/adapter';
|
|
import { createConstantVariableAdapter } from '../constant/adapter';
|
|
import { reduxTester } from '../../../../test/core/redux/reduxTester';
|
|
import {
|
|
addVariable,
|
|
changeVariableProp,
|
|
setCurrentVariableValue,
|
|
variableStateCompleted,
|
|
variableStateFetching,
|
|
variableStateNotStarted,
|
|
} from './sharedReducer';
|
|
import { toVariablePayload } from './types';
|
|
import { adHocBuilder, constantBuilder, datasourceBuilder, queryBuilder } from '../shared/testing/builders';
|
|
import { cleanEditorState, initialVariableEditorState } from '../editor/reducer';
|
|
import {
|
|
TransactionStatus,
|
|
variablesClearTransaction,
|
|
variablesCompleteTransaction,
|
|
variablesInitTransaction,
|
|
} from './transactionReducer';
|
|
import { cleanPickerState, initialState } from '../pickers/OptionsPicker/reducer';
|
|
import { cleanVariables } from './variablesReducer';
|
|
import { createAdHocVariableAdapter } from '../adhoc/adapter';
|
|
import { createDataSourceVariableAdapter } from '../datasource/adapter';
|
|
import { DataSourceRef, LoadingState } from '@grafana/data/src';
|
|
import { setDataSourceSrv } from '@grafana/runtime/src';
|
|
import { VariableModel } from '../types';
|
|
import { toAsyncOfResult } from '../../query/state/DashboardQueryRunner/testHelpers';
|
|
import { setVariableQueryRunner } from '../query/VariableQueryRunner';
|
|
import { createDataSourceOptions } from '../datasource/reducer';
|
|
import { initVariablesTransaction } from './actions';
|
|
|
|
variableAdapters.setInit(() => [
|
|
createQueryVariableAdapter(),
|
|
createConstantVariableAdapter(),
|
|
createAdHocVariableAdapter(),
|
|
createDataSourceVariableAdapter(),
|
|
]);
|
|
|
|
function getTestContext(variables?: VariableModel[]) {
|
|
const uid = 'uid';
|
|
const constant = constantBuilder().withId('constant').withName('constant').build();
|
|
const templating = { list: variables ?? [constant] };
|
|
const getInstanceSettingsMock = jest.fn().mockReturnValue(undefined);
|
|
setDataSourceSrv({
|
|
get: jest.fn().mockResolvedValue({}),
|
|
getList: jest.fn().mockReturnValue([]),
|
|
getInstanceSettings: getInstanceSettingsMock,
|
|
});
|
|
const variableQueryRunner: any = {
|
|
cancelRequest: jest.fn(),
|
|
queueRequest: jest.fn(),
|
|
getResponse: () => toAsyncOfResult({ state: LoadingState.Done, identifier: { type: 'query', id: 'query' } }),
|
|
destroy: jest.fn(),
|
|
};
|
|
setVariableQueryRunner(variableQueryRunner);
|
|
|
|
const dashboard: any = { title: 'Some dash', uid, templating };
|
|
|
|
return { constant, getInstanceSettingsMock, templating, uid, dashboard };
|
|
}
|
|
|
|
describe('initVariablesTransaction', () => {
|
|
describe('when called and the previous dashboard has completed', () => {
|
|
it('then correct actions are dispatched', async () => {
|
|
const { constant, uid, dashboard } = getTestContext();
|
|
const tester = await reduxTester<RootReducerType>()
|
|
.givenRootReducer(getRootReducer())
|
|
.whenAsyncActionIsDispatched(initVariablesTransaction(uid, dashboard));
|
|
|
|
tester.thenDispatchedActionsPredicateShouldEqual((dispatchedActions) => {
|
|
expect(dispatchedActions[0]).toEqual(variablesInitTransaction({ uid }));
|
|
expect(dispatchedActions[1].type).toEqual(addVariable.type);
|
|
expect(dispatchedActions[1].payload.id).toEqual('__dashboard');
|
|
expect(dispatchedActions[2].type).toEqual(addVariable.type);
|
|
expect(dispatchedActions[2].payload.id).toEqual('__org');
|
|
expect(dispatchedActions[3].type).toEqual(addVariable.type);
|
|
expect(dispatchedActions[3].payload.id).toEqual('__user');
|
|
expect(dispatchedActions[4]).toEqual(
|
|
addVariable(toVariablePayload(constant, { global: false, index: 0, model: constant }))
|
|
);
|
|
expect(dispatchedActions[5]).toEqual(variableStateNotStarted(toVariablePayload(constant)));
|
|
expect(dispatchedActions[6]).toEqual(variableStateCompleted(toVariablePayload(constant)));
|
|
|
|
expect(dispatchedActions[7]).toEqual(variablesCompleteTransaction({ uid }));
|
|
return dispatchedActions.length === 8;
|
|
});
|
|
});
|
|
|
|
describe('and there are variables that have data source that need to be migrated', () => {
|
|
it('then correct actions are dispatched', async () => {
|
|
const legacyDs = ('${ds}' as unknown) as DataSourceRef;
|
|
const ds = datasourceBuilder().withId('ds').withName('ds').withQuery('prom').build();
|
|
const query = queryBuilder().withId('query').withName('query').withDatasource(legacyDs).build();
|
|
const adhoc = adHocBuilder().withId('adhoc').withName('adhoc').withDatasource(legacyDs).build();
|
|
const { uid, dashboard } = getTestContext([ds, query, adhoc]);
|
|
const tester = await reduxTester<RootReducerType>()
|
|
.givenRootReducer(getRootReducer())
|
|
.whenAsyncActionIsDispatched(initVariablesTransaction(uid, dashboard));
|
|
|
|
tester.thenDispatchedActionsPredicateShouldEqual((dispatchedActions) => {
|
|
expect(dispatchedActions[0]).toEqual(variablesInitTransaction({ uid }));
|
|
expect(dispatchedActions[1].type).toEqual(addVariable.type);
|
|
expect(dispatchedActions[1].payload.id).toEqual('__dashboard');
|
|
expect(dispatchedActions[2].type).toEqual(addVariable.type);
|
|
expect(dispatchedActions[2].payload.id).toEqual('__org');
|
|
expect(dispatchedActions[3].type).toEqual(addVariable.type);
|
|
expect(dispatchedActions[3].payload.id).toEqual('__user');
|
|
expect(dispatchedActions[4]).toEqual(
|
|
addVariable(toVariablePayload(ds, { global: false, index: 0, model: ds }))
|
|
);
|
|
expect(dispatchedActions[5]).toEqual(
|
|
addVariable(toVariablePayload(query, { global: false, index: 1, model: query }))
|
|
);
|
|
expect(dispatchedActions[6]).toEqual(
|
|
addVariable(toVariablePayload(adhoc, { global: false, index: 2, model: adhoc }))
|
|
);
|
|
expect(dispatchedActions[7]).toEqual(variableStateNotStarted(toVariablePayload(ds)));
|
|
expect(dispatchedActions[8]).toEqual(variableStateNotStarted(toVariablePayload(query)));
|
|
expect(dispatchedActions[9]).toEqual(variableStateNotStarted(toVariablePayload(adhoc)));
|
|
expect(dispatchedActions[10]).toEqual(
|
|
changeVariableProp(toVariablePayload(query, { propName: 'datasource', propValue: { uid: '${ds}' } }))
|
|
);
|
|
expect(dispatchedActions[11]).toEqual(
|
|
changeVariableProp(toVariablePayload(adhoc, { propName: 'datasource', propValue: { uid: '${ds}' } }))
|
|
);
|
|
expect(dispatchedActions[12]).toEqual(variableStateFetching(toVariablePayload(ds)));
|
|
expect(dispatchedActions[13]).toEqual(variableStateCompleted(toVariablePayload(adhoc)));
|
|
expect(dispatchedActions[14]).toEqual(
|
|
createDataSourceOptions(toVariablePayload(ds, { sources: [], regex: undefined }))
|
|
);
|
|
expect(dispatchedActions[15]).toEqual(
|
|
setCurrentVariableValue(
|
|
toVariablePayload(ds, { option: { selected: false, text: 'No data sources found', value: '' } })
|
|
)
|
|
);
|
|
expect(dispatchedActions[16]).toEqual(variableStateCompleted(toVariablePayload(ds)));
|
|
expect(dispatchedActions[17]).toEqual(variableStateFetching(toVariablePayload(query)));
|
|
expect(dispatchedActions[18]).toEqual(variableStateCompleted(toVariablePayload(query)));
|
|
expect(dispatchedActions[19]).toEqual(variablesCompleteTransaction({ uid }));
|
|
|
|
return dispatchedActions.length === 20;
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('when called and the previous dashboard is still processing variables', () => {
|
|
it('then correct actions are dispatched', async () => {
|
|
const { constant, uid, dashboard } = getTestContext();
|
|
const transactionState = { uid: 'previous-uid', status: TransactionStatus.Fetching };
|
|
|
|
const tester = await reduxTester<RootReducerType>({
|
|
preloadedState: ({
|
|
templating: {
|
|
transaction: transactionState,
|
|
variables: {},
|
|
optionsPicker: { ...initialState },
|
|
editor: { ...initialVariableEditorState },
|
|
},
|
|
} as unknown) as RootReducerType,
|
|
})
|
|
.givenRootReducer(getRootReducer())
|
|
.whenAsyncActionIsDispatched(initVariablesTransaction(uid, dashboard));
|
|
|
|
tester.thenDispatchedActionsPredicateShouldEqual((dispatchedActions) => {
|
|
expect(dispatchedActions[0]).toEqual(cleanVariables());
|
|
expect(dispatchedActions[1]).toEqual(cleanEditorState());
|
|
expect(dispatchedActions[2]).toEqual(cleanPickerState());
|
|
expect(dispatchedActions[3]).toEqual(variablesClearTransaction());
|
|
expect(dispatchedActions[4]).toEqual(variablesInitTransaction({ uid }));
|
|
expect(dispatchedActions[5].type).toEqual(addVariable.type);
|
|
expect(dispatchedActions[5].payload.id).toEqual('__dashboard');
|
|
expect(dispatchedActions[6].type).toEqual(addVariable.type);
|
|
expect(dispatchedActions[6].payload.id).toEqual('__org');
|
|
expect(dispatchedActions[7].type).toEqual(addVariable.type);
|
|
expect(dispatchedActions[7].payload.id).toEqual('__user');
|
|
expect(dispatchedActions[8]).toEqual(
|
|
addVariable(toVariablePayload(constant, { global: false, index: 0, model: constant }))
|
|
);
|
|
expect(dispatchedActions[9]).toEqual(variableStateNotStarted(toVariablePayload(constant)));
|
|
expect(dispatchedActions[10]).toEqual(variableStateCompleted(toVariablePayload(constant)));
|
|
expect(dispatchedActions[11]).toEqual(variablesCompleteTransaction({ uid }));
|
|
return dispatchedActions.length === 12;
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|