mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 10:03:33 -06:00
231 lines
8.8 KiB
TypeScript
231 lines
8.8 KiB
TypeScript
import { dateTime, TimeRange } from '@grafana/data';
|
|
|
|
import { reduxTester } from '../../../../test/core/redux/reduxTester';
|
|
import { silenceConsoleOutput } from '../../../../test/core/utils/silenceConsoleOutput';
|
|
import { appEvents } from '../../../core/core';
|
|
import { notifyApp } from '../../../core/reducers/appNotification';
|
|
import { DashboardState } from '../../../types';
|
|
import { DashboardModel } from '../../dashboard/state';
|
|
import { TemplateSrv } from '../../templating/template_srv';
|
|
import { variableAdapters } from '../adapters';
|
|
import { createConstantVariableAdapter } from '../constant/adapter';
|
|
import { createIntervalVariableAdapter } from '../interval/adapter';
|
|
import { createIntervalOptions } from '../interval/reducer';
|
|
import { constantBuilder, intervalBuilder } from '../shared/testing/builders';
|
|
import { VariableRefresh } from '../types';
|
|
import { toKeyedVariableIdentifier, toVariablePayload } from '../utils';
|
|
|
|
import { onTimeRangeUpdated, OnTimeRangeUpdatedDependencies, setOptionAsCurrent } from './actions';
|
|
import { getPreloadedState, getRootReducer, RootReducerType } from './helpers';
|
|
import { toKeyedAction } from './keyedVariablesReducer';
|
|
import {
|
|
setCurrentVariableValue,
|
|
variableStateCompleted,
|
|
variableStateFailed,
|
|
variableStateFetching,
|
|
} from './sharedReducer';
|
|
import { variablesInitTransaction } from './transactionReducer';
|
|
|
|
variableAdapters.setInit(() => [createIntervalVariableAdapter(), createConstantVariableAdapter()]);
|
|
|
|
const getTestContext = (dashboard: DashboardModel) => {
|
|
jest.clearAllMocks();
|
|
|
|
const key = 'key';
|
|
const interval = intervalBuilder()
|
|
.withId('interval-0')
|
|
.withRootStateKey(key)
|
|
.withName('interval-0')
|
|
.withOptions('1m', '10m', '30m', '1h', '6h', '12h', '1d', '7d', '14d', '30d')
|
|
.withCurrent('1m')
|
|
.withRefresh(VariableRefresh.onTimeRangeChanged)
|
|
.build();
|
|
|
|
const constant = constantBuilder()
|
|
.withId('constant-1')
|
|
.withRootStateKey(key)
|
|
.withName('constant-1')
|
|
.withOptions('a constant')
|
|
.withCurrent('a constant')
|
|
.build();
|
|
|
|
const range: TimeRange = {
|
|
from: dateTime(new Date().getTime()).subtract(1, 'minutes'),
|
|
to: dateTime(new Date().getTime()),
|
|
raw: {
|
|
from: 'now-1m',
|
|
to: 'now',
|
|
},
|
|
};
|
|
const updateTimeRangeMock = jest.fn();
|
|
const templateSrvMock = { updateTimeRange: updateTimeRangeMock } as unknown as TemplateSrv;
|
|
const dependencies: OnTimeRangeUpdatedDependencies = { templateSrv: templateSrvMock, events: appEvents };
|
|
const templateVariableValueUpdatedMock = jest.fn();
|
|
const startRefreshMock = jest.fn();
|
|
dashboard.templateVariableValueUpdated = templateVariableValueUpdatedMock;
|
|
dashboard.startRefresh = startRefreshMock;
|
|
const dashboardState = {
|
|
getModel: () => dashboard,
|
|
} as unknown as DashboardState;
|
|
const adapter = variableAdapters.get('interval');
|
|
const templatingState = {
|
|
variables: {
|
|
'interval-0': { ...interval },
|
|
'constant-1': { ...constant },
|
|
},
|
|
};
|
|
const preloadedState = {
|
|
dashboard: dashboardState,
|
|
...getPreloadedState(key, templatingState),
|
|
} as unknown as RootReducerType;
|
|
|
|
return {
|
|
key,
|
|
interval,
|
|
range,
|
|
dependencies,
|
|
adapter,
|
|
preloadedState,
|
|
updateTimeRangeMock,
|
|
templateVariableValueUpdatedMock,
|
|
startRefreshMock,
|
|
};
|
|
};
|
|
|
|
describe('when onTimeRangeUpdated is dispatched', () => {
|
|
describe('and options are changed by update', () => {
|
|
it('then correct actions are dispatched and correct dependencies are called', async () => {
|
|
const {
|
|
key,
|
|
preloadedState,
|
|
range,
|
|
dependencies,
|
|
updateTimeRangeMock,
|
|
templateVariableValueUpdatedMock,
|
|
startRefreshMock,
|
|
} = getTestContext(getDashboardModel());
|
|
|
|
const tester = await reduxTester<RootReducerType>({ preloadedState })
|
|
.givenRootReducer(getRootReducer())
|
|
.whenActionIsDispatched(toKeyedAction(key, variablesInitTransaction({ uid: key })))
|
|
.whenAsyncActionIsDispatched(onTimeRangeUpdated(key, range, dependencies));
|
|
|
|
tester.thenDispatchedActionsShouldEqual(
|
|
toKeyedAction(key, variablesInitTransaction({ uid: key })),
|
|
toKeyedAction(key, variableStateFetching(toVariablePayload({ type: 'interval', id: 'interval-0' }))),
|
|
toKeyedAction(key, createIntervalOptions(toVariablePayload({ type: 'interval', id: 'interval-0' }))),
|
|
toKeyedAction(
|
|
key,
|
|
setCurrentVariableValue(
|
|
toVariablePayload(
|
|
{ type: 'interval', id: 'interval-0' },
|
|
{ option: { text: '1m', value: '1m', selected: false } }
|
|
)
|
|
)
|
|
),
|
|
toKeyedAction(key, variableStateCompleted(toVariablePayload({ type: 'interval', id: 'interval-0' })))
|
|
);
|
|
|
|
expect(updateTimeRangeMock).toHaveBeenCalledTimes(1);
|
|
expect(updateTimeRangeMock).toHaveBeenCalledWith(range);
|
|
expect(templateVariableValueUpdatedMock).toHaveBeenCalledTimes(1);
|
|
expect(startRefreshMock).toHaveBeenCalledTimes(1);
|
|
});
|
|
});
|
|
|
|
describe('and options are not changed by update', () => {
|
|
it('then correct actions are dispatched and correct dependencies are called', async () => {
|
|
const {
|
|
key,
|
|
interval,
|
|
preloadedState,
|
|
range,
|
|
dependencies,
|
|
updateTimeRangeMock,
|
|
templateVariableValueUpdatedMock,
|
|
startRefreshMock,
|
|
} = getTestContext(getDashboardModel());
|
|
|
|
const base = await reduxTester<RootReducerType>({ preloadedState })
|
|
.givenRootReducer(getRootReducer())
|
|
.whenActionIsDispatched(toKeyedAction(key, variablesInitTransaction({ uid: key })))
|
|
.whenAsyncActionIsDispatched(
|
|
setOptionAsCurrent(toKeyedVariableIdentifier(interval), interval.options[0], false)
|
|
);
|
|
|
|
const tester = await base.whenAsyncActionIsDispatched(onTimeRangeUpdated(key, range, dependencies), true);
|
|
|
|
tester.thenDispatchedActionsShouldEqual(
|
|
toKeyedAction(key, variableStateFetching(toVariablePayload({ type: 'interval', id: 'interval-0' }))),
|
|
toKeyedAction(key, createIntervalOptions(toVariablePayload({ type: 'interval', id: 'interval-0' }))),
|
|
toKeyedAction(
|
|
key,
|
|
setCurrentVariableValue(
|
|
toVariablePayload(
|
|
{ type: 'interval', id: 'interval-0' },
|
|
{ option: { text: '1m', value: '1m', selected: false } }
|
|
)
|
|
)
|
|
),
|
|
toKeyedAction(key, variableStateCompleted(toVariablePayload({ type: 'interval', id: 'interval-0' })))
|
|
);
|
|
|
|
expect(updateTimeRangeMock).toHaveBeenCalledTimes(1);
|
|
expect(updateTimeRangeMock).toHaveBeenCalledWith(range);
|
|
expect(templateVariableValueUpdatedMock).toHaveBeenCalledTimes(0);
|
|
expect(startRefreshMock).toHaveBeenCalledTimes(1);
|
|
});
|
|
});
|
|
|
|
describe('and updateOptions throws', () => {
|
|
silenceConsoleOutput();
|
|
it('then correct actions are dispatched and correct dependencies are called', async () => {
|
|
const {
|
|
key,
|
|
adapter,
|
|
preloadedState,
|
|
range,
|
|
dependencies,
|
|
updateTimeRangeMock,
|
|
templateVariableValueUpdatedMock,
|
|
startRefreshMock,
|
|
} = getTestContext(getDashboardModel());
|
|
|
|
adapter.updateOptions = jest.fn().mockRejectedValue(new Error('Something broke'));
|
|
|
|
const tester = await reduxTester<RootReducerType>({ preloadedState, debug: true })
|
|
.givenRootReducer(getRootReducer())
|
|
.whenActionIsDispatched(toKeyedAction(key, variablesInitTransaction({ uid: key })))
|
|
.whenAsyncActionIsDispatched(onTimeRangeUpdated(key, range, dependencies), true);
|
|
|
|
tester.thenDispatchedActionsPredicateShouldEqual((dispatchedActions) => {
|
|
expect(dispatchedActions[0]).toEqual(
|
|
toKeyedAction(key, variableStateFetching(toVariablePayload({ type: 'interval', id: 'interval-0' })))
|
|
);
|
|
expect(dispatchedActions[1]).toEqual(
|
|
toKeyedAction(
|
|
key,
|
|
variableStateFailed(
|
|
toVariablePayload({ type: 'interval', id: 'interval-0' }, { error: new Error('Something broke') })
|
|
)
|
|
)
|
|
);
|
|
expect(dispatchedActions[2].type).toEqual(notifyApp.type);
|
|
expect(dispatchedActions[2].payload.title).toEqual('Templating');
|
|
expect(dispatchedActions[2].payload.text).toEqual('Template variable service failed Something broke');
|
|
expect(dispatchedActions[2].payload.severity).toEqual('error');
|
|
return dispatchedActions.length === 3;
|
|
});
|
|
|
|
expect(updateTimeRangeMock).toHaveBeenCalledTimes(1);
|
|
expect(updateTimeRangeMock).toHaveBeenCalledWith(range);
|
|
expect(templateVariableValueUpdatedMock).toHaveBeenCalledTimes(0);
|
|
expect(startRefreshMock).toHaveBeenCalledTimes(0);
|
|
});
|
|
});
|
|
});
|
|
|
|
function getDashboardModel(): DashboardModel {
|
|
return new DashboardModel({ schemaVersion: 9999 }); // ignore any schema migrations
|
|
}
|