grafana/public/app/features/explore/ResponseErrorContainer.test.tsx
Josh Hunt 3c6e0e8ef8
Chore: ESlint import order (#44959)
* Add and configure eslint-plugin-import

* Fix the lint:ts npm command

* Autofix + prettier all the files

* Manually fix remaining files

* Move jquery code in jest-setup to external file to safely reorder imports

* Resolve issue caused by circular dependencies within Prometheus

* Update .betterer.results

* Fix missing // @ts-ignore

* ignore iconBundle.ts

* Fix missing // @ts-ignore
2022-04-22 14:33:13 +01:00

69 lines
2.0 KiB
TypeScript

import { render, screen } from '@testing-library/react';
import React from 'react';
import { Provider } from 'react-redux';
import { DataQueryError, LoadingState } from '@grafana/data';
import { selectors } from '@grafana/e2e-selectors';
import { configureStore } from '../../store/configureStore';
import { ExploreId } from '../../types';
import { ResponseErrorContainer } from './ResponseErrorContainer';
describe('ResponseErrorContainer', () => {
it('shows error message if it does not contain refId', async () => {
const errorMessage = 'test error';
setup({
message: errorMessage,
});
const errorEl = screen.getByTestId(selectors.components.Alert.alertV2('error'));
expect(errorEl).toBeInTheDocument();
expect(errorEl).toHaveTextContent(errorMessage);
});
it('do not show error if there is a refId', async () => {
const errorMessage = 'test error';
setup({
refId: 'someId',
message: errorMessage,
});
const errorEl = screen.queryByTestId(selectors.components.Alert.alertV2('error'));
expect(errorEl).not.toBeInTheDocument();
});
it('shows error.data.message if error.message does not exist', async () => {
const errorMessage = 'test error';
setup({
data: {
message: 'test error',
},
});
const errorEl = screen.getByTestId(selectors.components.Alert.alertV2('error'));
expect(errorEl).toBeInTheDocument();
expect(errorEl).toHaveTextContent(errorMessage);
});
});
function setup(error: DataQueryError) {
const store = configureStore();
store.getState().explore[ExploreId.left].queryResponse = {
timeRange: {} as any,
series: [],
state: LoadingState.Error,
error,
graphFrames: [],
logsFrames: [],
tableFrames: [],
traceFrames: [],
nodeGraphFrames: [],
graphResult: null,
logsResult: null,
tableResult: null,
};
render(
<Provider store={store}>
<ResponseErrorContainer exploreId={ExploreId.left} />
</Provider>
);
}