]> source.dussan.org Git - sonarqube.git/blob
f122eb43c8f3574bd9b6c171dfb08a63a02d4cfd
[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 {
23   mockAlmSettingsBindingStatus,
24   mockAzureBindingDefinition,
25   mockGithubBindingDefinition
26 } from '../../../../../helpers/mocks/alm-settings';
27 import { AlmKeys, AlmSettingsBindingStatusType } from '../../../../../types/alm-settings';
28 import AlmBindingDefinitionBox, { AlmBindingDefinitionBoxProps } from '../AlmBindingDefinitionBox';
29
30 it('should render correctly', () => {
31   expect(shallowRender()).toMatchSnapshot('default');
32   expect(shallowRender({ multipleDefinitions: true })).toMatchSnapshot('multiple definitions');
33   expect(
34     shallowRender({
35       status: mockAlmSettingsBindingStatus({
36         type: AlmSettingsBindingStatusType.Success
37       })
38     })
39   ).toMatchSnapshot('success');
40   expect(
41     shallowRender({
42       status: mockAlmSettingsBindingStatus({
43         failureMessage: 'Oops, something went wrong',
44         type: AlmSettingsBindingStatusType.Failure
45       })
46     })
47   ).toMatchSnapshot('error');
48
49   expect(
50     shallowRender({
51       status: mockAlmSettingsBindingStatus({
52         alertSuccess: true,
53         type: AlmSettingsBindingStatusType.Success
54       })
55     })
56   ).toMatchSnapshot('success with alert');
57
58   expect(
59     shallowRender({
60       status: mockAlmSettingsBindingStatus({
61         type: AlmSettingsBindingStatusType.Warning
62       })
63     })
64   ).toMatchSnapshot('warning');
65
66   expect(
67     shallowRender({ alm: AlmKeys.Azure, definition: mockAzureBindingDefinition() })
68   ).toMatchSnapshot('Azure DevOps');
69
70   expect(
71     shallowRender({
72       branchesEnabled: false,
73       status: mockAlmSettingsBindingStatus({
74         alertSuccess: true,
75         type: AlmSettingsBindingStatusType.Success
76       })
77     })
78   ).toMatchSnapshot('success with branches disabled');
79 });
80
81 function shallowRender(props: Partial<AlmBindingDefinitionBoxProps> = {}) {
82   return shallow(
83     <AlmBindingDefinitionBox
84       alm={AlmKeys.GitHub}
85       branchesEnabled={true}
86       definition={mockGithubBindingDefinition()}
87       multipleDefinitions={false}
88       onCheck={jest.fn()}
89       onDelete={jest.fn()}
90       onEdit={jest.fn()}
91       {...props}
92     />
93   );
94 }