2022-10-14 00:39:22 +02:00
|
|
|
/* eslint-disable jest/require-top-level-describe */
|
|
|
|
import { render } from '@testing-library/react';
|
|
|
|
import React from 'react';
|
2023-04-05 18:11:10 +02:00
|
|
|
import { IconName } from '..';
|
2023-08-04 23:00:05 +02:00
|
|
|
import { ButtonLink, ButtonLinkSize } from '.';
|
2022-10-14 00:39:22 +02:00
|
|
|
|
|
|
|
describe('ButtonLink', () => {
|
|
|
|
it('should render button element correctly', () => {
|
|
|
|
const { getByText, getByTestId, container } = render(
|
|
|
|
<ButtonLink data-testid="button-link">Button Link</ButtonLink>,
|
|
|
|
);
|
|
|
|
expect(getByText('Button Link')).toBeDefined();
|
|
|
|
expect(container.querySelector('button')).toBeDefined();
|
2023-01-13 22:58:09 +01:00
|
|
|
expect(getByTestId('button-link')).toHaveClass('mm-button-base');
|
2022-11-18 21:36:33 +01:00
|
|
|
expect(container).toMatchSnapshot();
|
2022-10-14 00:39:22 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should render anchor element correctly', () => {
|
|
|
|
const { getByTestId, container } = render(
|
|
|
|
<ButtonLink as="a" data-testid="button-link" />,
|
|
|
|
);
|
2023-01-13 22:58:09 +01:00
|
|
|
expect(getByTestId('button-link')).toHaveClass('mm-button-base');
|
2022-10-14 00:39:22 +02:00
|
|
|
const anchor = container.getElementsByTagName('a').length;
|
|
|
|
expect(anchor).toBe(1);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render button as block', () => {
|
|
|
|
const { getByTestId } = render(<ButtonLink block data-testid="block" />);
|
2023-01-13 22:58:09 +01:00
|
|
|
expect(getByTestId('block')).toHaveClass(`mm-button-base--block`);
|
2022-10-14 00:39:22 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should render with added classname', () => {
|
|
|
|
const { getByTestId } = render(
|
|
|
|
<ButtonLink data-testid="classname" className="mm-button--test" />,
|
|
|
|
);
|
|
|
|
expect(getByTestId('classname')).toHaveClass('mm-button--test');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render with different size classes', () => {
|
|
|
|
const { getByTestId } = render(
|
|
|
|
<>
|
2023-08-04 23:00:05 +02:00
|
|
|
<ButtonLink size={ButtonLinkSize.Sm} data-testid={ButtonLinkSize.Sm} />
|
|
|
|
<ButtonLink size={ButtonLinkSize.Md} data-testid={ButtonLinkSize.Md} />
|
|
|
|
<ButtonLink size={ButtonLinkSize.Lg} data-testid={ButtonLinkSize.Lg} />
|
2022-10-14 00:39:22 +02:00
|
|
|
</>,
|
|
|
|
);
|
|
|
|
|
2023-08-04 23:00:05 +02:00
|
|
|
expect(getByTestId(ButtonLinkSize.Sm)).toHaveClass(
|
|
|
|
`mm-button-base--size-${ButtonLinkSize.Sm}`,
|
|
|
|
);
|
|
|
|
expect(getByTestId(ButtonLinkSize.Md)).toHaveClass(
|
|
|
|
`mm-button-base--size-${ButtonLinkSize.Md}`,
|
|
|
|
);
|
|
|
|
expect(getByTestId(ButtonLinkSize.Lg)).toHaveClass(
|
|
|
|
`mm-button-base--size-${ButtonLinkSize.Lg}`,
|
|
|
|
);
|
2023-01-26 19:32:11 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should render ButtonLink inherit size', () => {
|
|
|
|
const { getByTestId } = render(
|
2023-08-04 23:00:05 +02:00
|
|
|
<ButtonLink size={ButtonLinkSize.Inherit} data-testid="inherit" />,
|
2022-10-14 00:39:22 +02:00
|
|
|
);
|
2023-08-04 23:00:05 +02:00
|
|
|
// Different size classname compared to ButtonLinkSize.Sm, ButtonLinkSize.Md, ButtonLinkSize.Lg
|
2023-01-26 19:32:11 +01:00
|
|
|
expect(getByTestId('inherit')).toHaveClass(`mm-button-link--size-inherit`);
|
2022-10-14 00:39:22 +02:00
|
|
|
});
|
|
|
|
|
2022-11-09 22:55:13 +01:00
|
|
|
it('should render as danger', () => {
|
2022-10-14 00:39:22 +02:00
|
|
|
const { getByTestId } = render(
|
|
|
|
<>
|
|
|
|
<ButtonLink danger data-testid="danger" />
|
|
|
|
</>,
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(getByTestId('danger')).toHaveClass('mm-button-link--type-danger');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render with different button states', () => {
|
|
|
|
const { getByTestId } = render(
|
|
|
|
<>
|
|
|
|
<ButtonLink loading data-testid="loading" />
|
|
|
|
<ButtonLink disabled data-testid="disabled" />
|
|
|
|
</>,
|
|
|
|
);
|
2023-01-13 22:58:09 +01:00
|
|
|
expect(getByTestId('loading')).toHaveClass(`mm-button-base--loading`);
|
|
|
|
expect(getByTestId('disabled')).toHaveClass(`mm-button-base--disabled`);
|
2022-10-14 00:39:22 +02:00
|
|
|
});
|
|
|
|
it('should render with icon', () => {
|
|
|
|
const { container } = render(
|
2023-04-05 18:11:10 +02:00
|
|
|
<ButtonLink data-testid="icon" startIconName={IconName.AddSquare} />,
|
2022-10-14 00:39:22 +02:00
|
|
|
);
|
|
|
|
|
2022-11-23 18:58:43 +01:00
|
|
|
const icons = container.getElementsByClassName('mm-icon').length;
|
2022-10-14 00:39:22 +02:00
|
|
|
expect(icons).toBe(1);
|
|
|
|
});
|
|
|
|
});
|