Skip to content

Commit

Permalink
refactor(superset-ui-core): Migrate FallbackComponent.test to RTL (#2…
Browse files Browse the repository at this point in the history
  • Loading branch information
rtexelm authored May 7, 2024
1 parent c618767 commit f04b4e8
Showing 1 changed file with 34 additions and 32 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,42 +18,44 @@
*/

import React from 'react';
import { shallow } from 'enzyme';
import { render } from '@testing-library/react';
import '@testing-library/jest-dom';
import { FallbackProps } from 'react-error-boundary';
import { ThemeProvider, supersetTheme } from '../../../src/style';

import FallbackComponent from '../../../src/chart/components/FallbackComponent';

describe('FallbackComponent', () => {
const ERROR = new Error('CaffeineOverLoadException');
const STACK_TRACE = 'Error at line 1: x.drink(coffee)';

it('renders error and stack trace', () => {
const wrapper = shallow(
<FallbackComponent componentStack={STACK_TRACE} error={ERROR} />,
);
const messages = wrapper.find('code');
expect(messages).toHaveLength(2);
expect(messages.at(0).text()).toEqual('Error: CaffeineOverLoadException');
expect(messages.at(1).text()).toEqual('Error at line 1: x.drink(coffee)');
});
const renderWithTheme = (props: FallbackProps) =>
render(
<ThemeProvider theme={supersetTheme}>
<FallbackComponent {...props} />
</ThemeProvider>,
);

it('renders error only', () => {
const wrapper = shallow(<FallbackComponent error={ERROR} />);
const messages = wrapper.find('code');
expect(messages).toHaveLength(1);
expect(messages.at(0).text()).toEqual('Error: CaffeineOverLoadException');
});
const ERROR = new Error('CaffeineOverLoadException');
const STACK_TRACE = 'Error at line 1: x.drink(coffee)';

it('renders stacktrace only', () => {
const wrapper = shallow(<FallbackComponent componentStack={STACK_TRACE} />);
const messages = wrapper.find('code');
expect(messages).toHaveLength(2);
expect(messages.at(0).text()).toEqual('Unknown Error');
expect(messages.at(1).text()).toEqual('Error at line 1: x.drink(coffee)');
test('renders error and stack trace', () => {
const { getByText } = renderWithTheme({
componentStack: STACK_TRACE,
error: ERROR,
});
expect(getByText('Error: CaffeineOverLoadException')).toBeInTheDocument();
expect(getByText('Error at line 1: x.drink(coffee)')).toBeInTheDocument();
});

it('renders when nothing is given', () => {
const wrapper = shallow(<FallbackComponent />);
const messages = wrapper.find('code');
expect(messages).toHaveLength(1);
expect(messages.at(0).text()).toEqual('Unknown Error');
});
test('renders error only', () => {
const { getByText } = renderWithTheme({ error: ERROR });
expect(getByText('Error: CaffeineOverLoadException')).toBeInTheDocument();
});

test('renders stacktrace only', () => {
const { getByText } = renderWithTheme({ componentStack: STACK_TRACE });
expect(getByText('Unknown Error')).toBeInTheDocument();
expect(getByText('Error at line 1: x.drink(coffee)')).toBeInTheDocument();
});

test('renders when nothing is given', () => {
const { getByText } = renderWithTheme({});
expect(getByText('Unknown Error')).toBeInTheDocument();
});

0 comments on commit f04b4e8

Please sign in to comment.