1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
/*
* SonarQube
* Copyright (C) 2009-2024 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
import { act, screen, waitFor } from '@testing-library/react';
import { noop } from 'lodash';
import { render, renderWithRouter } from '../../helpers/testUtils';
import {
DropdownMenu,
ItemButton,
ItemCheckbox,
ItemCopy,
ItemDangerButton,
ItemDivider,
ItemHeader,
ItemLink,
ItemNavLink,
ItemRadioButton,
} from '../DropdownMenu';
import { Tooltip } from '../Tooltip';
import { MenuIcon } from '../icons/MenuIcon';
beforeEach(() => {
jest.useFakeTimers();
});
afterEach(() => {
jest.runOnlyPendingTimers();
jest.useRealTimers();
});
it('should render a full menu correctly', () => {
renderDropdownMenu();
expect(screen.getByRole('menuitem', { name: 'My header' })).toBeInTheDocument();
expect(screen.getByRole('menuitem', { name: 'Test menu item' })).toBeInTheDocument();
expect(screen.getByRole('menuitem', { name: 'Test disabled item' })).toHaveClass('disabled');
});
it('menu items should work with tooltips', async () => {
const { user } = render(
<Tooltip overlay="test tooltip">
<ItemButton onClick={jest.fn()}>button</ItemButton>
</Tooltip>,
{},
{ delay: null },
);
expect(screen.queryByRole('tooltip')).not.toBeInTheDocument();
await user.hover(screen.getByRole('menuitem'));
expect(screen.queryByRole('tooltip')).not.toBeInTheDocument();
act(() => {
jest.runAllTimers();
});
expect(screen.getByRole('tooltip')).toBeVisible();
await user.unhover(screen.getByRole('menuitem'));
expect(screen.getByRole('tooltip')).toBeVisible();
act(() => {
jest.runAllTimers();
});
await waitFor(() => {
expect(screen.queryByRole('tooltip')).not.toBeInTheDocument();
});
});
function renderDropdownMenu() {
return renderWithRouter(
<DropdownMenu>
<ItemHeader>My header</ItemHeader>
<ItemNavLink to="/test">Test menu item</ItemNavLink>
<ItemDivider />
<ItemLink disabled to="/test-disabled">
Test disabled item
</ItemLink>
<ItemButton icon={<MenuIcon />} onClick={noop}>
Button
</ItemButton>
<ItemDangerButton onClick={noop}>DangerButton</ItemDangerButton>
<ItemCopy copyValue="copy" tooltipOverlay="overlay">
Copy
</ItemCopy>
<ItemCheckbox checked onCheck={noop}>
Checkbox item
</ItemCheckbox>
<ItemRadioButton checked={false} onCheck={noop} value="radios">
Radio item
</ItemRadioButton>
</DropdownMenu>,
);
}
|