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.
48 lines
1.8 KiB
48 lines
1.8 KiB
import { variableAdapters } from '../adapters';
|
|
import { createConstantVariableAdapter } from './adapter';
|
|
import { reduxTester } from '../../../../test/core/redux/reduxTester';
|
|
import { updateConstantVariableOptions } from './actions';
|
|
import { getRootReducer, RootReducerType } from '../state/helpers';
|
|
import { ConstantVariableModel, initialVariableModelState, VariableOption } from '../types';
|
|
import { toVariablePayload } from '../state/types';
|
|
import { createConstantOptionsFromQuery } from './reducer';
|
|
import { addVariable, setCurrentVariableValue } from '../state/sharedReducer';
|
|
|
|
describe('constant actions', () => {
|
|
variableAdapters.setInit(() => [createConstantVariableAdapter()]);
|
|
|
|
describe('when updateConstantVariableOptions is dispatched', () => {
|
|
it('then correct actions are dispatched', async () => {
|
|
const option: VariableOption = {
|
|
value: 'A',
|
|
text: 'A',
|
|
selected: false,
|
|
};
|
|
|
|
const variable: ConstantVariableModel = {
|
|
...initialVariableModelState,
|
|
id: '0',
|
|
index: 0,
|
|
type: 'constant',
|
|
name: 'Constant',
|
|
current: {
|
|
value: '',
|
|
text: '',
|
|
selected: false,
|
|
},
|
|
options: [],
|
|
query: 'A',
|
|
};
|
|
|
|
const tester = await reduxTester<RootReducerType>()
|
|
.givenRootReducer(getRootReducer())
|
|
.whenActionIsDispatched(addVariable(toVariablePayload(variable, { global: false, index: 0, model: variable })))
|
|
.whenAsyncActionIsDispatched(updateConstantVariableOptions(toVariablePayload(variable)), true);
|
|
|
|
tester.thenDispatchedActionsShouldEqual(
|
|
createConstantOptionsFromQuery(toVariablePayload(variable)),
|
|
setCurrentVariableValue(toVariablePayload(variable, { option }))
|
|
);
|
|
});
|
|
});
|
|
});
|
|
|