mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 12:29:06 +01:00
057188d155
* Started adding code fences in signature-request * Finished code fencing * Improving code * Fixed storybook and code fences bundle * Added missing dependency * Fixed yarn.lock * Fixing policies * Updated package.json * updating lavamoat * lavamoat fix * adds missing package * runs yarn dedupe * updates method name * run lavamoat:auto again * Added more code fences * updates snapshot * snapshot updates * updates mmi packages to lighter versions * updates mmi packages * runs lavamoat auto * updates yarn lock and runs lavamoat auto * updates yarn lock * updates targets file * Removed console log and added tests --------- Co-authored-by: António Regadas <apregadas@gmail.com> Co-authored-by: Brad Decker <bhdecker84@gmail.com> Co-authored-by: Antonio Regadas <antonio.regadas@consensys.net>
119 lines
3.4 KiB
JavaScript
119 lines
3.4 KiB
JavaScript
import React from 'react';
|
|
import configureStore from 'redux-mock-store';
|
|
import { fireEvent } from '@testing-library/react';
|
|
import { renderWithProvider } from '../../../../test/lib/render-helpers';
|
|
import mockState from '../../../../test/data/mock-state.json';
|
|
import AccountListItem from './account-list-item';
|
|
|
|
describe('AccountListItem Component', () => {
|
|
const store = configureStore()(mockState);
|
|
|
|
describe('render', () => {
|
|
const props = {
|
|
account: {
|
|
address: 'mockAddress',
|
|
name: 'mockName',
|
|
balance: 'mockBalance',
|
|
},
|
|
className: 'mockClassName',
|
|
displayAddress: false,
|
|
icon: <i className="mockIcon" />,
|
|
handleClick: jest.fn(),
|
|
};
|
|
|
|
it('should match snapshot', () => {
|
|
const { container } = renderWithProvider(
|
|
<AccountListItem {...props} />,
|
|
store,
|
|
);
|
|
|
|
expect(container).toMatchSnapshot();
|
|
});
|
|
|
|
it('should call handleClick with the expected props when the root div is clicked', () => {
|
|
const { getByTestId } = renderWithProvider(
|
|
<AccountListItem {...props} />,
|
|
store,
|
|
);
|
|
const accountListItem = getByTestId('account-list-item');
|
|
fireEvent.click(accountListItem);
|
|
|
|
expect(props.handleClick).toHaveBeenCalledWith({
|
|
address: 'mockAddress',
|
|
name: 'mockName',
|
|
balance: 'mockBalance',
|
|
});
|
|
});
|
|
|
|
it('should show the account name if it exists', () => {
|
|
const { queryByText } = renderWithProvider(
|
|
<AccountListItem {...props} />,
|
|
store,
|
|
);
|
|
expect(queryByText('mockName')).toBeInTheDocument();
|
|
});
|
|
|
|
it('should show the account address if there is no name', () => {
|
|
const noAccountNameProps = {
|
|
...props,
|
|
account: {
|
|
address: 'addressButNoName',
|
|
},
|
|
};
|
|
|
|
const { queryByText } = renderWithProvider(
|
|
<AccountListItem {...noAccountNameProps} />,
|
|
store,
|
|
);
|
|
expect(queryByText('addressButNoName')).toBeInTheDocument();
|
|
});
|
|
|
|
it('should not render an icon if none is passed', () => {
|
|
const noIconProps = {
|
|
...props,
|
|
icon: null,
|
|
};
|
|
|
|
const { queryByTestId } = renderWithProvider(
|
|
<AccountListItem {...noIconProps} />,
|
|
store,
|
|
);
|
|
const accountListItemIcon = queryByTestId('account-list-item-icon');
|
|
|
|
expect(accountListItemIcon).not.toBeInTheDocument();
|
|
});
|
|
|
|
it('should render the account address as a checksumAddress if displayAddress is true and name is provided', () => {
|
|
const { queryByText, rerender } = renderWithProvider(
|
|
<AccountListItem {...props} />,
|
|
store,
|
|
);
|
|
expect(queryByText('0xmockAddress')).not.toBeInTheDocument();
|
|
|
|
const displayAddressProps = {
|
|
...props,
|
|
displayAddress: true,
|
|
};
|
|
|
|
rerender(<AccountListItem {...displayAddressProps} />);
|
|
|
|
expect(queryByText('0xmockAddress')).toBeInTheDocument();
|
|
});
|
|
|
|
it('render without <AccountMismatchWarning /> if hideDefaultMismatchWarning is true', () => {
|
|
const { getByTestId, rerender } = renderWithProvider(
|
|
<AccountListItem {...props} />,
|
|
store,
|
|
);
|
|
|
|
const infoIcon = getByTestId('account-mismatch-warning-tooltip');
|
|
|
|
expect(infoIcon).toBeInTheDocument();
|
|
|
|
rerender(<AccountListItem {...props} hideDefaultMismatchWarning />);
|
|
|
|
expect(infoIcon).not.toBeInTheDocument();
|
|
});
|
|
});
|
|
});
|