/* eslint-disable jest/require-top-level-describe */
import { render } from '@testing-library/react';
import React from 'react';
import { ICON_NAMES } from '..';
import { ButtonSecondary } from './button-secondary';
import { BUTTON_SECONDARY_SIZES } from './button-secondary.constants';
describe('ButtonSecondary', () => {
it('should render button element correctly', () => {
const { getByText, getByTestId, container } = render(
Button Secondary
,
);
expect(getByText('Button Secondary')).toBeDefined();
expect(container.querySelector('button')).toBeDefined();
expect(getByTestId('button-secondary')).toHaveClass('mm-button-base');
expect(container).toMatchSnapshot();
});
it('should render anchor element correctly', () => {
const { getByTestId, container } = render(
,
);
expect(getByTestId('button-secondary')).toHaveClass('mm-button-base');
const anchor = container.getElementsByTagName('a').length;
expect(anchor).toBe(1);
});
it('should render button as block', () => {
const { getByTestId } = render(
,
);
expect(getByTestId('block')).toHaveClass(`mm-button-base--block`);
});
it('should render with added classname', () => {
const { getByTestId } = render(
,
);
expect(getByTestId('classname')).toHaveClass('mm-button--test');
});
it('should render with different size classes', () => {
const { getByTestId } = render(
<>
>,
);
expect(getByTestId(BUTTON_SECONDARY_SIZES.SM)).toHaveClass(
`mm-button-base--size-${BUTTON_SECONDARY_SIZES.SM}`,
);
expect(getByTestId(BUTTON_SECONDARY_SIZES.MD)).toHaveClass(
`mm-button-base--size-${BUTTON_SECONDARY_SIZES.MD}`,
);
expect(getByTestId(BUTTON_SECONDARY_SIZES.LG)).toHaveClass(
`mm-button-base--size-${BUTTON_SECONDARY_SIZES.LG}`,
);
});
it('should render as danger', () => {
const { getByTestId } = render(
<>
>,
);
expect(getByTestId('danger')).toHaveClass(
'mm-button-secondary--type-danger',
);
});
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 { container } = render(
,
);
const icons = container.getElementsByClassName('mm-icon').length;
expect(icons).toBe(1);
});
});