mirror of
https://github.com/grafana/grafana.git
synced 2025-07-31 15:42:55 +08:00

* Chore: reduces misc reducerTester strict issues * Chore: fixes various strict errors in reducer tests for ElasticSearch * Chore: lowers errors in AzureMonitor DataSource tests
115 lines
3.2 KiB
TypeScript
115 lines
3.2 KiB
TypeScript
import { Action } from 'redux';
|
|
import { AnyAction } from '@reduxjs/toolkit';
|
|
import { cloneDeep } from 'lodash';
|
|
|
|
type GrafanaReducer<S = any, A extends Action = AnyAction> = (state: S, action: A) => S;
|
|
|
|
export interface Given<State> {
|
|
givenReducer: (
|
|
reducer: GrafanaReducer<State, AnyAction>,
|
|
state: State,
|
|
showDebugOutput?: boolean,
|
|
disableDeepFreeze?: boolean
|
|
) => When<State>;
|
|
}
|
|
|
|
export interface When<State> {
|
|
whenActionIsDispatched: (action: AnyAction) => Then<State>;
|
|
}
|
|
|
|
export interface Then<State> {
|
|
thenStateShouldEqual: (state: State) => When<State>;
|
|
thenStatePredicateShouldEqual: (predicate: (resultingState: State) => boolean) => When<State>;
|
|
whenActionIsDispatched: (action: AnyAction) => Then<State>;
|
|
}
|
|
|
|
interface ObjectType extends Object {
|
|
[key: string]: any;
|
|
}
|
|
|
|
export const deepFreeze = <T>(obj: T): T => {
|
|
Object.freeze(obj);
|
|
|
|
const isNotException = (object: any, propertyName: any) =>
|
|
typeof object === 'function'
|
|
? propertyName !== 'caller' && propertyName !== 'callee' && propertyName !== 'arguments'
|
|
: true;
|
|
const hasOwnProp = Object.prototype.hasOwnProperty;
|
|
|
|
if (obj && obj instanceof Object) {
|
|
const object: ObjectType = obj;
|
|
Object.getOwnPropertyNames(object).forEach((propertyName) => {
|
|
const objectProperty: any = object[propertyName];
|
|
if (
|
|
hasOwnProp.call(object, propertyName) &&
|
|
isNotException(object, propertyName) &&
|
|
objectProperty &&
|
|
(typeof objectProperty === 'object' || typeof objectProperty === 'function') &&
|
|
Object.isFrozen(objectProperty) === false
|
|
) {
|
|
deepFreeze(objectProperty);
|
|
}
|
|
});
|
|
}
|
|
|
|
return obj;
|
|
};
|
|
|
|
interface ReducerTester<State> extends Given<State>, When<State>, Then<State> {}
|
|
|
|
export const reducerTester = <State>(): Given<State> => {
|
|
let reducerUnderTest: GrafanaReducer<State, AnyAction>;
|
|
let resultingState: State;
|
|
let initialState: State;
|
|
let showDebugOutput = false;
|
|
|
|
const givenReducer = (
|
|
reducer: GrafanaReducer<State, AnyAction>,
|
|
state: State,
|
|
debug = false,
|
|
disableDeepFreeze = false
|
|
): When<State> => {
|
|
reducerUnderTest = reducer;
|
|
initialState = cloneDeep(state);
|
|
if (!disableDeepFreeze && (typeof state === 'object' || typeof state === 'function')) {
|
|
deepFreeze(initialState);
|
|
}
|
|
showDebugOutput = debug;
|
|
|
|
return instance;
|
|
};
|
|
|
|
const whenActionIsDispatched = (action: AnyAction): Then<State> => {
|
|
resultingState = reducerUnderTest(resultingState || initialState, action);
|
|
|
|
return instance;
|
|
};
|
|
|
|
const thenStateShouldEqual = (state: State): When<State> => {
|
|
if (showDebugOutput) {
|
|
console.log(JSON.stringify(resultingState, null, 2));
|
|
}
|
|
expect(resultingState).toEqual(state);
|
|
|
|
return instance;
|
|
};
|
|
|
|
const thenStatePredicateShouldEqual = (predicate: (resultingState: State) => boolean): When<State> => {
|
|
if (showDebugOutput) {
|
|
console.log(JSON.stringify(resultingState, null, 2));
|
|
}
|
|
expect(predicate(resultingState)).toBe(true);
|
|
|
|
return instance;
|
|
};
|
|
|
|
const instance: ReducerTester<State> = {
|
|
thenStateShouldEqual,
|
|
thenStatePredicateShouldEqual,
|
|
givenReducer,
|
|
whenActionIsDispatched,
|
|
};
|
|
|
|
return instance;
|
|
};
|