]> source.dussan.org Git - sonarqube.git/blob
c240643795de12721d9b8b95c7a353bec9a0c217
[sonarqube.git] /
1 /*
2  * SonarQube
3  * Copyright (C) 2009-2023 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 { OptionProps, Props as ReactSelectProps } from 'react-select';
23 import RadioCard from '../../../../components/controls/RadioCard';
24 import Select from '../../../../components/controls/Select';
25 import BaselineSettingReferenceBranch, {
26   BaselineSettingReferenceBranchProps,
27   BranchOption,
28   renderBranchOption,
29 } from '../BaselineSettingReferenceBranch';
30
31 it('should render correctly', () => {
32   expect(shallowRender()).toMatchSnapshot('Project level');
33   expect(shallowRender({ settingLevel: 'branch' })).toMatchSnapshot('Branch level');
34   expect(
35     shallowRender({
36       branchList: [{ label: 'master', value: 'master', isMain: true }],
37       settingLevel: 'branch',
38     })
39   ).toMatchSnapshot('Branch level - no other branches');
40 });
41
42 it('should not display input when not selected', () => {
43   const wrapper = shallowRender({ selected: false });
44   expect(wrapper.find('SearchSelect')).toHaveLength(0);
45 });
46
47 it('should callback when clicked', () => {
48   const onSelect = jest.fn();
49   const wrapper = shallowRender({ onSelect, selected: false });
50
51   wrapper.find(RadioCard).first().simulate('click');
52   expect(onSelect).toHaveBeenCalledWith('REFERENCE_BRANCH');
53 });
54
55 it('should callback when changing selection', () => {
56   const onChangeReferenceBranch = jest.fn();
57   const wrapper = shallowRender({ onChangeReferenceBranch });
58
59   wrapper.find(Select).first().simulate('change', { value: 'branch-6.9' });
60   expect(onChangeReferenceBranch).toHaveBeenCalledWith('branch-6.9');
61 });
62
63 it('should handle an invalid branch', () => {
64   const unknownBranchName = 'branch-unknown';
65   const wrapper = shallowRender({ referenceBranch: unknownBranchName });
66
67   expect(wrapper.find<ReactSelectProps>(Select).first().props().value).toEqual({
68     label: unknownBranchName,
69     value: unknownBranchName,
70     isMain: false,
71     isInvalid: true,
72   });
73 });
74
75 describe('renderOption', () => {
76   // fake props injected by the Select itself
77   const props = {} as OptionProps<BranchOption, false>;
78
79   it('should render correctly', () => {
80     expect(
81       renderBranchOption({ ...props, data: { label: 'master', value: 'master', isMain: true } })
82     ).toMatchSnapshot('main');
83     expect(
84       renderBranchOption({
85         ...props,
86         data: { label: 'branch-7.4', value: 'branch-7.4', isMain: false },
87       })
88     ).toMatchSnapshot('branch');
89     expect(
90       renderBranchOption({
91         ...props,
92         data: { label: 'disabled', value: 'disabled', isMain: false, isDisabled: true },
93       })
94     ).toMatchSnapshot('disabled');
95     expect(
96       renderBranchOption({
97         ...props,
98         data: { label: 'branch-nope', value: 'branch-nope', isMain: false, isInvalid: true },
99       })
100     ).toMatchSnapshot("branch doesn't exist");
101   });
102 });
103
104 function shallowRender(props: Partial<BaselineSettingReferenceBranchProps> = {}) {
105   const branchOptions = [
106     { label: 'master', value: 'master', isMain: true },
107     { label: 'branch-7.9', value: 'branch-7.9', isMain: false },
108   ];
109
110   return shallow(
111     <BaselineSettingReferenceBranch
112       branchList={branchOptions}
113       settingLevel="project"
114       onChangeReferenceBranch={jest.fn()}
115       onSelect={jest.fn()}
116       referenceBranch="master"
117       selected={true}
118       {...props}
119     />
120   );
121 }