mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
07abc53cce
* BannerBase to TS * snapshot updates * more snapshot updates * addressing type definition error * updating eth-sign-modal snapshot * Updates to stories, types and adding data-testid * Updating snapshots * updating snapshot of blockaid-banner-alert and adding unit test for childrenWrapperProps * BannerBase updates to stories, adding locale for close button, removing static data-testid in favor of using it at the instance, updating snapshots associated with those changes * Removing incorrect arg from storybook file * Updating html element in security provider e2e test to match BannerBase. Also updating snapshot of ConfirmTransaction page * Fixing e2e tests --------- Co-authored-by: georgewrmarshall <george.marshall@consensys.net>
122 lines
3.8 KiB
JavaScript
122 lines
3.8 KiB
JavaScript
/* eslint-disable jest/require-top-level-describe */
|
|
import { render } from '@testing-library/react';
|
|
import React from 'react';
|
|
|
|
import { renderWithUserEvent } from '../../../../test/lib/render-helpers';
|
|
|
|
import { BannerAlert, BANNER_ALERT_SEVERITIES } from '.';
|
|
|
|
describe('BannerAlert', () => {
|
|
it('should render BannerAlert element correctly', () => {
|
|
const { getByTestId, container } = render(
|
|
<BannerAlert data-testid="bannerAlert" title="BannerAlert test">
|
|
should render BannerAlert element correctly
|
|
</BannerAlert>,
|
|
);
|
|
expect(getByTestId('bannerAlert')).toHaveClass('mm-banner-alert');
|
|
expect(container).toMatchSnapshot();
|
|
});
|
|
|
|
it('should render with added classname', () => {
|
|
const { getByTestId } = render(
|
|
<BannerAlert
|
|
className="mm-banner-alert--test"
|
|
data-testid="bannerAlert"
|
|
title="BannerAlert test"
|
|
>
|
|
should render BannerAlert element correctly
|
|
</BannerAlert>,
|
|
);
|
|
expect(getByTestId('bannerAlert')).toHaveClass('mm-banner-alert--test');
|
|
});
|
|
|
|
it('should render with different severity classnames', () => {
|
|
const { getByTestId } = render(
|
|
<>
|
|
<BannerAlert data-testid="info" title="Info">
|
|
This is a demo of severity Info.
|
|
</BannerAlert>
|
|
<BannerAlert
|
|
data-testid="warning"
|
|
severity={BANNER_ALERT_SEVERITIES.WARNING}
|
|
title="Warning"
|
|
>
|
|
This is a demo of severity Warning.
|
|
</BannerAlert>
|
|
<BannerAlert
|
|
data-testid="danger"
|
|
severity={BANNER_ALERT_SEVERITIES.DANGER}
|
|
title="Danger"
|
|
>
|
|
This is a demo of severity Danger.
|
|
</BannerAlert>
|
|
<BannerAlert
|
|
data-testid="success"
|
|
severity={BANNER_ALERT_SEVERITIES.SUCCESS}
|
|
title="Success"
|
|
>
|
|
This is a demo of severity Success.
|
|
</BannerAlert>
|
|
</>,
|
|
);
|
|
expect(getByTestId('info')).toHaveClass('mm-banner-alert--severity-info');
|
|
expect(getByTestId('warning')).toHaveClass(
|
|
'mm-banner-alert--severity-warning',
|
|
);
|
|
expect(getByTestId('danger')).toHaveClass(
|
|
'mm-banner-alert--severity-danger',
|
|
);
|
|
expect(getByTestId('success')).toHaveClass(
|
|
'mm-banner-alert--severity-success',
|
|
);
|
|
});
|
|
|
|
it('should render BannerAlert title', () => {
|
|
const { getByText } = render(
|
|
<BannerAlert title="BannerAlert title test" />,
|
|
);
|
|
expect(getByText('BannerAlert title test')).toBeDefined();
|
|
});
|
|
|
|
it('should render BannerAlert description', () => {
|
|
const { getByText } = render(
|
|
<BannerAlert description="BannerAlert description test" />,
|
|
);
|
|
expect(getByText('BannerAlert description test')).toBeDefined();
|
|
});
|
|
|
|
it('should render BannerAlert action button', () => {
|
|
const { getByTestId } = render(
|
|
<BannerAlert
|
|
title="Action prop demo"
|
|
actionButtonLabel="Action"
|
|
actionButtonProps={{
|
|
'data-testid': 'action',
|
|
className: 'mm-banner-base__action',
|
|
}}
|
|
actionButtonOnClick={() =>
|
|
console.log('ButtonLink actionButtonOnClick demo')
|
|
}
|
|
>
|
|
Use actionButtonLabel for action text, actionButtonOnClick for the
|
|
onClick handler, and actionButtonProps to pass any ButtonLink prop types
|
|
such as iconName
|
|
</BannerAlert>,
|
|
);
|
|
expect(getByTestId('action')).toHaveClass('mm-banner-base__action');
|
|
});
|
|
|
|
it('should render and fire onClose event', async () => {
|
|
const onClose = jest.fn();
|
|
const { user, getByTestId } = renderWithUserEvent(
|
|
<BannerAlert
|
|
title="onClose Test"
|
|
closeButtonProps={{ 'data-testid': 'close-button' }}
|
|
onClose={onClose}
|
|
/>,
|
|
);
|
|
await user.click(getByTestId('close-button'));
|
|
expect(onClose).toHaveBeenCalledTimes(1);
|
|
});
|
|
});
|