2022-05-11 20:18:43 +03:00
|
|
|
import { render, screen, waitFor } from '@testing-library/react';
|
|
|
|
import userEvent from '@testing-library/user-event';
|
2022-05-03 21:36:24 +03:00
|
|
|
import { Router } from 'react-router-dom';
|
|
|
|
import { createMemoryHistory } from 'history';
|
|
|
|
import { MainHeader as createMainHeader } from '../../src/common/MainHeader';
|
2022-02-08 00:17:57 +03:00
|
|
|
|
2021-09-19 12:17:56 +03:00
|
|
|
describe('<MainHeader />', () => {
|
2022-05-03 21:36:24 +03:00
|
|
|
const MainHeader = createMainHeader(() => <>ServersDropdown</>);
|
|
|
|
const setUp = (pathname = '') => {
|
|
|
|
const history = createMemoryHistory();
|
|
|
|
history.push(pathname);
|
2021-09-19 12:17:56 +03:00
|
|
|
|
2022-05-11 20:18:43 +03:00
|
|
|
const user = userEvent.setup();
|
|
|
|
const renderResult = render(
|
2022-05-03 21:36:24 +03:00
|
|
|
<Router location={history.location} navigator={history}>
|
|
|
|
<MainHeader />
|
|
|
|
</Router>,
|
|
|
|
);
|
2022-05-11 20:18:43 +03:00
|
|
|
|
|
|
|
return { user, ...renderResult };
|
2021-09-19 12:17:56 +03:00
|
|
|
};
|
|
|
|
|
2021-09-20 23:00:34 +03:00
|
|
|
it('renders ServersDropdown', () => {
|
2022-05-03 21:36:24 +03:00
|
|
|
setUp();
|
|
|
|
expect(screen.getByText('ServersDropdown')).toBeInTheDocument();
|
2021-09-19 12:17:56 +03:00
|
|
|
});
|
|
|
|
|
2021-09-20 23:00:34 +03:00
|
|
|
it.each([
|
2022-03-26 14:17:42 +03:00
|
|
|
['/foo', false],
|
|
|
|
['/bar', false],
|
|
|
|
['/settings', true],
|
|
|
|
['/settings/foo', true],
|
|
|
|
['/settings/bar', true],
|
2021-09-20 23:00:34 +03:00
|
|
|
])('sets link to settings as active only when current path is settings', (currentPath, isActive) => {
|
2022-05-03 21:36:24 +03:00
|
|
|
setUp(currentPath);
|
2021-09-19 12:17:56 +03:00
|
|
|
|
2022-05-03 21:36:24 +03:00
|
|
|
if (isActive) {
|
|
|
|
expect(screen.getByText(/Settings$/).getAttribute('class')).toContain('active');
|
|
|
|
} else {
|
|
|
|
expect(screen.getByText(/Settings$/).getAttribute('class')).not.toContain('active');
|
|
|
|
}
|
2021-09-19 12:17:56 +03:00
|
|
|
});
|
|
|
|
|
2022-05-11 20:18:43 +03:00
|
|
|
it('renders expected class based on the nav bar state', async () => {
|
|
|
|
const { user } = setUp();
|
2022-05-03 21:36:24 +03:00
|
|
|
|
|
|
|
const toggle = screen.getByLabelText('Toggle navigation');
|
|
|
|
const icon = toggle.firstChild;
|
2021-09-19 12:17:56 +03:00
|
|
|
|
2022-05-03 21:36:24 +03:00
|
|
|
expect(icon).toHaveAttribute('class', expect.stringMatching(/main-header__toggle-icon$/));
|
2022-05-11 20:18:43 +03:00
|
|
|
await user.click(toggle);
|
2022-05-03 21:36:24 +03:00
|
|
|
expect(icon).toHaveAttribute(
|
|
|
|
'class',
|
|
|
|
expect.stringMatching(/main-header__toggle-icon main-header__toggle-icon--opened$/),
|
2021-09-19 12:17:56 +03:00
|
|
|
);
|
2022-05-11 20:18:43 +03:00
|
|
|
await user.click(toggle);
|
2022-05-03 21:36:24 +03:00
|
|
|
expect(icon).toHaveAttribute('class', expect.stringMatching(/main-header__toggle-icon$/));
|
2021-09-19 12:17:56 +03:00
|
|
|
});
|
|
|
|
|
2022-05-03 21:36:24 +03:00
|
|
|
it('opens Collapse when clicking toggle', async () => {
|
2022-05-11 20:18:43 +03:00
|
|
|
const { container, user } = setUp();
|
2022-05-03 21:36:24 +03:00
|
|
|
const collapse = container.querySelector('.collapse');
|
|
|
|
const toggle = screen.getByLabelText('Toggle navigation');
|
2021-09-19 12:17:56 +03:00
|
|
|
|
2022-05-03 21:36:24 +03:00
|
|
|
expect(collapse).not.toHaveAttribute('class', expect.stringContaining('show'));
|
2022-05-11 20:18:43 +03:00
|
|
|
await user.click(toggle);
|
2022-05-03 21:36:24 +03:00
|
|
|
await waitFor(() => expect(collapse).toHaveAttribute('class', expect.stringContaining('show')));
|
2021-09-19 12:17:56 +03:00
|
|
|
});
|
|
|
|
});
|