/* eslint-disable jest/require-top-level-describe */ import { render } from '@testing-library/react'; import React from 'react'; import { IconName } from '..'; import { BUTTON_BASE_SIZES } from './button-base.constants'; import { ButtonBase } from './button-base'; describe('ButtonBase', () => { it('should render button element correctly and match snapshot', () => { const { getByTestId, getByText, container } = render( Button base, ); expect(getByText('Button base')).toBeDefined(); expect(container.querySelector('button')).toBeDefined(); expect(getByTestId('button-base')).toHaveClass('mm-button-base'); expect(container).toMatchSnapshot(); }); it('should render anchor element correctly', () => { const { getByTestId, container } = render( , ); expect(getByTestId('button-base')).toHaveClass('mm-button-base'); const anchor = container.getElementsByTagName('a').length; expect(anchor).toBe(1); }); it('should render anchor element correctly by href only being passed and href exists', () => { const { getByTestId, container } = render( Button Base , ); expect(getByTestId('button-base')).toHaveClass('mm-button-base'); expect(getByTestId('button-base')).toHaveAttribute('href', '/metamask'); const anchor = container.getElementsByTagName('a').length; expect(anchor).toBe(1); }); it('should render anchor element correctly by href and externalLink, href target and rel exist', () => { const { getByTestId, container } = render( Button Base , ); expect(getByTestId('button-base')).toHaveClass('mm-button-base'); expect(getByTestId('button-base')).toHaveAttribute( 'href', 'https://www.test.com/', 'target', '_blank', 'rel', 'noopener noreferrer', ); expect(getByTestId('button-base')).toHaveAttribute( 'target', '_blank', 'rel', 'noopener noreferrer', ); expect(getByTestId('button-base')).toHaveAttribute( 'rel', 'noopener noreferrer', ); const anchor = container.getElementsByTagName('a').length; expect(anchor).toBe(1); expect(container).toMatchSnapshot(); }); it('should render button as block', () => { const { getByTestId } = render(); expect(getByTestId('block')).toHaveClass(`mm-button-base--block`); }); it('should render with different size classes', () => { const { getByTestId } = render( <> , ); expect(getByTestId(BUTTON_BASE_SIZES.SM)).toHaveClass( `mm-button-base--size-${BUTTON_BASE_SIZES.SM}`, ); expect(getByTestId(BUTTON_BASE_SIZES.MD)).toHaveClass( `mm-button-base--size-${BUTTON_BASE_SIZES.MD}`, ); expect(getByTestId(BUTTON_BASE_SIZES.LG)).toHaveClass( `mm-button-base--size-${BUTTON_BASE_SIZES.LG}`, ); }); it('should render with added classname', () => { const { getByTestId } = render( , ); expect(getByTestId('classname')).toHaveClass('mm-button-base--test'); }); it('should render with different button states', () => { const { getByTestId } = render( <> , ); expect(getByTestId('loading')).toHaveClass(`mm-button-base--loading`); expect(getByTestId('disabled')).toHaveClass(`mm-button-base--disabled`); }); it('should render with icon', () => { const { getByTestId } = render( , ); expect(getByTestId('start-button-icon')).toBeDefined(); expect(getByTestId('end-button-icon')).toBeDefined(); }); });