]> source.dussan.org Git - sonarqube.git/blob
b931e176e43f9793c92b730bf25a079fe147e657
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2021 SonarSource SA
4  * mailto:info AT sonarsource DOT com
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 3 of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19  */
20 import { shallow } from 'enzyme';
21 import * as React from 'react';
22 import { mockUser } from '../../../../../helpers/testMocks';
23 import AssigneeSelectionRenderer, {
24   HotspotAssigneeSelectRendererProps
25 } from '../AssigneeSelectionRenderer';
26
27 it('should render correctly', () => {
28   expect(shallowRender()).toMatchSnapshot();
29   expect(shallowRender({ loading: true })).toMatchSnapshot('loading');
30   expect(shallowRender({ open: true })).toMatchSnapshot('open');
31
32   const highlightedUser = mockUser({ login: 'highlighted' }) as T.UserActive;
33   expect(
34     shallowRender({
35       highlighted: highlightedUser,
36       open: true,
37       suggestedUsers: [mockUser() as T.UserActive, highlightedUser]
38     })
39   ).toMatchSnapshot('open with results');
40 });
41
42 it('should call onSelect when clicked', () => {
43   const user = mockUser() as T.UserActive;
44   const onSelect = jest.fn();
45   const wrapper = shallowRender({
46     open: true,
47     onSelect,
48     suggestedUsers: [user]
49   });
50
51   wrapper
52     .find('li')
53     .at(0)
54     .simulate('click');
55
56   expect(onSelect).toBeCalledWith(user);
57 });
58
59 function shallowRender(props?: Partial<HotspotAssigneeSelectRendererProps>) {
60   return shallow(
61     <AssigneeSelectionRenderer
62       loading={false}
63       onKeyDown={jest.fn()}
64       onSearch={jest.fn()}
65       onSelect={jest.fn()}
66       open={false}
67       {...props}
68     />
69   );
70 }